diff --git a/src/grammar.json b/src/grammar.json index de953f339..50be67c3e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1787,38 +1787,12 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_statement_seq" - }, - "named": true, - "value": "function_body" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } }, { "type": "BLANK" @@ -3475,26 +3449,13 @@ } ] }, - { - "type": "STRING", - "value": "{" - }, { "type": "FIELD", "name": "body", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_statement_seq" - }, - "named": true, - "value": "function_body" + "type": "SYMBOL", + "name": "block" } - }, - { - "type": "STRING", - "value": "}" } ] }, @@ -3604,8 +3565,16 @@ "value": "{" }, { - "type": "SYMBOL", - "name": "_statement_seq" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statement_seq" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index 9fa17f9e1..3ff10ef74 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -8,7 +8,7 @@ "required": true, "types": [ { - "type": "function_body", + "type": "block", "named": true } ] @@ -2233,7 +2233,7 @@ "required": false, "types": [ { - "type": "function_body", + "type": "block", "named": true } ] @@ -2296,117 +2296,6 @@ ] } }, - { - "type": "function_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "boolean_negation", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "echo", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "integer_negation", - "named": true - }, - { - "type": "let", - "named": true - }, - { - "type": "let_assert", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - }, - { - "type": "use", - "named": true - } - ] - } - }, { "type": "function_call", "named": true, diff --git a/src/parser.c b/src/parser.c index d3b3c61bb..cd6dee7c4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,10 +14,10 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1967 +#define STATE_COUNT 1920 #define LARGE_STATE_COUNT 14 #define SYMBOL_COUNT 274 -#define ALIAS_COUNT 1 +#define ALIAS_COUNT 0 #define TOKEN_COUNT 96 #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 32 @@ -298,7 +298,6 @@ enum { aux_sym_tuple_type_repeat1 = 271, aux_sym_type_arguments_repeat1 = 272, aux_sym_type_parameters_repeat1 = 273, - alias_sym_function_body = 274, }; static const char * const ts_symbol_names[] = { @@ -576,7 +575,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", - [alias_sym_function_body] = "function_body", }; static const TSSymbol ts_symbol_map[] = { @@ -854,7 +852,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, - [alias_sym_function_body] = alias_sym_function_body, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1954,10 +1951,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_function_body] = { - .visible = true, - .named = true, - }, }; enum { @@ -2045,70 +2038,70 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [11] = {.index = 18, .length = 2}, [12] = {.index = 20, .length = 1}, [13] = {.index = 21, .length = 2}, - [14] = {.index = 23, .length = 1}, - [15] = {.index = 24, .length = 2}, - [16] = {.index = 26, .length = 4}, - [17] = {.index = 30, .length = 1}, - [18] = {.index = 31, .length = 2}, - [19] = {.index = 33, .length = 3}, - [20] = {.index = 36, .length = 2}, + [14] = {.index = 23, .length = 2}, + [15] = {.index = 25, .length = 1}, + [16] = {.index = 26, .length = 2}, + [17] = {.index = 28, .length = 4}, + [18] = {.index = 32, .length = 1}, + [19] = {.index = 33, .length = 2}, + [20] = {.index = 35, .length = 3}, [21] = {.index = 38, .length = 2}, [22] = {.index = 40, .length = 2}, - [23] = {.index = 42, .length = 1}, - [24] = {.index = 43, .length = 2}, + [23] = {.index = 42, .length = 2}, + [24] = {.index = 44, .length = 1}, [25] = {.index = 45, .length = 2}, - [26] = {.index = 47, .length = 1}, - [27] = {.index = 48, .length = 2}, - [28] = {.index = 50, .length = 3}, - [29] = {.index = 53, .length = 2}, + [26] = {.index = 47, .length = 2}, + [27] = {.index = 49, .length = 1}, + [28] = {.index = 50, .length = 2}, + [29] = {.index = 52, .length = 3}, [30] = {.index = 55, .length = 2}, - [31] = {.index = 57, .length = 1}, - [32] = {.index = 58, .length = 1}, - [33] = {.index = 59, .length = 2}, - [34] = {.index = 61, .length = 3}, + [31] = {.index = 57, .length = 2}, + [32] = {.index = 59, .length = 3}, + [33] = {.index = 62, .length = 1}, + [34] = {.index = 63, .length = 1}, [35] = {.index = 64, .length = 2}, - [36] = {.index = 66, .length = 2}, - [37] = {.index = 68, .length = 2}, - [38] = {.index = 70, .length = 1}, - [39] = {.index = 71, .length = 3}, - [40] = {.index = 74, .length = 1}, - [41] = {.index = 75, .length = 2}, - [42] = {.index = 77, .length = 3}, - [43] = {.index = 80, .length = 2}, - [44] = {.index = 82, .length = 3}, - [45] = {.index = 85, .length = 1}, - [46] = {.index = 86, .length = 2}, - [47] = {.index = 88, .length = 2}, - [48] = {.index = 90, .length = 1}, - [49] = {.index = 91, .length = 2}, - [50] = {.index = 93, .length = 4}, - [51] = {.index = 97, .length = 5}, - [52] = {.index = 102, .length = 4}, - [53] = {.index = 106, .length = 2}, - [54] = {.index = 108, .length = 2}, - [55] = {.index = 110, .length = 3}, - [56] = {.index = 113, .length = 1}, - [57] = {.index = 114, .length = 1}, - [58] = {.index = 115, .length = 3}, - [59] = {.index = 118, .length = 2}, - [60] = {.index = 120, .length = 2}, - [61] = {.index = 122, .length = 2}, - [62] = {.index = 124, .length = 3}, - [63] = {.index = 127, .length = 3}, - [64] = {.index = 130, .length = 3}, - [65] = {.index = 133, .length = 2}, - [66] = {.index = 135, .length = 2}, - [67] = {.index = 137, .length = 1}, - [68] = {.index = 138, .length = 3}, - [69] = {.index = 141, .length = 2}, - [70] = {.index = 143, .length = 3}, - [71] = {.index = 146, .length = 3}, - [72] = {.index = 149, .length = 3}, - [73] = {.index = 152, .length = 2}, - [74] = {.index = 154, .length = 4}, - [75] = {.index = 158, .length = 4}, - [76] = {.index = 158, .length = 4}, - [77] = {.index = 162, .length = 4}, + [36] = {.index = 66, .length = 3}, + [37] = {.index = 69, .length = 2}, + [38] = {.index = 71, .length = 2}, + [39] = {.index = 73, .length = 2}, + [40] = {.index = 75, .length = 1}, + [41] = {.index = 76, .length = 3}, + [42] = {.index = 79, .length = 1}, + [43] = {.index = 80, .length = 3}, + [44] = {.index = 83, .length = 3}, + [45] = {.index = 86, .length = 2}, + [46] = {.index = 88, .length = 3}, + [47] = {.index = 91, .length = 1}, + [48] = {.index = 92, .length = 2}, + [49] = {.index = 94, .length = 2}, + [50] = {.index = 96, .length = 1}, + [51] = {.index = 97, .length = 2}, + [52] = {.index = 99, .length = 4}, + [53] = {.index = 103, .length = 5}, + [54] = {.index = 108, .length = 4}, + [55] = {.index = 112, .length = 2}, + [56] = {.index = 114, .length = 3}, + [57] = {.index = 117, .length = 2}, + [58] = {.index = 119, .length = 3}, + [59] = {.index = 122, .length = 1}, + [60] = {.index = 123, .length = 1}, + [61] = {.index = 124, .length = 4}, + [62] = {.index = 128, .length = 2}, + [63] = {.index = 130, .length = 2}, + [64] = {.index = 132, .length = 2}, + [65] = {.index = 134, .length = 3}, + [66] = {.index = 137, .length = 3}, + [67] = {.index = 140, .length = 3}, + [68] = {.index = 143, .length = 2}, + [69] = {.index = 145, .length = 2}, + [70] = {.index = 147, .length = 1}, + [71] = {.index = 148, .length = 2}, + [72] = {.index = 150, .length = 3}, + [73] = {.index = 153, .length = 4}, + [74] = {.index = 157, .length = 3}, + [75] = {.index = 160, .length = 2}, + [76] = {.index = 162, .length = 4}, + [77] = {.index = 166, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2146,210 +2139,215 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [20] = {field_name, 0, .inherited = true}, [21] = + {field_body, 2}, + {field_parameters, 1}, + [23] = {field_name, 1}, {field_parameters, 2}, - [23] = + [25] = {field_message, 2}, - [24] = + [26] = {field_assign, 0, .inherited = true}, {field_value, 0}, - [26] = + [28] = {field_assign, 2, .inherited = true}, {field_pattern, 2, .inherited = true}, {field_type, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [30] = + [32] = {field_value, 2}, - [31] = + [33] = {field_assign, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [33] = + [35] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [36] = + [38] = {field_index, 2}, {field_tuple, 0}, - [38] = + [40] = {field_field, 2}, {field_record, 0}, - [40] = + [42] = {field_module, 0}, {field_name, 2}, - [42] = + [44] = {field_target, 1}, - [43] = + [45] = {field_imports, 3}, {field_module, 1}, - [45] = + [47] = {field_alias, 3}, {field_module, 1}, - [47] = + [49] = {field_type, 1}, - [48] = + [50] = {field_name, 1}, {field_value, 3}, - [50] = + [52] = {field_options, 1}, {field_options, 2}, {field_value, 0}, - [53] = + [55] = {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [55] = + [57] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, - [57] = + [59] = + {field_body, 3}, + {field_name, 1}, + {field_parameters, 2}, + [62] = {field_subjects, 1}, - [58] = + [63] = {field_assign, 1, .inherited = true}, - [59] = + [64] = {field_assign, 1}, {field_assign, 2}, - [61] = + [66] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_value, 2}, - [64] = + [69] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, - [66] = + [71] = {field_assignments, 1}, {field_value, 3}, - [68] = + [73] = {field_name, 2}, {field_parameters, 3}, - [70] = + [75] = {field_label, 0}, - [71] = + [76] = {field_name, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [74] = + [79] = {field_spread, 3}, - [75] = - {field_body, 3}, + [80] = + {field_body, 4}, {field_parameters, 1}, - [77] = + {field_return_type, 3}, + [83] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [80] = + [86] = {field_label, 0}, {field_name, 1}, - [82] = + [88] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [85] = + [91] = {field_type, 0}, - [86] = + [92] = {field_clauses, 3}, {field_subjects, 1}, - [88] = + [94] = {field_assign, 0, .inherited = true}, {field_assign, 1, .inherited = true}, - [90] = + [96] = {field_assign, 2, .inherited = true}, - [91] = + [97] = {field_assign, 1, .inherited = true}, {field_assign, 2, .inherited = true}, - [93] = + [99] = {field_assign, 0, .inherited = true}, {field_options, 1}, {field_options, 2}, {field_value, 0}, - [97] = + [103] = {field_assign, 2, .inherited = true}, {field_message, 4}, {field_pattern, 2, .inherited = true}, {field_type, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [102] = + [108] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_type, 1, .inherited = true}, {field_value, 3}, - [106] = + [112] = {field_name, 2}, {field_value, 4}, - [108] = + [114] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3}, + [117] = {field_label, 0}, {field_value, 2}, - [110] = + [119] = {field_alias, 5}, {field_imports, 3}, {field_module, 1}, - [113] = + [122] = {field_return_type, 2}, - [114] = + [123] = {field_spread, 4}, - [115] = - {field_body, 4}, + [124] = + {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [118] = + {field_return_type, 4}, + [128] = {field_index, 0, .inherited = true}, {field_tuple, 0, .inherited = true}, - [120] = + [130] = {field_patterns, 0}, {field_value, 2}, - [122] = + [132] = {field_assign, 2, .inherited = true}, {field_assign, 3, .inherited = true}, - [124] = + [134] = {field_assign, 2, .inherited = true}, {field_label, 0}, {field_pattern, 2}, - [127] = + [137] = {field_name, 2}, {field_type, 3, .inherited = true}, {field_value, 5}, - [130] = + [140] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [133] = + [143] = {field_alias, 2}, {field_name, 0}, - [135] = + [145] = {field_parameter_types, 1}, {field_return_type, 3}, - [137] = + [147] = {field_spread, 5}, - [138] = - {field_body, 5}, - {field_parameters, 1}, - {field_return_type, 3}, - [141] = + [148] = {field_name, 0}, {field_type, 2}, - [143] = + [150] = {field_guard, 1}, {field_patterns, 0}, {field_value, 3}, - [146] = - {field_body, 5}, + [153] = + {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [149] = + {field_return_type, 5}, + [157] = {field_arguments, 5}, {field_constructor, 0}, {field_spread, 3}, - [152] = + [160] = {field_alias, 3}, {field_name, 1}, - [154] = - {field_body, 6}, - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 4}, - [158] = + [162] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [162] = + [166] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, @@ -2358,30 +2356,9 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [41] = { - [3] = alias_sym_function_body, - }, - [58] = { - [4] = alias_sym_function_body, - }, - [68] = { - [5] = alias_sym_function_body, - }, - [71] = { - [5] = alias_sym_function_body, - }, - [74] = { - [6] = alias_sym_function_body, - }, - [76] = { - [7] = alias_sym_function_body, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym__statement_seq, 2, - aux_sym__statement_seq, - alias_sym_function_body, 0, }; @@ -5472,265 +5449,265 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 171}, [14] = {.lex_state = 174}, [15] = {.lex_state = 174}, - [16] = {.lex_state = 144}, + [16] = {.lex_state = 174}, [17] = {.lex_state = 144}, [18] = {.lex_state = 144}, [19] = {.lex_state = 144}, - [20] = {.lex_state = 144}, + [20] = {.lex_state = 174}, [21] = {.lex_state = 144}, [22] = {.lex_state = 144}, [23] = {.lex_state = 174}, - [24] = {.lex_state = 144}, - [25] = {.lex_state = 174}, + [24] = {.lex_state = 174}, + [25] = {.lex_state = 144}, [26] = {.lex_state = 144}, - [27] = {.lex_state = 144}, + [27] = {.lex_state = 174}, [28] = {.lex_state = 144}, [29] = {.lex_state = 144}, [30] = {.lex_state = 174}, [31] = {.lex_state = 174}, [32] = {.lex_state = 144}, - [33] = {.lex_state = 144}, - [34] = {.lex_state = 144}, - [35] = {.lex_state = 144}, + [33] = {.lex_state = 174}, + [34] = {.lex_state = 174}, + [35] = {.lex_state = 174}, [36] = {.lex_state = 144}, - [37] = {.lex_state = 144}, - [38] = {.lex_state = 144}, - [39] = {.lex_state = 144}, - [40] = {.lex_state = 174}, - [41] = {.lex_state = 144}, - [42] = {.lex_state = 144}, + [37] = {.lex_state = 174}, + [38] = {.lex_state = 174}, + [39] = {.lex_state = 171}, + [40] = {.lex_state = 144}, + [41] = {.lex_state = 174}, + [42] = {.lex_state = 174}, [43] = {.lex_state = 144}, - [44] = {.lex_state = 171}, - [45] = {.lex_state = 174}, - [46] = {.lex_state = 144}, + [44] = {.lex_state = 144}, + [45] = {.lex_state = 144}, + [46] = {.lex_state = 174}, [47] = {.lex_state = 174}, - [48] = {.lex_state = 144}, + [48] = {.lex_state = 174}, [49] = {.lex_state = 174}, - [50] = {.lex_state = 144}, - [51] = {.lex_state = 144}, - [52] = {.lex_state = 144}, - [53] = {.lex_state = 174}, - [54] = {.lex_state = 144}, + [50] = {.lex_state = 174}, + [51] = {.lex_state = 174}, + [52] = {.lex_state = 171}, + [53] = {.lex_state = 171}, + [54] = {.lex_state = 174}, [55] = {.lex_state = 174}, - [56] = {.lex_state = 144}, - [57] = {.lex_state = 144}, - [58] = {.lex_state = 144}, + [56] = {.lex_state = 174}, + [57] = {.lex_state = 171}, + [58] = {.lex_state = 174}, [59] = {.lex_state = 174}, [60] = {.lex_state = 174}, - [61] = {.lex_state = 174}, - [62] = {.lex_state = 174}, + [61] = {.lex_state = 171}, + [62] = {.lex_state = 171}, [63] = {.lex_state = 174}, - [64] = {.lex_state = 144}, - [65] = {.lex_state = 144}, - [66] = {.lex_state = 174}, - [67] = {.lex_state = 144}, - [68] = {.lex_state = 144}, - [69] = {.lex_state = 144}, - [70] = {.lex_state = 174}, - [71] = {.lex_state = 144}, - [72] = {.lex_state = 171}, - [73] = {.lex_state = 144}, - [74] = {.lex_state = 171}, - [75] = {.lex_state = 144}, - [76] = {.lex_state = 144}, - [77] = {.lex_state = 171}, - [78] = {.lex_state = 144}, - [79] = {.lex_state = 144}, - [80] = {.lex_state = 174}, - [81] = {.lex_state = 144}, - [82] = {.lex_state = 144}, - [83] = {.lex_state = 144}, - [84] = {.lex_state = 144}, + [64] = {.lex_state = 171}, + [65] = {.lex_state = 171}, + [66] = {.lex_state = 171}, + [67] = {.lex_state = 171}, + [68] = {.lex_state = 171}, + [69] = {.lex_state = 171}, + [70] = {.lex_state = 171}, + [71] = {.lex_state = 171}, + [72] = {.lex_state = 174}, + [73] = {.lex_state = 174}, + [74] = {.lex_state = 174}, + [75] = {.lex_state = 174}, + [76] = {.lex_state = 171}, + [77] = {.lex_state = 174}, + [78] = {.lex_state = 174}, + [79] = {.lex_state = 171}, + [80] = {.lex_state = 171}, + [81] = {.lex_state = 171}, + [82] = {.lex_state = 171}, + [83] = {.lex_state = 171}, + [84] = {.lex_state = 174}, [85] = {.lex_state = 174}, - [86] = {.lex_state = 171}, + [86] = {.lex_state = 145}, [87] = {.lex_state = 174}, [88] = {.lex_state = 174}, - [89] = {.lex_state = 171}, - [90] = {.lex_state = 174}, - [91] = {.lex_state = 144}, + [89] = {.lex_state = 174}, + [90] = {.lex_state = 145}, + [91] = {.lex_state = 171}, [92] = {.lex_state = 174}, - [93] = {.lex_state = 174}, - [94] = {.lex_state = 171}, + [93] = {.lex_state = 145}, + [94] = {.lex_state = 174}, [95] = {.lex_state = 174}, - [96] = {.lex_state = 144}, + [96] = {.lex_state = 174}, [97] = {.lex_state = 174}, - [98] = {.lex_state = 171}, - [99] = {.lex_state = 144}, - [100] = {.lex_state = 171}, - [101] = {.lex_state = 144}, - [102] = {.lex_state = 144}, - [103] = {.lex_state = 171}, + [98] = {.lex_state = 174}, + [99] = {.lex_state = 145}, + [100] = {.lex_state = 174}, + [101] = {.lex_state = 171}, + [102] = {.lex_state = 174}, + [103] = {.lex_state = 174}, [104] = {.lex_state = 174}, - [105] = {.lex_state = 174}, - [106] = {.lex_state = 144}, - [107] = {.lex_state = 144}, + [105] = {.lex_state = 171}, + [106] = {.lex_state = 145}, + [107] = {.lex_state = 174}, [108] = {.lex_state = 171}, - [109] = {.lex_state = 171}, + [109] = {.lex_state = 163}, [110] = {.lex_state = 174}, - [111] = {.lex_state = 144}, - [112] = {.lex_state = 144}, - [113] = {.lex_state = 171}, - [114] = {.lex_state = 171}, - [115] = {.lex_state = 144}, - [116] = {.lex_state = 171}, - [117] = {.lex_state = 144}, - [118] = {.lex_state = 171}, - [119] = {.lex_state = 171}, - [120] = {.lex_state = 171}, - [121] = {.lex_state = 144}, + [111] = {.lex_state = 171}, + [112] = {.lex_state = 174}, + [113] = {.lex_state = 174}, + [114] = {.lex_state = 174}, + [115] = {.lex_state = 171}, + [116] = {.lex_state = 174}, + [117] = {.lex_state = 174}, + [118] = {.lex_state = 174}, + [119] = {.lex_state = 145}, + [120] = {.lex_state = 145}, + [121] = {.lex_state = 171}, [122] = {.lex_state = 174}, - [123] = {.lex_state = 171}, - [124] = {.lex_state = 174}, - [125] = {.lex_state = 174}, - [126] = {.lex_state = 174}, + [123] = {.lex_state = 174}, + [124] = {.lex_state = 171}, + [125] = {.lex_state = 171}, + [126] = {.lex_state = 171}, [127] = {.lex_state = 174}, - [128] = {.lex_state = 163}, - [129] = {.lex_state = 171}, + [128] = {.lex_state = 174}, + [129] = {.lex_state = 174}, [130] = {.lex_state = 174}, - [131] = {.lex_state = 145}, - [132] = {.lex_state = 145}, - [133] = {.lex_state = 145}, + [131] = {.lex_state = 174}, + [132] = {.lex_state = 174}, + [133] = {.lex_state = 174}, [134] = {.lex_state = 171}, - [135] = {.lex_state = 174}, + [135] = {.lex_state = 171}, [136] = {.lex_state = 171}, [137] = {.lex_state = 171}, - [138] = {.lex_state = 174}, + [138] = {.lex_state = 145}, [139] = {.lex_state = 171}, - [140] = {.lex_state = 174}, + [140] = {.lex_state = 171}, [141] = {.lex_state = 145}, [142] = {.lex_state = 171}, [143] = {.lex_state = 171}, - [144] = {.lex_state = 174}, - [145] = {.lex_state = 171}, - [146] = {.lex_state = 171}, - [147] = {.lex_state = 174}, - [148] = {.lex_state = 145}, - [149] = {.lex_state = 174}, - [150] = {.lex_state = 174}, - [151] = {.lex_state = 174}, + [144] = {.lex_state = 145}, + [145] = {.lex_state = 145}, + [146] = {.lex_state = 145}, + [147] = {.lex_state = 171}, + [148] = {.lex_state = 171}, + [149] = {.lex_state = 171}, + [150] = {.lex_state = 145}, + [151] = {.lex_state = 145}, [152] = {.lex_state = 171}, - [153] = {.lex_state = 174}, - [154] = {.lex_state = 174}, - [155] = {.lex_state = 174}, - [156] = {.lex_state = 174}, - [157] = {.lex_state = 174}, - [158] = {.lex_state = 174}, - [159] = {.lex_state = 174}, + [153] = {.lex_state = 145}, + [154] = {.lex_state = 171}, + [155] = {.lex_state = 171}, + [156] = {.lex_state = 171}, + [157] = {.lex_state = 171}, + [158] = {.lex_state = 145}, + [159] = {.lex_state = 171}, [160] = {.lex_state = 171}, [161] = {.lex_state = 145}, - [162] = {.lex_state = 174}, - [163] = {.lex_state = 174}, - [164] = {.lex_state = 174}, - [165] = {.lex_state = 174}, - [166] = {.lex_state = 174}, - [167] = {.lex_state = 174}, - [168] = {.lex_state = 174}, - [169] = {.lex_state = 174}, - [170] = {.lex_state = 145}, - [171] = {.lex_state = 174}, - [172] = {.lex_state = 174}, - [173] = {.lex_state = 174}, - [174] = {.lex_state = 174}, - [175] = {.lex_state = 174}, - [176] = {.lex_state = 174}, + [162] = {.lex_state = 145}, + [163] = {.lex_state = 171}, + [164] = {.lex_state = 171}, + [165] = {.lex_state = 171}, + [166] = {.lex_state = 145}, + [167] = {.lex_state = 171}, + [168] = {.lex_state = 145}, + [169] = {.lex_state = 171}, + [170] = {.lex_state = 171}, + [171] = {.lex_state = 171}, + [172] = {.lex_state = 145}, + [173] = {.lex_state = 145}, + [174] = {.lex_state = 145}, + [175] = {.lex_state = 171}, + [176] = {.lex_state = 145}, [177] = {.lex_state = 171}, - [178] = {.lex_state = 171}, - [179] = {.lex_state = 171}, - [180] = {.lex_state = 145}, + [178] = {.lex_state = 145}, + [179] = {.lex_state = 145}, + [180] = {.lex_state = 171}, [181] = {.lex_state = 171}, - [182] = {.lex_state = 145}, - [183] = {.lex_state = 171}, - [184] = {.lex_state = 145}, - [185] = {.lex_state = 145}, + [182] = {.lex_state = 171}, + [183] = {.lex_state = 145}, + [184] = {.lex_state = 171}, + [185] = {.lex_state = 171}, [186] = {.lex_state = 171}, [187] = {.lex_state = 171}, [188] = {.lex_state = 171}, - [189] = {.lex_state = 171}, - [190] = {.lex_state = 145}, - [191] = {.lex_state = 145}, - [192] = {.lex_state = 145}, - [193] = {.lex_state = 171}, - [194] = {.lex_state = 145}, - [195] = {.lex_state = 171}, - [196] = {.lex_state = 171}, + [189] = {.lex_state = 145}, + [190] = {.lex_state = 171}, + [191] = {.lex_state = 171}, + [192] = {.lex_state = 144}, + [193] = {.lex_state = 145}, + [194] = {.lex_state = 144}, + [195] = {.lex_state = 144}, + [196] = {.lex_state = 144}, [197] = {.lex_state = 145}, - [198] = {.lex_state = 171}, - [199] = {.lex_state = 171}, - [200] = {.lex_state = 171}, - [201] = {.lex_state = 171}, - [202] = {.lex_state = 171}, - [203] = {.lex_state = 171}, - [204] = {.lex_state = 171}, - [205] = {.lex_state = 171}, - [206] = {.lex_state = 171}, - [207] = {.lex_state = 171}, - [208] = {.lex_state = 171}, - [209] = {.lex_state = 145}, - [210] = {.lex_state = 171}, - [211] = {.lex_state = 145}, - [212] = {.lex_state = 145}, - [213] = {.lex_state = 171}, - [214] = {.lex_state = 145}, - [215] = {.lex_state = 171}, - [216] = {.lex_state = 145}, - [217] = {.lex_state = 171}, - [218] = {.lex_state = 171}, - [219] = {.lex_state = 171}, - [220] = {.lex_state = 145}, - [221] = {.lex_state = 171}, - [222] = {.lex_state = 171}, - [223] = {.lex_state = 145}, - [224] = {.lex_state = 171}, - [225] = {.lex_state = 171}, - [226] = {.lex_state = 171}, - [227] = {.lex_state = 145}, - [228] = {.lex_state = 145}, - [229] = {.lex_state = 145}, - [230] = {.lex_state = 171}, - [231] = {.lex_state = 145}, - [232] = {.lex_state = 171}, - [233] = {.lex_state = 145}, + [198] = {.lex_state = 144}, + [199] = {.lex_state = 144}, + [200] = {.lex_state = 144}, + [201] = {.lex_state = 142}, + [202] = {.lex_state = 144}, + [203] = {.lex_state = 144}, + [204] = {.lex_state = 144}, + [205] = {.lex_state = 142}, + [206] = {.lex_state = 142}, + [207] = {.lex_state = 144}, + [208] = {.lex_state = 142}, + [209] = {.lex_state = 144}, + [210] = {.lex_state = 142}, + [211] = {.lex_state = 142}, + [212] = {.lex_state = 142}, + [213] = {.lex_state = 144}, + [214] = {.lex_state = 142}, + [215] = {.lex_state = 144}, + [216] = {.lex_state = 142}, + [217] = {.lex_state = 142}, + [218] = {.lex_state = 142}, + [219] = {.lex_state = 144}, + [220] = {.lex_state = 144}, + [221] = {.lex_state = 142}, + [222] = {.lex_state = 142}, + [223] = {.lex_state = 142}, + [224] = {.lex_state = 144}, + [225] = {.lex_state = 144}, + [226] = {.lex_state = 144}, + [227] = {.lex_state = 142}, + [228] = {.lex_state = 144}, + [229] = {.lex_state = 144}, + [230] = {.lex_state = 142}, + [231] = {.lex_state = 142}, + [232] = {.lex_state = 144}, + [233] = {.lex_state = 144}, [234] = {.lex_state = 144}, - [235] = {.lex_state = 144}, - [236] = {.lex_state = 144}, - [237] = {.lex_state = 145}, - [238] = {.lex_state = 145}, + [235] = {.lex_state = 142}, + [236] = {.lex_state = 142}, + [237] = {.lex_state = 142}, + [238] = {.lex_state = 142}, [239] = {.lex_state = 144}, - [240] = {.lex_state = 144}, + [240] = {.lex_state = 142}, [241] = {.lex_state = 142}, - [242] = {.lex_state = 144}, - [243] = {.lex_state = 142}, - [244] = {.lex_state = 144}, + [242] = {.lex_state = 142}, + [243] = {.lex_state = 144}, + [244] = {.lex_state = 143}, [245] = {.lex_state = 142}, [246] = {.lex_state = 142}, - [247] = {.lex_state = 144}, - [248] = {.lex_state = 144}, - [249] = {.lex_state = 144}, - [250] = {.lex_state = 144}, + [247] = {.lex_state = 142}, + [248] = {.lex_state = 142}, + [249] = {.lex_state = 142}, + [250] = {.lex_state = 142}, [251] = {.lex_state = 142}, - [252] = {.lex_state = 142}, + [252] = {.lex_state = 144}, [253] = {.lex_state = 142}, [254] = {.lex_state = 142}, - [255] = {.lex_state = 142}, + [255] = {.lex_state = 144}, [256] = {.lex_state = 142}, - [257] = {.lex_state = 144}, + [257] = {.lex_state = 142}, [258] = {.lex_state = 142}, [259] = {.lex_state = 144}, - [260] = {.lex_state = 144}, - [261] = {.lex_state = 144}, - [262] = {.lex_state = 144}, - [263] = {.lex_state = 144}, - [264] = {.lex_state = 142}, + [260] = {.lex_state = 142}, + [261] = {.lex_state = 142}, + [262] = {.lex_state = 142}, + [263] = {.lex_state = 142}, + [264] = {.lex_state = 144}, [265] = {.lex_state = 142}, - [266] = {.lex_state = 144}, + [266] = {.lex_state = 142}, [267] = {.lex_state = 144}, [268] = {.lex_state = 142}, [269] = {.lex_state = 142}, [270] = {.lex_state = 142}, [271] = {.lex_state = 142}, - [272] = {.lex_state = 144}, - [273] = {.lex_state = 144}, - [274] = {.lex_state = 144}, + [272] = {.lex_state = 142}, + [273] = {.lex_state = 142}, + [274] = {.lex_state = 142}, [275] = {.lex_state = 142}, [276] = {.lex_state = 142}, [277] = {.lex_state = 142}, @@ -5739,22 +5716,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 142}, [281] = {.lex_state = 142}, [282] = {.lex_state = 142}, - [283] = {.lex_state = 144}, + [283] = {.lex_state = 142}, [284] = {.lex_state = 142}, - [285] = {.lex_state = 144}, + [285] = {.lex_state = 142}, [286] = {.lex_state = 142}, [287] = {.lex_state = 142}, [288] = {.lex_state = 142}, - [289] = {.lex_state = 142}, + [289] = {.lex_state = 143}, [290] = {.lex_state = 142}, - [291] = {.lex_state = 144}, + [291] = {.lex_state = 142}, [292] = {.lex_state = 142}, [293] = {.lex_state = 142}, - [294] = {.lex_state = 144}, - [295] = {.lex_state = 144}, - [296] = {.lex_state = 144}, - [297] = {.lex_state = 144}, - [298] = {.lex_state = 144}, + [294] = {.lex_state = 142}, + [295] = {.lex_state = 142}, + [296] = {.lex_state = 142}, + [297] = {.lex_state = 142}, + [298] = {.lex_state = 142}, [299] = {.lex_state = 142}, [300] = {.lex_state = 142}, [301] = {.lex_state = 142}, @@ -5771,7 +5748,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 142}, [313] = {.lex_state = 142}, [314] = {.lex_state = 142}, - [315] = {.lex_state = 143}, + [315] = {.lex_state = 142}, [316] = {.lex_state = 142}, [317] = {.lex_state = 142}, [318] = {.lex_state = 142}, @@ -5798,59 +5775,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [339] = {.lex_state = 142}, [340] = {.lex_state = 142}, [341] = {.lex_state = 142}, - [342] = {.lex_state = 144}, + [342] = {.lex_state = 142}, [343] = {.lex_state = 142}, [344] = {.lex_state = 144}, [345] = {.lex_state = 142}, [346] = {.lex_state = 144}, - [347] = {.lex_state = 144}, + [347] = {.lex_state = 142}, [348] = {.lex_state = 142}, [349] = {.lex_state = 142}, [350] = {.lex_state = 142}, - [351] = {.lex_state = 142}, + [351] = {.lex_state = 144}, [352] = {.lex_state = 144}, [353] = {.lex_state = 142}, - [354] = {.lex_state = 143}, - [355] = {.lex_state = 144}, + [354] = {.lex_state = 144}, + [355] = {.lex_state = 142}, [356] = {.lex_state = 142}, [357] = {.lex_state = 142}, [358] = {.lex_state = 142}, - [359] = {.lex_state = 144}, + [359] = {.lex_state = 142}, [360] = {.lex_state = 142}, - [361] = {.lex_state = 142}, + [361] = {.lex_state = 144}, [362] = {.lex_state = 144}, - [363] = {.lex_state = 142}, - [364] = {.lex_state = 142}, - [365] = {.lex_state = 142}, - [366] = {.lex_state = 142}, - [367] = {.lex_state = 142}, + [363] = {.lex_state = 144}, + [364] = {.lex_state = 144}, + [365] = {.lex_state = 143}, + [366] = {.lex_state = 143}, + [367] = {.lex_state = 143}, [368] = {.lex_state = 142}, [369] = {.lex_state = 142}, - [370] = {.lex_state = 142}, + [370] = {.lex_state = 143}, [371] = {.lex_state = 142}, [372] = {.lex_state = 142}, [373] = {.lex_state = 142}, [374] = {.lex_state = 142}, [375] = {.lex_state = 142}, - [376] = {.lex_state = 144}, + [376] = {.lex_state = 142}, [377] = {.lex_state = 144}, [378] = {.lex_state = 142}, [379] = {.lex_state = 142}, - [380] = {.lex_state = 142}, - [381] = {.lex_state = 142}, + [380] = {.lex_state = 144}, + [381] = {.lex_state = 143}, [382] = {.lex_state = 142}, [383] = {.lex_state = 142}, [384] = {.lex_state = 142}, [385] = {.lex_state = 142}, - [386] = {.lex_state = 142}, - [387] = {.lex_state = 142}, + [386] = {.lex_state = 143}, + [387] = {.lex_state = 143}, [388] = {.lex_state = 142}, [389] = {.lex_state = 142}, [390] = {.lex_state = 142}, [391] = {.lex_state = 142}, [392] = {.lex_state = 142}, - [393] = {.lex_state = 142}, - [394] = {.lex_state = 142}, + [393] = {.lex_state = 143}, + [394] = {.lex_state = 143}, [395] = {.lex_state = 142}, [396] = {.lex_state = 142}, [397] = {.lex_state = 142}, @@ -5860,387 +5837,387 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [401] = {.lex_state = 142}, [402] = {.lex_state = 142}, [403] = {.lex_state = 142}, - [404] = {.lex_state = 142}, - [405] = {.lex_state = 142}, + [404] = {.lex_state = 143}, + [405] = {.lex_state = 144}, [406] = {.lex_state = 142}, - [407] = {.lex_state = 142}, + [407] = {.lex_state = 144}, [408] = {.lex_state = 142}, [409] = {.lex_state = 142}, - [410] = {.lex_state = 142}, + [410] = {.lex_state = 144}, [411] = {.lex_state = 142}, - [412] = {.lex_state = 142}, - [413] = {.lex_state = 143}, - [414] = {.lex_state = 143}, - [415] = {.lex_state = 142}, - [416] = {.lex_state = 143}, + [412] = {.lex_state = 144}, + [413] = {.lex_state = 142}, + [414] = {.lex_state = 144}, + [415] = {.lex_state = 144}, + [416] = {.lex_state = 142}, [417] = {.lex_state = 142}, [418] = {.lex_state = 142}, [419] = {.lex_state = 142}, - [420] = {.lex_state = 142}, + [420] = {.lex_state = 143}, [421] = {.lex_state = 142}, - [422] = {.lex_state = 142}, + [422] = {.lex_state = 143}, [423] = {.lex_state = 142}, [424] = {.lex_state = 142}, - [425] = {.lex_state = 143}, + [425] = {.lex_state = 142}, [426] = {.lex_state = 142}, - [427] = {.lex_state = 142}, + [427] = {.lex_state = 143}, [428] = {.lex_state = 143}, [429] = {.lex_state = 142}, - [430] = {.lex_state = 143}, - [431] = {.lex_state = 142}, + [430] = {.lex_state = 142}, + [431] = {.lex_state = 143}, [432] = {.lex_state = 142}, [433] = {.lex_state = 142}, [434] = {.lex_state = 142}, [435] = {.lex_state = 142}, - [436] = {.lex_state = 143}, + [436] = {.lex_state = 142}, [437] = {.lex_state = 142}, [438] = {.lex_state = 142}, - [439] = {.lex_state = 143}, + [439] = {.lex_state = 142}, [440] = {.lex_state = 142}, [441] = {.lex_state = 142}, [442] = {.lex_state = 142}, [443] = {.lex_state = 142}, - [444] = {.lex_state = 144}, + [444] = {.lex_state = 142}, [445] = {.lex_state = 142}, [446] = {.lex_state = 142}, [447] = {.lex_state = 142}, - [448] = {.lex_state = 143}, - [449] = {.lex_state = 143}, - [450] = {.lex_state = 143}, - [451] = {.lex_state = 143}, + [448] = {.lex_state = 142}, + [449] = {.lex_state = 142}, + [450] = {.lex_state = 142}, + [451] = {.lex_state = 142}, [452] = {.lex_state = 142}, - [453] = {.lex_state = 144}, + [453] = {.lex_state = 142}, [454] = {.lex_state = 142}, - [455] = {.lex_state = 144}, + [455] = {.lex_state = 142}, [456] = {.lex_state = 142}, - [457] = {.lex_state = 142}, + [457] = {.lex_state = 143}, [458] = {.lex_state = 142}, [459] = {.lex_state = 142}, - [460] = {.lex_state = 142}, + [460] = {.lex_state = 143}, [461] = {.lex_state = 142}, [462] = {.lex_state = 142}, - [463] = {.lex_state = 142}, + [463] = {.lex_state = 143}, [464] = {.lex_state = 142}, [465] = {.lex_state = 142}, [466] = {.lex_state = 143}, - [467] = {.lex_state = 142}, - [468] = {.lex_state = 142}, - [469] = {.lex_state = 142}, - [470] = {.lex_state = 142}, - [471] = {.lex_state = 142}, - [472] = {.lex_state = 142}, - [473] = {.lex_state = 142}, - [474] = {.lex_state = 142}, + [467] = {.lex_state = 143}, + [468] = {.lex_state = 143}, + [469] = {.lex_state = 143}, + [470] = {.lex_state = 143}, + [471] = {.lex_state = 143}, + [472] = {.lex_state = 143}, + [473] = {.lex_state = 143}, + [474] = {.lex_state = 143}, [475] = {.lex_state = 143}, - [476] = {.lex_state = 142}, + [476] = {.lex_state = 143}, [477] = {.lex_state = 143}, - [478] = {.lex_state = 142}, + [478] = {.lex_state = 143}, [479] = {.lex_state = 142}, - [480] = {.lex_state = 142}, - [481] = {.lex_state = 142}, - [482] = {.lex_state = 142}, + [480] = {.lex_state = 143}, + [481] = {.lex_state = 144}, + [482] = {.lex_state = 143}, [483] = {.lex_state = 142}, - [484] = {.lex_state = 142}, - [485] = {.lex_state = 142}, - [486] = {.lex_state = 142}, - [487] = {.lex_state = 142}, - [488] = {.lex_state = 142}, - [489] = {.lex_state = 142}, - [490] = {.lex_state = 144}, + [484] = {.lex_state = 143}, + [485] = {.lex_state = 143}, + [486] = {.lex_state = 143}, + [487] = {.lex_state = 143}, + [488] = {.lex_state = 143}, + [489] = {.lex_state = 143}, + [490] = {.lex_state = 143}, [491] = {.lex_state = 142}, - [492] = {.lex_state = 142}, + [492] = {.lex_state = 143}, [493] = {.lex_state = 142}, - [494] = {.lex_state = 144}, + [494] = {.lex_state = 142}, [495] = {.lex_state = 142}, - [496] = {.lex_state = 142}, + [496] = {.lex_state = 143}, [497] = {.lex_state = 143}, [498] = {.lex_state = 143}, [499] = {.lex_state = 142}, - [500] = {.lex_state = 144}, - [501] = {.lex_state = 142}, - [502] = {.lex_state = 144}, + [500] = {.lex_state = 142}, + [501] = {.lex_state = 143}, + [502] = {.lex_state = 142}, [503] = {.lex_state = 142}, - [504] = {.lex_state = 142}, - [505] = {.lex_state = 142}, - [506] = {.lex_state = 143}, + [504] = {.lex_state = 143}, + [505] = {.lex_state = 143}, + [506] = {.lex_state = 142}, [507] = {.lex_state = 143}, [508] = {.lex_state = 143}, - [509] = {.lex_state = 143}, + [509] = {.lex_state = 142}, [510] = {.lex_state = 143}, [511] = {.lex_state = 143}, - [512] = {.lex_state = 143}, - [513] = {.lex_state = 144}, + [512] = {.lex_state = 142}, + [513] = {.lex_state = 143}, [514] = {.lex_state = 143}, - [515] = {.lex_state = 142}, - [516] = {.lex_state = 143}, - [517] = {.lex_state = 143}, + [515] = {.lex_state = 143}, + [516] = {.lex_state = 142}, + [517] = {.lex_state = 142}, [518] = {.lex_state = 143}, - [519] = {.lex_state = 143}, + [519] = {.lex_state = 142}, [520] = {.lex_state = 143}, [521] = {.lex_state = 143}, [522] = {.lex_state = 143}, - [523] = {.lex_state = 143}, + [523] = {.lex_state = 142}, [524] = {.lex_state = 143}, [525] = {.lex_state = 143}, [526] = {.lex_state = 142}, - [527] = {.lex_state = 143}, + [527] = {.lex_state = 142}, [528] = {.lex_state = 143}, [529] = {.lex_state = 143}, - [530] = {.lex_state = 142}, - [531] = {.lex_state = 142}, + [530] = {.lex_state = 143}, + [531] = {.lex_state = 143}, [532] = {.lex_state = 143}, - [533] = {.lex_state = 143}, - [534] = {.lex_state = 142}, - [535] = {.lex_state = 143}, - [536] = {.lex_state = 143}, - [537] = {.lex_state = 142}, - [538] = {.lex_state = 142}, - [539] = {.lex_state = 142}, - [540] = {.lex_state = 142}, - [541] = {.lex_state = 143}, - [542] = {.lex_state = 143}, - [543] = {.lex_state = 142}, - [544] = {.lex_state = 143}, - [545] = {.lex_state = 143}, - [546] = {.lex_state = 143}, - [547] = {.lex_state = 142}, - [548] = {.lex_state = 143}, - [549] = {.lex_state = 142}, - [550] = {.lex_state = 143}, - [551] = {.lex_state = 143}, - [552] = {.lex_state = 143}, - [553] = {.lex_state = 142}, - [554] = {.lex_state = 143}, - [555] = {.lex_state = 143}, - [556] = {.lex_state = 143}, - [557] = {.lex_state = 143}, - [558] = {.lex_state = 143}, - [559] = {.lex_state = 143}, - [560] = {.lex_state = 143}, - [561] = {.lex_state = 143}, - [562] = {.lex_state = 143}, - [563] = {.lex_state = 142}, - [564] = {.lex_state = 143}, - [565] = {.lex_state = 142}, - [566] = {.lex_state = 143}, - [567] = {.lex_state = 142}, - [568] = {.lex_state = 142}, - [569] = {.lex_state = 143}, - [570] = {.lex_state = 142}, - [571] = {.lex_state = 143}, - [572] = {.lex_state = 142}, - [573] = {.lex_state = 144}, - [574] = {.lex_state = 144}, - [575] = {.lex_state = 144}, - [576] = {.lex_state = 144}, - [577] = {.lex_state = 144}, - [578] = {.lex_state = 144}, - [579] = {.lex_state = 144}, - [580] = {.lex_state = 144}, - [581] = {.lex_state = 144}, - [582] = {.lex_state = 144}, - [583] = {.lex_state = 144}, - [584] = {.lex_state = 144}, - [585] = {.lex_state = 144}, - [586] = {.lex_state = 144}, - [587] = {.lex_state = 144}, - [588] = {.lex_state = 144}, - [589] = {.lex_state = 144}, - [590] = {.lex_state = 147}, - [591] = {.lex_state = 147}, - [592] = {.lex_state = 147}, - [593] = {.lex_state = 147}, - [594] = {.lex_state = 147}, - [595] = {.lex_state = 147}, - [596] = {.lex_state = 149}, - [597] = {.lex_state = 150}, - [598] = {.lex_state = 150}, - [599] = {.lex_state = 150}, - [600] = {.lex_state = 150}, + [533] = {.lex_state = 144}, + [534] = {.lex_state = 144}, + [535] = {.lex_state = 144}, + [536] = {.lex_state = 144}, + [537] = {.lex_state = 144}, + [538] = {.lex_state = 144}, + [539] = {.lex_state = 144}, + [540] = {.lex_state = 144}, + [541] = {.lex_state = 144}, + [542] = {.lex_state = 144}, + [543] = {.lex_state = 144}, + [544] = {.lex_state = 144}, + [545] = {.lex_state = 144}, + [546] = {.lex_state = 144}, + [547] = {.lex_state = 144}, + [548] = {.lex_state = 144}, + [549] = {.lex_state = 144}, + [550] = {.lex_state = 147}, + [551] = {.lex_state = 147}, + [552] = {.lex_state = 147}, + [553] = {.lex_state = 147}, + [554] = {.lex_state = 147}, + [555] = {.lex_state = 149}, + [556] = {.lex_state = 149}, + [557] = {.lex_state = 147}, + [558] = {.lex_state = 149}, + [559] = {.lex_state = 150}, + [560] = {.lex_state = 150}, + [561] = {.lex_state = 150}, + [562] = {.lex_state = 150}, + [563] = {.lex_state = 150}, + [564] = {.lex_state = 150}, + [565] = {.lex_state = 150}, + [566] = {.lex_state = 150}, + [567] = {.lex_state = 150}, + [568] = {.lex_state = 150}, + [569] = {.lex_state = 150}, + [570] = {.lex_state = 150}, + [571] = {.lex_state = 151}, + [572] = {.lex_state = 150}, + [573] = {.lex_state = 150}, + [574] = {.lex_state = 150}, + [575] = {.lex_state = 164}, + [576] = {.lex_state = 151}, + [577] = {.lex_state = 150}, + [578] = {.lex_state = 150}, + [579] = {.lex_state = 150}, + [580] = {.lex_state = 150}, + [581] = {.lex_state = 150}, + [582] = {.lex_state = 150}, + [583] = {.lex_state = 150}, + [584] = {.lex_state = 150}, + [585] = {.lex_state = 150}, + [586] = {.lex_state = 150}, + [587] = {.lex_state = 150}, + [588] = {.lex_state = 150}, + [589] = {.lex_state = 150}, + [590] = {.lex_state = 150}, + [591] = {.lex_state = 150}, + [592] = {.lex_state = 150}, + [593] = {.lex_state = 150}, + [594] = {.lex_state = 150}, + [595] = {.lex_state = 164}, + [596] = {.lex_state = 164}, + [597] = {.lex_state = 164}, + [598] = {.lex_state = 164}, + [599] = {.lex_state = 164}, + [600] = {.lex_state = 164}, [601] = {.lex_state = 150}, [602] = {.lex_state = 150}, - [603] = {.lex_state = 150}, - [604] = {.lex_state = 164}, - [605] = {.lex_state = 150}, + [603] = {.lex_state = 164}, + [604] = {.lex_state = 150}, + [605] = {.lex_state = 164}, [606] = {.lex_state = 150}, [607] = {.lex_state = 150}, - [608] = {.lex_state = 150}, + [608] = {.lex_state = 164}, [609] = {.lex_state = 150}, - [610] = {.lex_state = 150}, + [610] = {.lex_state = 164}, [611] = {.lex_state = 150}, [612] = {.lex_state = 150}, - [613] = {.lex_state = 150}, - [614] = {.lex_state = 150}, - [615] = {.lex_state = 150}, + [613] = {.lex_state = 164}, + [614] = {.lex_state = 164}, + [615] = {.lex_state = 164}, [616] = {.lex_state = 150}, - [617] = {.lex_state = 151}, - [618] = {.lex_state = 151}, - [619] = {.lex_state = 150}, + [617] = {.lex_state = 150}, + [618] = {.lex_state = 150}, + [619] = {.lex_state = 164}, [620] = {.lex_state = 150}, [621] = {.lex_state = 150}, [622] = {.lex_state = 150}, - [623] = {.lex_state = 150}, + [623] = {.lex_state = 164}, [624] = {.lex_state = 150}, [625] = {.lex_state = 150}, [626] = {.lex_state = 150}, [627] = {.lex_state = 150}, [628] = {.lex_state = 150}, - [629] = {.lex_state = 150}, + [629] = {.lex_state = 164}, [630] = {.lex_state = 150}, [631] = {.lex_state = 150}, - [632] = {.lex_state = 164}, + [632] = {.lex_state = 150}, [633] = {.lex_state = 150}, - [634] = {.lex_state = 164}, + [634] = {.lex_state = 150}, [635] = {.lex_state = 150}, [636] = {.lex_state = 150}, - [637] = {.lex_state = 164}, - [638] = {.lex_state = 164}, - [639] = {.lex_state = 150}, + [637] = {.lex_state = 150}, + [638] = {.lex_state = 150}, + [639] = {.lex_state = 164}, [640] = {.lex_state = 150}, [641] = {.lex_state = 150}, - [642] = {.lex_state = 164}, - [643] = {.lex_state = 164}, - [644] = {.lex_state = 150}, - [645] = {.lex_state = 150}, - [646] = {.lex_state = 150}, - [647] = {.lex_state = 150}, - [648] = {.lex_state = 150}, - [649] = {.lex_state = 164}, - [650] = {.lex_state = 150}, - [651] = {.lex_state = 164}, - [652] = {.lex_state = 150}, - [653] = {.lex_state = 150}, - [654] = {.lex_state = 150}, - [655] = {.lex_state = 150}, - [656] = {.lex_state = 150}, - [657] = {.lex_state = 164}, - [658] = {.lex_state = 164}, - [659] = {.lex_state = 150}, - [660] = {.lex_state = 150}, - [661] = {.lex_state = 150}, - [662] = {.lex_state = 150}, - [663] = {.lex_state = 150}, - [664] = {.lex_state = 150}, - [665] = {.lex_state = 150}, - [666] = {.lex_state = 150}, - [667] = {.lex_state = 150}, - [668] = {.lex_state = 150}, - [669] = {.lex_state = 150}, - [670] = {.lex_state = 150}, + [642] = {.lex_state = 150}, + [643] = {.lex_state = 150}, + [644] = {.lex_state = 164}, + [645] = {.lex_state = 174}, + [646] = {.lex_state = 174}, + [647] = {.lex_state = 174}, + [648] = {.lex_state = 174}, + [649] = {.lex_state = 172}, + [650] = {.lex_state = 149}, + [651] = {.lex_state = 149}, + [652] = {.lex_state = 149}, + [653] = {.lex_state = 149}, + [654] = {.lex_state = 149}, + [655] = {.lex_state = 149}, + [656] = {.lex_state = 173}, + [657] = {.lex_state = 149}, + [658] = {.lex_state = 149}, + [659] = {.lex_state = 172}, + [660] = {.lex_state = 174}, + [661] = {.lex_state = 173}, + [662] = {.lex_state = 149}, + [663] = {.lex_state = 171}, + [664] = {.lex_state = 149}, + [665] = {.lex_state = 171}, + [666] = {.lex_state = 172}, + [667] = {.lex_state = 149}, + [668] = {.lex_state = 149}, + [669] = {.lex_state = 171}, + [670] = {.lex_state = 149}, [671] = {.lex_state = 150}, - [672] = {.lex_state = 150}, - [673] = {.lex_state = 150}, - [674] = {.lex_state = 164}, - [675] = {.lex_state = 164}, - [676] = {.lex_state = 164}, - [677] = {.lex_state = 164}, - [678] = {.lex_state = 164}, - [679] = {.lex_state = 164}, - [680] = {.lex_state = 164}, - [681] = {.lex_state = 164}, + [672] = {.lex_state = 149}, + [673] = {.lex_state = 171}, + [674] = {.lex_state = 150}, + [675] = {.lex_state = 174}, + [676] = {.lex_state = 172}, + [677] = {.lex_state = 172}, + [678] = {.lex_state = 173}, + [679] = {.lex_state = 174}, + [680] = {.lex_state = 174}, + [681] = {.lex_state = 172}, [682] = {.lex_state = 174}, - [683] = {.lex_state = 174}, - [684] = {.lex_state = 174}, - [685] = {.lex_state = 174}, - [686] = {.lex_state = 149}, + [683] = {.lex_state = 172}, + [684] = {.lex_state = 171}, + [685] = {.lex_state = 150}, + [686] = {.lex_state = 150}, [687] = {.lex_state = 172}, - [688] = {.lex_state = 171}, - [689] = {.lex_state = 149}, - [690] = {.lex_state = 149}, - [691] = {.lex_state = 172}, - [692] = {.lex_state = 174}, - [693] = {.lex_state = 149}, + [688] = {.lex_state = 174}, + [689] = {.lex_state = 174}, + [690] = {.lex_state = 150}, + [691] = {.lex_state = 173}, + [692] = {.lex_state = 173}, + [693] = {.lex_state = 171}, [694] = {.lex_state = 149}, [695] = {.lex_state = 149}, - [696] = {.lex_state = 149}, - [697] = {.lex_state = 171}, - [698] = {.lex_state = 172}, + [696] = {.lex_state = 150}, + [697] = {.lex_state = 149}, + [698] = {.lex_state = 150}, [699] = {.lex_state = 149}, [700] = {.lex_state = 149}, [701] = {.lex_state = 149}, [702] = {.lex_state = 149}, [703] = {.lex_state = 149}, - [704] = {.lex_state = 149}, + [704] = {.lex_state = 171}, [705] = {.lex_state = 149}, - [706] = {.lex_state = 171}, - [707] = {.lex_state = 174}, + [706] = {.lex_state = 149}, + [707] = {.lex_state = 149}, [708] = {.lex_state = 172}, - [709] = {.lex_state = 171}, - [710] = {.lex_state = 150}, - [711] = {.lex_state = 150}, - [712] = {.lex_state = 172}, + [709] = {.lex_state = 173}, + [710] = {.lex_state = 149}, + [711] = {.lex_state = 172}, + [712] = {.lex_state = 149}, [713] = {.lex_state = 171}, [714] = {.lex_state = 149}, - [715] = {.lex_state = 174}, - [716] = {.lex_state = 173}, + [715] = {.lex_state = 147}, + [716] = {.lex_state = 149}, [717] = {.lex_state = 149}, - [718] = {.lex_state = 173}, - [719] = {.lex_state = 150}, - [720] = {.lex_state = 150}, - [721] = {.lex_state = 149}, - [722] = {.lex_state = 174}, - [723] = {.lex_state = 174}, - [724] = {.lex_state = 149}, - [725] = {.lex_state = 174}, + [718] = {.lex_state = 171}, + [719] = {.lex_state = 149}, + [720] = {.lex_state = 149}, + [721] = {.lex_state = 171}, + [722] = {.lex_state = 171}, + [723] = {.lex_state = 171}, + [724] = {.lex_state = 171}, + [725] = {.lex_state = 171}, [726] = {.lex_state = 149}, - [727] = {.lex_state = 149}, - [728] = {.lex_state = 173}, - [729] = {.lex_state = 150}, - [730] = {.lex_state = 149}, - [731] = {.lex_state = 173}, - [732] = {.lex_state = 172}, - [733] = {.lex_state = 150}, - [734] = {.lex_state = 172}, - [735] = {.lex_state = 173}, - [736] = {.lex_state = 174}, - [737] = {.lex_state = 149}, - [738] = {.lex_state = 173}, - [739] = {.lex_state = 149}, - [740] = {.lex_state = 149}, - [741] = {.lex_state = 150}, - [742] = {.lex_state = 172}, + [727] = {.lex_state = 147}, + [728] = {.lex_state = 171}, + [729] = {.lex_state = 171}, + [730] = {.lex_state = 171}, + [731] = {.lex_state = 171}, + [732] = {.lex_state = 171}, + [733] = {.lex_state = 171}, + [734] = {.lex_state = 149}, + [735] = {.lex_state = 171}, + [736] = {.lex_state = 171}, + [737] = {.lex_state = 171}, + [738] = {.lex_state = 147}, + [739] = {.lex_state = 150}, + [740] = {.lex_state = 171}, + [741] = {.lex_state = 171}, + [742] = {.lex_state = 171}, [743] = {.lex_state = 149}, [744] = {.lex_state = 149}, - [745] = {.lex_state = 172}, - [746] = {.lex_state = 149}, - [747] = {.lex_state = 172}, + [745] = {.lex_state = 171}, + [746] = {.lex_state = 171}, + [747] = {.lex_state = 171}, [748] = {.lex_state = 171}, - [749] = {.lex_state = 149}, - [750] = {.lex_state = 171}, - [751] = {.lex_state = 149}, + [749] = {.lex_state = 171}, + [750] = {.lex_state = 147}, + [751] = {.lex_state = 150}, [752] = {.lex_state = 171}, [753] = {.lex_state = 171}, [754] = {.lex_state = 171}, - [755] = {.lex_state = 171}, + [755] = {.lex_state = 149}, [756] = {.lex_state = 171}, [757] = {.lex_state = 171}, - [758] = {.lex_state = 171}, + [758] = {.lex_state = 149}, [759] = {.lex_state = 149}, [760] = {.lex_state = 171}, - [761] = {.lex_state = 171}, - [762] = {.lex_state = 150}, - [763] = {.lex_state = 149}, + [761] = {.lex_state = 149}, + [762] = {.lex_state = 149}, + [763] = {.lex_state = 171}, [764] = {.lex_state = 171}, - [765] = {.lex_state = 171}, - [766] = {.lex_state = 171}, + [765] = {.lex_state = 150}, + [766] = {.lex_state = 150}, [767] = {.lex_state = 171}, - [768] = {.lex_state = 171}, - [769] = {.lex_state = 150}, - [770] = {.lex_state = 171}, - [771] = {.lex_state = 171}, + [768] = {.lex_state = 149}, + [769] = {.lex_state = 171}, + [770] = {.lex_state = 149}, + [771] = {.lex_state = 149}, [772] = {.lex_state = 171}, [773] = {.lex_state = 149}, - [774] = {.lex_state = 149}, - [775] = {.lex_state = 171}, - [776] = {.lex_state = 149}, - [777] = {.lex_state = 171}, - [778] = {.lex_state = 149}, + [774] = {.lex_state = 171}, + [775] = {.lex_state = 147}, + [776] = {.lex_state = 171}, + [777] = {.lex_state = 147}, + [778] = {.lex_state = 171}, [779] = {.lex_state = 171}, [780] = {.lex_state = 171}, [781] = {.lex_state = 171}, - [782] = {.lex_state = 149}, + [782] = {.lex_state = 171}, [783] = {.lex_state = 171}, - [784] = {.lex_state = 147}, + [784] = {.lex_state = 171}, [785] = {.lex_state = 171}, [786] = {.lex_state = 171}, [787] = {.lex_state = 171}, @@ -6249,381 +6226,381 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [790] = {.lex_state = 171}, [791] = {.lex_state = 171}, [792] = {.lex_state = 171}, - [793] = {.lex_state = 150}, + [793] = {.lex_state = 171}, [794] = {.lex_state = 171}, - [795] = {.lex_state = 149}, + [795] = {.lex_state = 150}, [796] = {.lex_state = 171}, [797] = {.lex_state = 171}, [798] = {.lex_state = 171}, - [799] = {.lex_state = 147}, + [799] = {.lex_state = 171}, [800] = {.lex_state = 171}, - [801] = {.lex_state = 171}, - [802] = {.lex_state = 171}, - [803] = {.lex_state = 171}, - [804] = {.lex_state = 171}, - [805] = {.lex_state = 171}, - [806] = {.lex_state = 171}, - [807] = {.lex_state = 171}, - [808] = {.lex_state = 171}, - [809] = {.lex_state = 171}, - [810] = {.lex_state = 147}, - [811] = {.lex_state = 171}, - [812] = {.lex_state = 171}, - [813] = {.lex_state = 147}, - [814] = {.lex_state = 171}, - [815] = {.lex_state = 171}, - [816] = {.lex_state = 171}, - [817] = {.lex_state = 150}, + [801] = {.lex_state = 149}, + [802] = {.lex_state = 149}, + [803] = {.lex_state = 152}, + [804] = {.lex_state = 152}, + [805] = {.lex_state = 147}, + [806] = {.lex_state = 152}, + [807] = {.lex_state = 152}, + [808] = {.lex_state = 152}, + [809] = {.lex_state = 152}, + [810] = {.lex_state = 149}, + [811] = {.lex_state = 152}, + [812] = {.lex_state = 149}, + [813] = {.lex_state = 152}, + [814] = {.lex_state = 149}, + [815] = {.lex_state = 149}, + [816] = {.lex_state = 152}, + [817] = {.lex_state = 153}, [818] = {.lex_state = 149}, [819] = {.lex_state = 149}, - [820] = {.lex_state = 171}, - [821] = {.lex_state = 171}, - [822] = {.lex_state = 147}, - [823] = {.lex_state = 150}, + [820] = {.lex_state = 149}, + [821] = {.lex_state = 149}, + [822] = {.lex_state = 149}, + [823] = {.lex_state = 152}, [824] = {.lex_state = 149}, - [825] = {.lex_state = 171}, - [826] = {.lex_state = 149}, - [827] = {.lex_state = 149}, - [828] = {.lex_state = 171}, - [829] = {.lex_state = 149}, - [830] = {.lex_state = 171}, - [831] = {.lex_state = 149}, - [832] = {.lex_state = 149}, - [833] = {.lex_state = 171}, - [834] = {.lex_state = 171}, - [835] = {.lex_state = 149}, - [836] = {.lex_state = 147}, - [837] = {.lex_state = 171}, - [838] = {.lex_state = 171}, - [839] = {.lex_state = 171}, - [840] = {.lex_state = 171}, - [841] = {.lex_state = 171}, - [842] = {.lex_state = 171}, - [843] = {.lex_state = 171}, - [844] = {.lex_state = 147}, - [845] = {.lex_state = 152}, - [846] = {.lex_state = 152}, - [847] = {.lex_state = 152}, - [848] = {.lex_state = 152}, - [849] = {.lex_state = 149}, - [850] = {.lex_state = 152}, - [851] = {.lex_state = 152}, - [852] = {.lex_state = 153}, - [853] = {.lex_state = 149}, - [854] = {.lex_state = 152}, - [855] = {.lex_state = 152}, - [856] = {.lex_state = 152}, - [857] = {.lex_state = 152}, - [858] = {.lex_state = 152}, - [859] = {.lex_state = 152}, - [860] = {.lex_state = 152}, + [825] = {.lex_state = 152}, + [826] = {.lex_state = 152}, + [827] = {.lex_state = 152}, + [828] = {.lex_state = 147}, + [829] = {.lex_state = 147}, + [830] = {.lex_state = 152}, + [831] = {.lex_state = 152}, + [832] = {.lex_state = 150}, + [833] = {.lex_state = 147}, + [834] = {.lex_state = 147}, + [835] = {.lex_state = 150}, + [836] = {.lex_state = 154}, + [837] = {.lex_state = 154}, + [838] = {.lex_state = 150}, + [839] = {.lex_state = 150}, + [840] = {.lex_state = 147}, + [841] = {.lex_state = 155}, + [842] = {.lex_state = 154}, + [843] = {.lex_state = 154}, + [844] = {.lex_state = 155}, + [845] = {.lex_state = 155}, + [846] = {.lex_state = 150}, + [847] = {.lex_state = 150}, + [848] = {.lex_state = 155}, + [849] = {.lex_state = 156}, + [850] = {.lex_state = 150}, + [851] = {.lex_state = 150}, + [852] = {.lex_state = 156}, + [853] = {.lex_state = 164}, + [854] = {.lex_state = 149}, + [855] = {.lex_state = 150}, + [856] = {.lex_state = 149}, + [857] = {.lex_state = 150}, + [858] = {.lex_state = 150}, + [859] = {.lex_state = 149}, + [860] = {.lex_state = 150}, [861] = {.lex_state = 149}, [862] = {.lex_state = 149}, - [863] = {.lex_state = 149}, - [864] = {.lex_state = 149}, - [865] = {.lex_state = 152}, - [866] = {.lex_state = 152}, - [867] = {.lex_state = 147}, - [868] = {.lex_state = 147}, - [869] = {.lex_state = 149}, + [863] = {.lex_state = 150}, + [864] = {.lex_state = 150}, + [865] = {.lex_state = 150}, + [866] = {.lex_state = 149}, + [867] = {.lex_state = 149}, + [868] = {.lex_state = 150}, + [869] = {.lex_state = 150}, [870] = {.lex_state = 149}, - [871] = {.lex_state = 149}, - [872] = {.lex_state = 149}, + [871] = {.lex_state = 150}, + [872] = {.lex_state = 150}, [873] = {.lex_state = 149}, - [874] = {.lex_state = 149}, - [875] = {.lex_state = 147}, + [874] = {.lex_state = 150}, + [875] = {.lex_state = 149}, [876] = {.lex_state = 150}, - [877] = {.lex_state = 147}, - [878] = {.lex_state = 147}, + [877] = {.lex_state = 150}, + [878] = {.lex_state = 150}, [879] = {.lex_state = 150}, - [880] = {.lex_state = 154}, - [881] = {.lex_state = 154}, - [882] = {.lex_state = 154}, + [880] = {.lex_state = 150}, + [881] = {.lex_state = 149}, + [882] = {.lex_state = 152}, [883] = {.lex_state = 150}, - [884] = {.lex_state = 150}, - [885] = {.lex_state = 155}, - [886] = {.lex_state = 154}, - [887] = {.lex_state = 155}, - [888] = {.lex_state = 155}, - [889] = {.lex_state = 150}, - [890] = {.lex_state = 150}, - [891] = {.lex_state = 155}, - [892] = {.lex_state = 150}, - [893] = {.lex_state = 150}, - [894] = {.lex_state = 156}, - [895] = {.lex_state = 156}, - [896] = {.lex_state = 150}, - [897] = {.lex_state = 150}, - [898] = {.lex_state = 149}, - [899] = {.lex_state = 149}, - [900] = {.lex_state = 150}, - [901] = {.lex_state = 150}, - [902] = {.lex_state = 150}, - [903] = {.lex_state = 150}, - [904] = {.lex_state = 150}, + [884] = {.lex_state = 152}, + [885] = {.lex_state = 164}, + [886] = {.lex_state = 164}, + [887] = {.lex_state = 152}, + [888] = {.lex_state = 164}, + [889] = {.lex_state = 152}, + [890] = {.lex_state = 149}, + [891] = {.lex_state = 152}, + [892] = {.lex_state = 152}, + [893] = {.lex_state = 164}, + [894] = {.lex_state = 149}, + [895] = {.lex_state = 149}, + [896] = {.lex_state = 149}, + [897] = {.lex_state = 149}, + [898] = {.lex_state = 164}, + [899] = {.lex_state = 152}, + [900] = {.lex_state = 164}, + [901] = {.lex_state = 149}, + [902] = {.lex_state = 164}, + [903] = {.lex_state = 152}, + [904] = {.lex_state = 164}, [905] = {.lex_state = 150}, [906] = {.lex_state = 149}, - [907] = {.lex_state = 150}, - [908] = {.lex_state = 150}, + [907] = {.lex_state = 164}, + [908] = {.lex_state = 164}, [909] = {.lex_state = 164}, - [910] = {.lex_state = 149}, - [911] = {.lex_state = 149}, - [912] = {.lex_state = 150}, - [913] = {.lex_state = 150}, - [914] = {.lex_state = 150}, - [915] = {.lex_state = 149}, - [916] = {.lex_state = 150}, - [917] = {.lex_state = 150}, - [918] = {.lex_state = 149}, - [919] = {.lex_state = 149}, - [920] = {.lex_state = 149}, - [921] = {.lex_state = 150}, - [922] = {.lex_state = 150}, - [923] = {.lex_state = 149}, - [924] = {.lex_state = 152}, - [925] = {.lex_state = 152}, - [926] = {.lex_state = 152}, - [927] = {.lex_state = 164}, - [928] = {.lex_state = 164}, - [929] = {.lex_state = 149}, - [930] = {.lex_state = 164}, - [931] = {.lex_state = 149}, - [932] = {.lex_state = 164}, - [933] = {.lex_state = 149}, - [934] = {.lex_state = 164}, - [935] = {.lex_state = 152}, + [910] = {.lex_state = 164}, + [911] = {.lex_state = 164}, + [912] = {.lex_state = 164}, + [913] = {.lex_state = 152}, + [914] = {.lex_state = 152}, + [915] = {.lex_state = 164}, + [916] = {.lex_state = 152}, + [917] = {.lex_state = 164}, + [918] = {.lex_state = 152}, + [919] = {.lex_state = 164}, + [920] = {.lex_state = 164}, + [921] = {.lex_state = 164}, + [922] = {.lex_state = 152}, + [923] = {.lex_state = 164}, + [924] = {.lex_state = 149}, + [925] = {.lex_state = 164}, + [926] = {.lex_state = 164}, + [927] = {.lex_state = 149}, + [928] = {.lex_state = 152}, + [929] = {.lex_state = 164}, + [930] = {.lex_state = 152}, + [931] = {.lex_state = 164}, + [932] = {.lex_state = 150}, + [933] = {.lex_state = 152}, + [934] = {.lex_state = 152}, + [935] = {.lex_state = 164}, [936] = {.lex_state = 164}, - [937] = {.lex_state = 164}, + [937] = {.lex_state = 152}, [938] = {.lex_state = 164}, - [939] = {.lex_state = 149}, - [940] = {.lex_state = 152}, - [941] = {.lex_state = 164}, - [942] = {.lex_state = 149}, + [939] = {.lex_state = 150}, + [940] = {.lex_state = 149}, + [941] = {.lex_state = 149}, + [942] = {.lex_state = 152}, [943] = {.lex_state = 149}, - [944] = {.lex_state = 164}, - [945] = {.lex_state = 152}, - [946] = {.lex_state = 164}, - [947] = {.lex_state = 164}, - [948] = {.lex_state = 164}, - [949] = {.lex_state = 164}, - [950] = {.lex_state = 150}, - [951] = {.lex_state = 152}, - [952] = {.lex_state = 164}, - [953] = {.lex_state = 164}, + [944] = {.lex_state = 149}, + [945] = {.lex_state = 149}, + [946] = {.lex_state = 149}, + [947] = {.lex_state = 152}, + [948] = {.lex_state = 149}, + [949] = {.lex_state = 152}, + [950] = {.lex_state = 149}, + [951] = {.lex_state = 149}, + [952] = {.lex_state = 152}, + [953] = {.lex_state = 149}, [954] = {.lex_state = 149}, - [955] = {.lex_state = 152}, - [956] = {.lex_state = 164}, - [957] = {.lex_state = 164}, + [955] = {.lex_state = 164}, + [956] = {.lex_state = 152}, + [957] = {.lex_state = 152}, [958] = {.lex_state = 152}, - [959] = {.lex_state = 164}, - [960] = {.lex_state = 152}, - [961] = {.lex_state = 150}, - [962] = {.lex_state = 152}, - [963] = {.lex_state = 149}, - [964] = {.lex_state = 152}, - [965] = {.lex_state = 152}, - [966] = {.lex_state = 152}, - [967] = {.lex_state = 164}, - [968] = {.lex_state = 152}, - [969] = {.lex_state = 150}, + [959] = {.lex_state = 152}, + [960] = {.lex_state = 164}, + [961] = {.lex_state = 149}, + [962] = {.lex_state = 164}, + [963] = {.lex_state = 152}, + [964] = {.lex_state = 150}, + [965] = {.lex_state = 149}, + [966] = {.lex_state = 164}, + [967] = {.lex_state = 149}, + [968] = {.lex_state = 149}, + [969] = {.lex_state = 164}, [970] = {.lex_state = 164}, - [971] = {.lex_state = 152}, - [972] = {.lex_state = 164}, - [973] = {.lex_state = 152}, + [971] = {.lex_state = 164}, + [972] = {.lex_state = 149}, + [973] = {.lex_state = 164}, [974] = {.lex_state = 164}, [975] = {.lex_state = 149}, - [976] = {.lex_state = 149}, - [977] = {.lex_state = 164}, - [978] = {.lex_state = 152}, - [979] = {.lex_state = 149}, - [980] = {.lex_state = 149}, - [981] = {.lex_state = 149}, - [982] = {.lex_state = 149}, - [983] = {.lex_state = 149}, - [984] = {.lex_state = 149}, + [976] = {.lex_state = 152}, + [977] = {.lex_state = 149}, + [978] = {.lex_state = 164}, + [979] = {.lex_state = 164}, + [980] = {.lex_state = 152}, + [981] = {.lex_state = 164}, + [982] = {.lex_state = 164}, + [983] = {.lex_state = 164}, + [984] = {.lex_state = 164}, [985] = {.lex_state = 164}, - [986] = {.lex_state = 150}, - [987] = {.lex_state = 152}, + [986] = {.lex_state = 149}, + [987] = {.lex_state = 164}, [988] = {.lex_state = 152}, [989] = {.lex_state = 152}, - [990] = {.lex_state = 164}, - [991] = {.lex_state = 164}, - [992] = {.lex_state = 152}, - [993] = {.lex_state = 152}, - [994] = {.lex_state = 164}, - [995] = {.lex_state = 149}, - [996] = {.lex_state = 152}, - [997] = {.lex_state = 150}, - [998] = {.lex_state = 164}, - [999] = {.lex_state = 152}, + [990] = {.lex_state = 152}, + [991] = {.lex_state = 152}, + [992] = {.lex_state = 164}, + [993] = {.lex_state = 164}, + [994] = {.lex_state = 152}, + [995] = {.lex_state = 164}, + [996] = {.lex_state = 149}, + [997] = {.lex_state = 149}, + [998] = {.lex_state = 149}, + [999] = {.lex_state = 149}, [1000] = {.lex_state = 149}, - [1001] = {.lex_state = 152}, - [1002] = {.lex_state = 152}, + [1001] = {.lex_state = 149}, + [1002] = {.lex_state = 164}, [1003] = {.lex_state = 149}, - [1004] = {.lex_state = 149}, - [1005] = {.lex_state = 149}, - [1006] = {.lex_state = 164}, + [1004] = {.lex_state = 152}, + [1005] = {.lex_state = 164}, + [1006] = {.lex_state = 152}, [1007] = {.lex_state = 149}, [1008] = {.lex_state = 149}, - [1009] = {.lex_state = 164}, + [1009] = {.lex_state = 149}, [1010] = {.lex_state = 164}, - [1011] = {.lex_state = 164}, - [1012] = {.lex_state = 149}, + [1011] = {.lex_state = 149}, + [1012] = {.lex_state = 152}, [1013] = {.lex_state = 149}, - [1014] = {.lex_state = 164}, - [1015] = {.lex_state = 149}, - [1016] = {.lex_state = 152}, - [1017] = {.lex_state = 149}, + [1014] = {.lex_state = 149}, + [1015] = {.lex_state = 164}, + [1016] = {.lex_state = 149}, + [1017] = {.lex_state = 164}, [1018] = {.lex_state = 149}, [1019] = {.lex_state = 149}, - [1020] = {.lex_state = 149}, + [1020] = {.lex_state = 152}, [1021] = {.lex_state = 149}, - [1022] = {.lex_state = 164}, - [1023] = {.lex_state = 152}, - [1024] = {.lex_state = 152}, - [1025] = {.lex_state = 149}, + [1022] = {.lex_state = 149}, + [1023] = {.lex_state = 164}, + [1024] = {.lex_state = 143}, + [1025] = {.lex_state = 152}, [1026] = {.lex_state = 149}, - [1027] = {.lex_state = 149}, + [1027] = {.lex_state = 152}, [1028] = {.lex_state = 149}, [1029] = {.lex_state = 149}, [1030] = {.lex_state = 164}, [1031] = {.lex_state = 152}, - [1032] = {.lex_state = 149}, - [1033] = {.lex_state = 152}, - [1034] = {.lex_state = 149}, - [1035] = {.lex_state = 149}, + [1032] = {.lex_state = 152}, + [1033] = {.lex_state = 164}, + [1034] = {.lex_state = 152}, + [1035] = {.lex_state = 164}, [1036] = {.lex_state = 149}, - [1037] = {.lex_state = 149}, - [1038] = {.lex_state = 152}, - [1039] = {.lex_state = 152}, + [1037] = {.lex_state = 152}, + [1038] = {.lex_state = 149}, + [1039] = {.lex_state = 164}, [1040] = {.lex_state = 152}, - [1041] = {.lex_state = 152}, + [1041] = {.lex_state = 164}, [1042] = {.lex_state = 164}, - [1043] = {.lex_state = 152}, - [1044] = {.lex_state = 152}, + [1043] = {.lex_state = 149}, + [1044] = {.lex_state = 164}, [1045] = {.lex_state = 164}, - [1046] = {.lex_state = 149}, + [1046] = {.lex_state = 164}, [1047] = {.lex_state = 164}, - [1048] = {.lex_state = 164}, - [1049] = {.lex_state = 164}, - [1050] = {.lex_state = 164}, + [1048] = {.lex_state = 152}, + [1049] = {.lex_state = 152}, + [1050] = {.lex_state = 152}, [1051] = {.lex_state = 152}, [1052] = {.lex_state = 164}, - [1053] = {.lex_state = 164}, - [1054] = {.lex_state = 152}, - [1055] = {.lex_state = 149}, + [1053] = {.lex_state = 152}, + [1054] = {.lex_state = 144}, + [1055] = {.lex_state = 152}, [1056] = {.lex_state = 152}, - [1057] = {.lex_state = 164}, - [1058] = {.lex_state = 149}, + [1057] = {.lex_state = 152}, + [1058] = {.lex_state = 152}, [1059] = {.lex_state = 149}, - [1060] = {.lex_state = 149}, - [1061] = {.lex_state = 149}, - [1062] = {.lex_state = 152}, + [1060] = {.lex_state = 152}, + [1061] = {.lex_state = 152}, + [1062] = {.lex_state = 149}, [1063] = {.lex_state = 149}, - [1064] = {.lex_state = 164}, - [1065] = {.lex_state = 164}, - [1066] = {.lex_state = 152}, - [1067] = {.lex_state = 164}, - [1068] = {.lex_state = 164}, - [1069] = {.lex_state = 164}, - [1070] = {.lex_state = 164}, - [1071] = {.lex_state = 164}, + [1064] = {.lex_state = 149}, + [1065] = {.lex_state = 149}, + [1066] = {.lex_state = 149}, + [1067] = {.lex_state = 149}, + [1068] = {.lex_state = 149}, + [1069] = {.lex_state = 149}, + [1070] = {.lex_state = 149}, + [1071] = {.lex_state = 149}, [1072] = {.lex_state = 149}, [1073] = {.lex_state = 149}, - [1074] = {.lex_state = 164}, - [1075] = {.lex_state = 164}, - [1076] = {.lex_state = 164}, - [1077] = {.lex_state = 164}, - [1078] = {.lex_state = 164}, - [1079] = {.lex_state = 152}, + [1074] = {.lex_state = 149}, + [1075] = {.lex_state = 157}, + [1076] = {.lex_state = 149}, + [1077] = {.lex_state = 149}, + [1078] = {.lex_state = 149}, + [1079] = {.lex_state = 149}, [1080] = {.lex_state = 149}, [1081] = {.lex_state = 149}, - [1082] = {.lex_state = 164}, - [1083] = {.lex_state = 164}, - [1084] = {.lex_state = 164}, - [1085] = {.lex_state = 164}, - [1086] = {.lex_state = 152}, - [1087] = {.lex_state = 149}, - [1088] = {.lex_state = 143}, - [1089] = {.lex_state = 164}, - [1090] = {.lex_state = 152}, - [1091] = {.lex_state = 144}, - [1092] = {.lex_state = 152}, - [1093] = {.lex_state = 152}, - [1094] = {.lex_state = 152}, - [1095] = {.lex_state = 152}, - [1096] = {.lex_state = 152}, - [1097] = {.lex_state = 152}, - [1098] = {.lex_state = 149}, - [1099] = {.lex_state = 152}, - [1100] = {.lex_state = 152}, - [1101] = {.lex_state = 152}, + [1082] = {.lex_state = 149}, + [1083] = {.lex_state = 149}, + [1084] = {.lex_state = 149}, + [1085] = {.lex_state = 149}, + [1086] = {.lex_state = 149}, + [1087] = {.lex_state = 164}, + [1088] = {.lex_state = 149}, + [1089] = {.lex_state = 149}, + [1090] = {.lex_state = 164}, + [1091] = {.lex_state = 164}, + [1092] = {.lex_state = 164}, + [1093] = {.lex_state = 149}, + [1094] = {.lex_state = 164}, + [1095] = {.lex_state = 149}, + [1096] = {.lex_state = 158}, + [1097] = {.lex_state = 149}, + [1098] = {.lex_state = 164}, + [1099] = {.lex_state = 164}, + [1100] = {.lex_state = 164}, + [1101] = {.lex_state = 149}, [1102] = {.lex_state = 164}, - [1103] = {.lex_state = 144}, - [1104] = {.lex_state = 152}, - [1105] = {.lex_state = 164}, - [1106] = {.lex_state = 149}, - [1107] = {.lex_state = 164}, - [1108] = {.lex_state = 164}, - [1109] = {.lex_state = 164}, - [1110] = {.lex_state = 164}, - [1111] = {.lex_state = 157}, - [1112] = {.lex_state = 158}, - [1113] = {.lex_state = 164}, - [1114] = {.lex_state = 164}, - [1115] = {.lex_state = 164}, - [1116] = {.lex_state = 149}, - [1117] = {.lex_state = 149}, - [1118] = {.lex_state = 149}, - [1119] = {.lex_state = 149}, - [1120] = {.lex_state = 149}, - [1121] = {.lex_state = 164}, - [1122] = {.lex_state = 149}, - [1123] = {.lex_state = 149}, - [1124] = {.lex_state = 149}, - [1125] = {.lex_state = 149}, - [1126] = {.lex_state = 149}, - [1127] = {.lex_state = 149}, - [1128] = {.lex_state = 149}, - [1129] = {.lex_state = 149}, - [1130] = {.lex_state = 149}, - [1131] = {.lex_state = 149}, - [1132] = {.lex_state = 149}, - [1133] = {.lex_state = 149}, - [1134] = {.lex_state = 149}, - [1135] = {.lex_state = 149}, - [1136] = {.lex_state = 164}, - [1137] = {.lex_state = 164}, - [1138] = {.lex_state = 149}, - [1139] = {.lex_state = 149}, - [1140] = {.lex_state = 149}, - [1141] = {.lex_state = 149}, - [1142] = {.lex_state = 149}, - [1143] = {.lex_state = 149}, - [1144] = {.lex_state = 149}, - [1145] = {.lex_state = 149}, - [1146] = {.lex_state = 149}, - [1147] = {.lex_state = 149}, - [1148] = {.lex_state = 147}, - [1149] = {.lex_state = 147}, - [1150] = {.lex_state = 147}, + [1103] = {.lex_state = 164}, + [1104] = {.lex_state = 164}, + [1105] = {.lex_state = 147}, + [1106] = {.lex_state = 147}, + [1107] = {.lex_state = 147}, + [1108] = {.lex_state = 159}, + [1109] = {.lex_state = 159}, + [1110] = {.lex_state = 159}, + [1111] = {.lex_state = 159}, + [1112] = {.lex_state = 157}, + [1113] = {.lex_state = 159}, + [1114] = {.lex_state = 159}, + [1115] = {.lex_state = 159}, + [1116] = {.lex_state = 159}, + [1117] = {.lex_state = 159}, + [1118] = {.lex_state = 157}, + [1119] = {.lex_state = 159}, + [1120] = {.lex_state = 159}, + [1121] = {.lex_state = 159}, + [1122] = {.lex_state = 157}, + [1123] = {.lex_state = 159}, + [1124] = {.lex_state = 159}, + [1125] = {.lex_state = 159}, + [1126] = {.lex_state = 159}, + [1127] = {.lex_state = 157}, + [1128] = {.lex_state = 159}, + [1129] = {.lex_state = 159}, + [1130] = {.lex_state = 159}, + [1131] = {.lex_state = 159}, + [1132] = {.lex_state = 159}, + [1133] = {.lex_state = 158}, + [1134] = {.lex_state = 159}, + [1135] = {.lex_state = 159}, + [1136] = {.lex_state = 159}, + [1137] = {.lex_state = 159}, + [1138] = {.lex_state = 159}, + [1139] = {.lex_state = 159}, + [1140] = {.lex_state = 159}, + [1141] = {.lex_state = 159}, + [1142] = {.lex_state = 159}, + [1143] = {.lex_state = 159}, + [1144] = {.lex_state = 159}, + [1145] = {.lex_state = 159}, + [1146] = {.lex_state = 159}, + [1147] = {.lex_state = 159}, + [1148] = {.lex_state = 159}, + [1149] = {.lex_state = 159}, + [1150] = {.lex_state = 159}, [1151] = {.lex_state = 159}, [1152] = {.lex_state = 159}, [1153] = {.lex_state = 159}, [1154] = {.lex_state = 159}, [1155] = {.lex_state = 159}, - [1156] = {.lex_state = 159}, - [1157] = {.lex_state = 159}, + [1156] = {.lex_state = 157}, + [1157] = {.lex_state = 157}, [1158] = {.lex_state = 159}, [1159] = {.lex_state = 159}, - [1160] = {.lex_state = 159}, - [1161] = {.lex_state = 157}, - [1162] = {.lex_state = 157}, + [1160] = {.lex_state = 157}, + [1161] = {.lex_state = 159}, + [1162] = {.lex_state = 159}, [1163] = {.lex_state = 157}, - [1164] = {.lex_state = 159}, + [1164] = {.lex_state = 157}, [1165] = {.lex_state = 159}, [1166] = {.lex_state = 159}, - [1167] = {.lex_state = 157}, + [1167] = {.lex_state = 159}, [1168] = {.lex_state = 159}, [1169] = {.lex_state = 159}, [1170] = {.lex_state = 159}, @@ -6632,311 +6609,311 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1173] = {.lex_state = 159}, [1174] = {.lex_state = 159}, [1175] = {.lex_state = 159}, - [1176] = {.lex_state = 159}, + [1176] = {.lex_state = 157}, [1177] = {.lex_state = 159}, [1178] = {.lex_state = 159}, - [1179] = {.lex_state = 159}, - [1180] = {.lex_state = 158}, + [1179] = {.lex_state = 157}, + [1180] = {.lex_state = 157}, [1181] = {.lex_state = 159}, [1182] = {.lex_state = 159}, - [1183] = {.lex_state = 159}, - [1184] = {.lex_state = 159}, + [1183] = {.lex_state = 157}, + [1184] = {.lex_state = 157}, [1185] = {.lex_state = 157}, - [1186] = {.lex_state = 159}, + [1186] = {.lex_state = 157}, [1187] = {.lex_state = 159}, - [1188] = {.lex_state = 159}, - [1189] = {.lex_state = 157}, - [1190] = {.lex_state = 159}, - [1191] = {.lex_state = 159}, - [1192] = {.lex_state = 159}, - [1193] = {.lex_state = 159}, - [1194] = {.lex_state = 159}, - [1195] = {.lex_state = 159}, - [1196] = {.lex_state = 157}, - [1197] = {.lex_state = 159}, - [1198] = {.lex_state = 157}, - [1199] = {.lex_state = 157}, - [1200] = {.lex_state = 159}, + [1188] = {.lex_state = 158}, + [1189] = {.lex_state = 158}, + [1190] = {.lex_state = 158}, + [1191] = {.lex_state = 158}, + [1192] = {.lex_state = 158}, + [1193] = {.lex_state = 158}, + [1194] = {.lex_state = 158}, + [1195] = {.lex_state = 158}, + [1196] = {.lex_state = 158}, + [1197] = {.lex_state = 158}, + [1198] = {.lex_state = 159}, + [1199] = {.lex_state = 158}, + [1200] = {.lex_state = 158}, [1201] = {.lex_state = 159}, - [1202] = {.lex_state = 159}, - [1203] = {.lex_state = 159}, - [1204] = {.lex_state = 159}, - [1205] = {.lex_state = 157}, - [1206] = {.lex_state = 159}, - [1207] = {.lex_state = 159}, - [1208] = {.lex_state = 159}, - [1209] = {.lex_state = 159}, - [1210] = {.lex_state = 159}, - [1211] = {.lex_state = 159}, - [1212] = {.lex_state = 159}, - [1213] = {.lex_state = 159}, - [1214] = {.lex_state = 159}, - [1215] = {.lex_state = 157}, - [1216] = {.lex_state = 159}, - [1217] = {.lex_state = 159}, - [1218] = {.lex_state = 157}, - [1219] = {.lex_state = 159}, + [1202] = {.lex_state = 158}, + [1203] = {.lex_state = 158}, + [1204] = {.lex_state = 147}, + [1205] = {.lex_state = 158}, + [1206] = {.lex_state = 158}, + [1207] = {.lex_state = 158}, + [1208] = {.lex_state = 158}, + [1209] = {.lex_state = 158}, + [1210] = {.lex_state = 158}, + [1211] = {.lex_state = 157}, + [1212] = {.lex_state = 158}, + [1213] = {.lex_state = 147}, + [1214] = {.lex_state = 158}, + [1215] = {.lex_state = 158}, + [1216] = {.lex_state = 147}, + [1217] = {.lex_state = 158}, + [1218] = {.lex_state = 158}, + [1219] = {.lex_state = 158}, [1220] = {.lex_state = 159}, - [1221] = {.lex_state = 157}, + [1221] = {.lex_state = 158}, [1222] = {.lex_state = 159}, - [1223] = {.lex_state = 159}, - [1224] = {.lex_state = 159}, - [1225] = {.lex_state = 157}, - [1226] = {.lex_state = 157}, - [1227] = {.lex_state = 159}, - [1228] = {.lex_state = 159}, - [1229] = {.lex_state = 159}, - [1230] = {.lex_state = 157}, - [1231] = {.lex_state = 159}, - [1232] = {.lex_state = 158}, - [1233] = {.lex_state = 158}, - [1234] = {.lex_state = 158}, - [1235] = {.lex_state = 158}, - [1236] = {.lex_state = 158}, - [1237] = {.lex_state = 158}, - [1238] = {.lex_state = 158}, - [1239] = {.lex_state = 158}, - [1240] = {.lex_state = 158}, - [1241] = {.lex_state = 158}, - [1242] = {.lex_state = 158}, - [1243] = {.lex_state = 158}, - [1244] = {.lex_state = 158}, - [1245] = {.lex_state = 159}, - [1246] = {.lex_state = 158}, - [1247] = {.lex_state = 157}, - [1248] = {.lex_state = 158}, - [1249] = {.lex_state = 158}, - [1250] = {.lex_state = 147}, - [1251] = {.lex_state = 158}, - [1252] = {.lex_state = 159}, - [1253] = {.lex_state = 158}, - [1254] = {.lex_state = 158}, - [1255] = {.lex_state = 158}, - [1256] = {.lex_state = 158}, - [1257] = {.lex_state = 158}, + [1223] = {.lex_state = 158}, + [1224] = {.lex_state = 164}, + [1225] = {.lex_state = 164}, + [1226] = {.lex_state = 147}, + [1227] = {.lex_state = 147}, + [1228] = {.lex_state = 164}, + [1229] = {.lex_state = 158}, + [1230] = {.lex_state = 160}, + [1231] = {.lex_state = 164}, + [1232] = {.lex_state = 160}, + [1233] = {.lex_state = 157}, + [1234] = {.lex_state = 164}, + [1235] = {.lex_state = 160}, + [1236] = {.lex_state = 147}, + [1237] = {.lex_state = 147}, + [1238] = {.lex_state = 160}, + [1239] = {.lex_state = 157}, + [1240] = {.lex_state = 147}, + [1241] = {.lex_state = 157}, + [1242] = {.lex_state = 157}, + [1243] = {.lex_state = 157}, + [1244] = {.lex_state = 164}, + [1245] = {.lex_state = 157}, + [1246] = {.lex_state = 160}, + [1247] = {.lex_state = 160}, + [1248] = {.lex_state = 157}, + [1249] = {.lex_state = 147}, + [1250] = {.lex_state = 161}, + [1251] = {.lex_state = 147}, + [1252] = {.lex_state = 147}, + [1253] = {.lex_state = 147}, + [1254] = {.lex_state = 161}, + [1255] = {.lex_state = 157}, + [1256] = {.lex_state = 147}, + [1257] = {.lex_state = 160}, [1258] = {.lex_state = 147}, - [1259] = {.lex_state = 158}, + [1259] = {.lex_state = 157}, [1260] = {.lex_state = 158}, [1261] = {.lex_state = 147}, [1262] = {.lex_state = 158}, - [1263] = {.lex_state = 159}, - [1264] = {.lex_state = 158}, - [1265] = {.lex_state = 158}, - [1266] = {.lex_state = 158}, - [1267] = {.lex_state = 147}, - [1268] = {.lex_state = 157}, - [1269] = {.lex_state = 157}, - [1270] = {.lex_state = 164}, - [1271] = {.lex_state = 158}, - [1272] = {.lex_state = 160}, - [1273] = {.lex_state = 157}, - [1274] = {.lex_state = 157}, - [1275] = {.lex_state = 160}, + [1263] = {.lex_state = 147}, + [1264] = {.lex_state = 147}, + [1265] = {.lex_state = 147}, + [1266] = {.lex_state = 147}, + [1267] = {.lex_state = 158}, + [1268] = {.lex_state = 147}, + [1269] = {.lex_state = 147}, + [1270] = {.lex_state = 147}, + [1271] = {.lex_state = 147}, + [1272] = {.lex_state = 147}, + [1273] = {.lex_state = 147}, + [1274] = {.lex_state = 147}, + [1275] = {.lex_state = 147}, [1276] = {.lex_state = 147}, - [1277] = {.lex_state = 157}, - [1278] = {.lex_state = 160}, - [1279] = {.lex_state = 160}, - [1280] = {.lex_state = 164}, - [1281] = {.lex_state = 147}, - [1282] = {.lex_state = 157}, - [1283] = {.lex_state = 164}, - [1284] = {.lex_state = 164}, - [1285] = {.lex_state = 164}, - [1286] = {.lex_state = 157}, - [1287] = {.lex_state = 160}, - [1288] = {.lex_state = 164}, - [1289] = {.lex_state = 160}, - [1290] = {.lex_state = 157}, - [1291] = {.lex_state = 147}, - [1292] = {.lex_state = 147}, - [1293] = {.lex_state = 147}, - [1294] = {.lex_state = 147}, - [1295] = {.lex_state = 147}, - [1296] = {.lex_state = 161}, - [1297] = {.lex_state = 147}, - [1298] = {.lex_state = 160}, - [1299] = {.lex_state = 147}, - [1300] = {.lex_state = 161}, - [1301] = {.lex_state = 147}, - [1302] = {.lex_state = 147}, - [1303] = {.lex_state = 147}, - [1304] = {.lex_state = 158}, - [1305] = {.lex_state = 147}, - [1306] = {.lex_state = 158}, + [1277] = {.lex_state = 147}, + [1278] = {.lex_state = 157}, + [1279] = {.lex_state = 147}, + [1280] = {.lex_state = 147}, + [1281] = {.lex_state = 158}, + [1282] = {.lex_state = 161}, + [1283] = {.lex_state = 147}, + [1284] = {.lex_state = 147}, + [1285] = {.lex_state = 147}, + [1286] = {.lex_state = 147}, + [1287] = {.lex_state = 147}, + [1288] = {.lex_state = 147}, + [1289] = {.lex_state = 147}, + [1290] = {.lex_state = 147}, + [1291] = {.lex_state = 160}, + [1292] = {.lex_state = 158}, + [1293] = {.lex_state = 160}, + [1294] = {.lex_state = 158}, + [1295] = {.lex_state = 160}, + [1296] = {.lex_state = 158}, + [1297] = {.lex_state = 158}, + [1298] = {.lex_state = 162}, + [1299] = {.lex_state = 162}, + [1300] = {.lex_state = 162}, + [1301] = {.lex_state = 162}, + [1302] = {.lex_state = 158}, + [1303] = {.lex_state = 162}, + [1304] = {.lex_state = 160}, + [1305] = {.lex_state = 162}, + [1306] = {.lex_state = 161}, [1307] = {.lex_state = 147}, - [1308] = {.lex_state = 158}, - [1309] = {.lex_state = 157}, - [1310] = {.lex_state = 147}, - [1311] = {.lex_state = 147}, - [1312] = {.lex_state = 147}, - [1313] = {.lex_state = 147}, - [1314] = {.lex_state = 147}, - [1315] = {.lex_state = 147}, - [1316] = {.lex_state = 157}, + [1308] = {.lex_state = 161}, + [1309] = {.lex_state = 162}, + [1310] = {.lex_state = 147, .external_lex_state = 1}, + [1311] = {.lex_state = 147, .external_lex_state = 1}, + [1312] = {.lex_state = 158}, + [1313] = {.lex_state = 161}, + [1314] = {.lex_state = 147, .external_lex_state = 1}, + [1315] = {.lex_state = 147, .external_lex_state = 1}, + [1316] = {.lex_state = 147, .external_lex_state = 1}, [1317] = {.lex_state = 147}, [1318] = {.lex_state = 147}, - [1319] = {.lex_state = 147}, + [1319] = {.lex_state = 161}, [1320] = {.lex_state = 147}, - [1321] = {.lex_state = 158}, - [1322] = {.lex_state = 147}, - [1323] = {.lex_state = 147}, - [1324] = {.lex_state = 147}, - [1325] = {.lex_state = 147}, - [1326] = {.lex_state = 147}, - [1327] = {.lex_state = 147}, - [1328] = {.lex_state = 147}, + [1321] = {.lex_state = 161}, + [1322] = {.lex_state = 147, .external_lex_state = 1}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 147, .external_lex_state = 1}, + [1325] = {.lex_state = 147, .external_lex_state = 1}, + [1326] = {.lex_state = 147, .external_lex_state = 1}, + [1327] = {.lex_state = 161}, + [1328] = {.lex_state = 147, .external_lex_state = 1}, [1329] = {.lex_state = 161}, [1330] = {.lex_state = 147}, - [1331] = {.lex_state = 147}, + [1331] = {.lex_state = 147, .external_lex_state = 1}, [1332] = {.lex_state = 147}, [1333] = {.lex_state = 147}, - [1334] = {.lex_state = 147}, + [1334] = {.lex_state = 147, .external_lex_state = 1}, [1335] = {.lex_state = 147}, - [1336] = {.lex_state = 147}, - [1337] = {.lex_state = 147}, - [1338] = {.lex_state = 160}, - [1339] = {.lex_state = 160}, - [1340] = {.lex_state = 158}, - [1341] = {.lex_state = 160}, - [1342] = {.lex_state = 158}, - [1343] = {.lex_state = 158}, - [1344] = {.lex_state = 158}, - [1345] = {.lex_state = 162}, - [1346] = {.lex_state = 160}, - [1347] = {.lex_state = 162}, - [1348] = {.lex_state = 162}, - [1349] = {.lex_state = 162}, - [1350] = {.lex_state = 162}, + [1336] = {.lex_state = 161}, + [1337] = {.lex_state = 147, .external_lex_state = 1}, + [1338] = {.lex_state = 147, .external_lex_state = 1}, + [1339] = {.lex_state = 147}, + [1340] = {.lex_state = 147}, + [1341] = {.lex_state = 147, .external_lex_state = 1}, + [1342] = {.lex_state = 161}, + [1343] = {.lex_state = 161}, + [1344] = {.lex_state = 161}, + [1345] = {.lex_state = 161}, + [1346] = {.lex_state = 147, .external_lex_state = 1}, + [1347] = {.lex_state = 147, .external_lex_state = 1}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 160}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 158}, - [1352] = {.lex_state = 162}, - [1353] = {.lex_state = 147, .external_lex_state = 1}, - [1354] = {.lex_state = 147}, - [1355] = {.lex_state = 161}, - [1356] = {.lex_state = 147, .external_lex_state = 1}, - [1357] = {.lex_state = 147, .external_lex_state = 1}, - [1358] = {.lex_state = 147}, - [1359] = {.lex_state = 161}, - [1360] = {.lex_state = 147, .external_lex_state = 1}, - [1361] = {.lex_state = 147, .external_lex_state = 1}, - [1362] = {.lex_state = 147, .external_lex_state = 1}, - [1363] = {.lex_state = 147}, - [1364] = {.lex_state = 161}, - [1365] = {.lex_state = 147, .external_lex_state = 1}, - [1366] = {.lex_state = 147}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 157}, + [1354] = {.lex_state = 158}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 160}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 147}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 147}, + [1365] = {.lex_state = 147}, + [1366] = {.lex_state = 158}, [1367] = {.lex_state = 147}, - [1368] = {.lex_state = 161}, - [1369] = {.lex_state = 147, .external_lex_state = 1}, - [1370] = {.lex_state = 161}, - [1371] = {.lex_state = 161}, - [1372] = {.lex_state = 161}, - [1373] = {.lex_state = 147, .external_lex_state = 1}, - [1374] = {.lex_state = 147, .external_lex_state = 1}, - [1375] = {.lex_state = 147}, - [1376] = {.lex_state = 161}, - [1377] = {.lex_state = 147, .external_lex_state = 1}, - [1378] = {.lex_state = 147, .external_lex_state = 1}, - [1379] = {.lex_state = 147, .external_lex_state = 1}, - [1380] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 172}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 172}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 161}, + [1376] = {.lex_state = 160}, + [1377] = {.lex_state = 147}, + [1378] = {.lex_state = 161}, + [1379] = {.lex_state = 147}, + [1380] = {.lex_state = 160}, [1381] = {.lex_state = 147}, - [1382] = {.lex_state = 147, .external_lex_state = 1}, - [1383] = {.lex_state = 161}, - [1384] = {.lex_state = 161}, - [1385] = {.lex_state = 147, .external_lex_state = 1}, - [1386] = {.lex_state = 158}, - [1387] = {.lex_state = 147, .external_lex_state = 1}, - [1388] = {.lex_state = 147, .external_lex_state = 1}, - [1389] = {.lex_state = 147}, - [1390] = {.lex_state = 161}, - [1391] = {.lex_state = 147}, - [1392] = {.lex_state = 147}, - [1393] = {.lex_state = 161}, - [1394] = {.lex_state = 162}, - [1395] = {.lex_state = 160}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, + [1382] = {.lex_state = 161}, + [1383] = {.lex_state = 147}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 161}, + [1386] = {.lex_state = 147}, + [1387] = {.lex_state = 161}, + [1388] = {.lex_state = 161}, + [1389] = {.lex_state = 160}, + [1390] = {.lex_state = 147}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 161}, + [1393] = {.lex_state = 158}, + [1394] = {.lex_state = 161}, + [1395] = {.lex_state = 161}, + [1396] = {.lex_state = 147}, + [1397] = {.lex_state = 160}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 160}, - [1400] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 147}, [1401] = {.lex_state = 147}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, + [1402] = {.lex_state = 147}, + [1403] = {.lex_state = 161}, [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 158}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 158}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 158}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 160}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 147}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 147}, - [1412] = {.lex_state = 0}, + [1412] = {.lex_state = 147, .external_lex_state = 1}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 157}, - [1416] = {.lex_state = 147}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 147}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 172}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 160}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 147}, - [1424] = {.lex_state = 147}, - [1425] = {.lex_state = 147}, - [1426] = {.lex_state = 147}, - [1427] = {.lex_state = 161}, + [1418] = {.lex_state = 161}, + [1419] = {.lex_state = 147}, + [1420] = {.lex_state = 147}, + [1421] = {.lex_state = 147}, + [1422] = {.lex_state = 147}, + [1423] = {.lex_state = 158}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 158}, + [1426] = {.lex_state = 161}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 161}, - [1429] = {.lex_state = 147}, - [1430] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 172}, [1431] = {.lex_state = 0}, [1432] = {.lex_state = 147}, - [1433] = {.lex_state = 158}, - [1434] = {.lex_state = 147}, - [1435] = {.lex_state = 161}, - [1436] = {.lex_state = 147}, + [1433] = {.lex_state = 161}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 172}, + [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 161}, - [1440] = {.lex_state = 161}, - [1441] = {.lex_state = 160}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 147}, + [1441] = {.lex_state = 0}, [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 147}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 161}, - [1446] = {.lex_state = 160}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 172}, + [1445] = {.lex_state = 172}, + [1446] = {.lex_state = 172}, [1447] = {.lex_state = 0}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 161}, - [1451] = {.lex_state = 147}, - [1452] = {.lex_state = 161}, - [1453] = {.lex_state = 160}, - [1454] = {.lex_state = 172}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 172}, + [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 158}, - [1457] = {.lex_state = 161}, - [1458] = {.lex_state = 161}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 158}, - [1461] = {.lex_state = 147}, - [1462] = {.lex_state = 147}, - [1463] = {.lex_state = 147, .external_lex_state = 1}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 147}, - [1466] = {.lex_state = 161}, - [1467] = {.lex_state = 147}, + [1460] = {.lex_state = 172}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 172}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 147}, + [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 161}, - [1472] = {.lex_state = 160}, - [1473] = {.lex_state = 161}, - [1474] = {.lex_state = 147}, - [1475] = {.lex_state = 147}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 164}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 172}, + [1477] = {.lex_state = 0}, [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 171}, - [1480] = {.lex_state = 172}, + [1479] = {.lex_state = 161}, + [1480] = {.lex_state = 161}, [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, @@ -6945,95 +6922,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 0}, + [1489] = {.lex_state = 172}, [1490] = {.lex_state = 0}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 172}, - [1494] = {.lex_state = 172}, - [1495] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 172}, [1496] = {.lex_state = 0}, [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 147}, + [1499] = {.lex_state = 161}, [1500] = {.lex_state = 0}, [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 147}, - [1503] = {.lex_state = 161}, - [1504] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 147}, + [1504] = {.lex_state = 147}, [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 172}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 172}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 172}, + [1509] = {.lex_state = 172}, + [1510] = {.lex_state = 0}, [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 0}, + [1514] = {.lex_state = 172}, [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, + [1516] = {.lex_state = 171}, [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 161}, + [1518] = {.lex_state = 171}, + [1519] = {.lex_state = 0}, [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, + [1521] = {.lex_state = 147}, [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 164}, - [1525] = {.lex_state = 0}, + [1524] = {.lex_state = 171}, + [1525] = {.lex_state = 147}, [1526] = {.lex_state = 172}, - [1527] = {.lex_state = 172}, + [1527] = {.lex_state = 0}, [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, + [1529] = {.lex_state = 147}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 147}, - [1536] = {.lex_state = 171}, - [1537] = {.lex_state = 161}, - [1538] = {.lex_state = 147}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, + [1531] = {.lex_state = 172}, + [1532] = {.lex_state = 172}, + [1533] = {.lex_state = 172}, + [1534] = {.lex_state = 172}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 172}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 161}, + [1540] = {.lex_state = 147}, [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 147}, - [1543] = {.lex_state = 161}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 172}, - [1546] = {.lex_state = 171}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, [1547] = {.lex_state = 0}, [1548] = {.lex_state = 172}, [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 147}, - [1552] = {.lex_state = 172}, - [1553] = {.lex_state = 172}, - [1554] = {.lex_state = 158}, - [1555] = {.lex_state = 171}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 172}, + [1555] = {.lex_state = 0}, [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, + [1557] = {.lex_state = 147}, + [1558] = {.lex_state = 171}, [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 172}, + [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 147}, + [1562] = {.lex_state = 0}, [1563] = {.lex_state = 0}, [1564] = {.lex_state = 172}, [1565] = {.lex_state = 172}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 172}, + [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 172}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 161}, + [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, [1574] = {.lex_state = 0}, [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 147}, - [1577] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 172}, [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, [1580] = {.lex_state = 0}, @@ -7042,25 +7019,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 161}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 172}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 147}, + [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 147}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 172}, + [1591] = {.lex_state = 161}, + [1592] = {.lex_state = 172}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, + [1598] = {.lex_state = 147}, + [1599] = {.lex_state = 147}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1604] = {.lex_state = 172}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, @@ -7069,101 +7046,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1610] = {.lex_state = 0}, [1611] = {.lex_state = 0}, [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, + [1613] = {.lex_state = 172}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 172}, - [1621] = {.lex_state = 172}, + [1618] = {.lex_state = 158}, + [1619] = {.lex_state = 161}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 172}, - [1628] = {.lex_state = 0}, + [1627] = {.lex_state = 161}, + [1628] = {.lex_state = 161}, [1629] = {.lex_state = 0}, [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 147}, - [1634] = {.lex_state = 172}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, + [1631] = {.lex_state = 161}, + [1632] = {.lex_state = 161}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 161}, + [1636] = {.lex_state = 161}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 172}, + [1638] = {.lex_state = 147}, + [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, [1641] = {.lex_state = 0}, [1642] = {.lex_state = 161}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, + [1643] = {.lex_state = 171}, + [1644] = {.lex_state = 171}, + [1645] = {.lex_state = 171}, + [1646] = {.lex_state = 161}, + [1647] = {.lex_state = 161}, + [1648] = {.lex_state = 147}, + [1649] = {.lex_state = 161}, + [1650] = {.lex_state = 172}, [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 172}, + [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 172}, - [1657] = {.lex_state = 0}, + [1656] = {.lex_state = 161}, + [1657] = {.lex_state = 172}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, + [1659] = {.lex_state = 161}, [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 147}, - [1662] = {.lex_state = 147}, - [1663] = {.lex_state = 172}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, + [1661] = {.lex_state = 161}, + [1662] = {.lex_state = 161}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 161}, + [1665] = {.lex_state = 161}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 161}, + [1667] = {.lex_state = 171}, [1668] = {.lex_state = 161}, - [1669] = {.lex_state = 0}, + [1669] = {.lex_state = 171}, [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 161}, - [1672] = {.lex_state = 161}, + [1671] = {.lex_state = 147}, + [1672] = {.lex_state = 172}, [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 161}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 171}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 161}, + [1678] = {.lex_state = 147}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 161}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 172}, + [1680] = {.lex_state = 172}, + [1681] = {.lex_state = 161}, + [1682] = {.lex_state = 161}, [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 161}, + [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 161}, + [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 172}, - [1691] = {.lex_state = 161}, - [1692] = {.lex_state = 172}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 171}, + [1692] = {.lex_state = 171}, [1693] = {.lex_state = 0}, [1694] = {.lex_state = 0}, [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, + [1697] = {.lex_state = 161}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 161}, + [1699] = {.lex_state = 171}, [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, + [1702] = {.lex_state = 171}, [1703] = {.lex_state = 0}, [1704] = {.lex_state = 161}, [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 147}, - [1707] = {.lex_state = 172}, + [1706] = {.lex_state = 171}, + [1707] = {.lex_state = 0}, [1708] = {.lex_state = 0}, [1709] = {.lex_state = 0}, [1710] = {.lex_state = 0}, @@ -7171,19 +7148,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 161}, + [1715] = {.lex_state = 171}, [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0}, + [1717] = {.lex_state = 171}, [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 161}, + [1721] = {.lex_state = 0}, [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 172}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, + [1725] = {.lex_state = 171}, + [1726] = {.lex_state = 161}, + [1727] = {.lex_state = 171}, [1728] = {.lex_state = 0}, [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, @@ -7196,14 +7173,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, + [1740] = {.lex_state = 172}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 171}, - [1743] = {.lex_state = 171}, + [1742] = {.lex_state = 172}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 161}, + [1745] = {.lex_state = 0}, [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, + [1747] = {.lex_state = 161}, [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, [1750] = {.lex_state = 0}, @@ -7216,97 +7193,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 171}, - [1761] = {.lex_state = 171}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 161}, [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 161}, - [1764] = {.lex_state = 161}, - [1765] = {.lex_state = 161}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 161}, + [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 171}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 171}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 161}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 171}, - [1773] = {.lex_state = 161}, - [1774] = {.lex_state = 171}, + [1773] = {.lex_state = 171}, + [1774] = {.lex_state = 161}, [1775] = {.lex_state = 161}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 171}, + [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 171}, + [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 171}, + [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 171}, - [1787] = {.lex_state = 171}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 161}, - [1790] = {.lex_state = 147}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 147}, - [1793] = {.lex_state = 172}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 172}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 161}, - [1797] = {.lex_state = 171}, - [1798] = {.lex_state = 171}, - [1799] = {.lex_state = 161}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 161}, - [1802] = {.lex_state = 161}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 161}, - [1805] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 172}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, + [1807] = {.lex_state = 172}, + [1808] = {.lex_state = 172}, + [1809] = {.lex_state = 172}, [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 147}, - [1813] = {.lex_state = 161}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 161}, - [1816] = {.lex_state = 172}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 172}, - [1821] = {.lex_state = 147}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 172}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 172}, + [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 172}, + [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 172}, + [1833] = {.lex_state = 172}, + [1834] = {.lex_state = 172}, + [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, [1839] = {.lex_state = 172}, [1840] = {.lex_state = 0}, [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, + [1842] = {.lex_state = 172}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 161}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 161}, + [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, @@ -7317,112 +7294,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 172}, + [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, + [1867] = {.lex_state = 172}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 172}, + [1869] = {.lex_state = 0}, [1870] = {.lex_state = 172}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1874] = {.lex_state = 161}, [1875] = {.lex_state = 172}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 172}, + [1876] = {.lex_state = 172}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, + [1880] = {.lex_state = 147}, + [1881] = {.lex_state = 147}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 172}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 172}, - [1890] = {.lex_state = 0}, + [1887] = {.lex_state = 161}, + [1888] = {.lex_state = 172}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 147}, [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, + [1894] = {.lex_state = 172}, [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, + [1898] = {.lex_state = 172}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 147}, + [1903] = {.lex_state = 0}, [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 147}, + [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, + [1911] = {.lex_state = 147}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 172}, + [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, [1916] = {.lex_state = 0}, [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 147}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 172}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 172}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 172}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 172}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 172}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 0}, + [1918] = {.lex_state = 172}, + [1919] = {.lex_state = 172}, }; enum { @@ -7538,7 +7468,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1915), + [sym_source_file] = STATE(1908), + [sym__module_statement] = STATE(5), + [sym_target_group] = STATE(5), + [sym_attribute] = STATE(5), + [sym_import] = STATE(5), + [sym_constant] = STATE(5), + [sym_external_type] = STATE(5), + [sym_external_function] = STATE(5), + [sym_function] = STATE(5), + [aux_sym__statement_seq] = STATE(12), + [sym__statement] = STATE(12), + [sym__expression] = STATE(136), + [sym_binary_expression] = STATE(136), + [sym__expression_unit] = STATE(136), + [sym_record] = STATE(126), + [sym_todo] = STATE(136), + [sym_panic] = STATE(136), + [sym_echo] = STATE(136), + [sym_tuple] = STATE(125), + [sym_list] = STATE(136), + [sym__expression_bit_string] = STATE(136), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_let_assert] = STATE(12), + [sym_let] = STATE(12), + [sym_use] = STATE(12), + [sym_assert] = STATE(136), + [sym_boolean_negation] = STATE(136), + [sym_integer_negation] = STATE(136), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), + [sym_type_definition] = STATE(5), + [sym_type_alias] = STATE(5), + [sym_string] = STATE(136), + [sym_integer] = STATE(136), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(5), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_LT_LT] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_fn] = ACTIONS(29), + [anon_sym_external] = ACTIONS(31), + [anon_sym_todo] = ACTIONS(33), + [anon_sym_panic] = ACTIONS(35), + [anon_sym_echo] = ACTIONS(37), + [anon_sym_case] = ACTIONS(39), + [anon_sym_let] = ACTIONS(41), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_use] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [sym_visibility_modifier] = ACTIONS(49), + [sym_opacity_modifier] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_float] = ACTIONS(55), + [sym__hex] = ACTIONS(57), + [sym__decimal] = ACTIONS(59), + [sym__octal] = ACTIONS(57), + [sym__binary] = ACTIONS(57), + [sym__name] = ACTIONS(61), + [sym__upname] = ACTIONS(63), + }, + [2] = { + [sym__expression] = STATE(132), + [sym_binary_expression] = STATE(132), + [sym__expression_unit] = STATE(132), + [sym_record] = STATE(73), + [sym_todo] = STATE(132), + [sym_panic] = STATE(132), + [sym_echo] = STATE(132), + [sym_tuple] = STATE(50), + [sym_list] = STATE(132), + [sym__expression_bit_string] = STATE(132), + [sym_anonymous_function] = STATE(72), + [sym_block] = STATE(23), + [sym_case] = STATE(23), + [sym_assert] = STATE(132), + [sym_boolean_negation] = STATE(132), + [sym_integer_negation] = STATE(132), + [sym_record_update] = STATE(73), + [sym__maybe_tuple_expression] = STATE(1889), + [sym_tuple_access] = STATE(23), + [sym__maybe_record_expression] = STATE(1836), + [sym_field_access] = STATE(23), + [sym__maybe_function_expression] = STATE(1630), + [sym_function_call] = STATE(23), + [sym_string] = STATE(132), + [sym_integer] = STATE(132), + [sym_identifier] = STATE(15), + [sym_constructor_name] = STATE(14), + [sym_remote_constructor_name] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_import] = ACTIONS(67), + [anon_sym_as] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_type] = ACTIONS(67), + [anon_sym_const] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_external] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [sym_visibility_modifier] = ACTIONS(67), + [sym_opacity_modifier] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [3] = { + [sym__expression] = STATE(191), + [sym_binary_expression] = STATE(191), + [sym__expression_unit] = STATE(191), + [sym_record] = STATE(126), + [sym_todo] = STATE(191), + [sym_panic] = STATE(191), + [sym_echo] = STATE(191), + [sym_tuple] = STATE(125), + [sym_list] = STATE(191), + [sym__expression_bit_string] = STATE(191), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_assert] = STATE(191), + [sym_boolean_negation] = STATE(191), + [sym_integer_negation] = STATE(191), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), + [sym_string] = STATE(191), + [sym_integer] = STATE(191), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_import] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_type] = ACTIONS(67), + [anon_sym_const] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_external] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [sym_visibility_modifier] = ACTIONS(67), + [sym_opacity_modifier] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [4] = { + [sym__expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym__expression_unit] = STATE(802), + [sym_record] = STATE(699), + [sym_todo] = STATE(802), + [sym_panic] = STATE(802), + [sym_echo] = STATE(802), + [sym_tuple] = STATE(700), + [sym_list] = STATE(802), + [sym__expression_bit_string] = STATE(802), + [sym_anonymous_function] = STATE(702), + [sym_block] = STATE(651), + [sym_case] = STATE(651), + [sym_assert] = STATE(802), + [sym_boolean_negation] = STATE(802), + [sym_integer_negation] = STATE(802), + [sym_record_update] = STATE(699), + [sym__maybe_tuple_expression] = STATE(1917), + [sym_tuple_access] = STATE(651), + [sym__maybe_record_expression] = STATE(1823), + [sym_field_access] = STATE(651), + [sym__maybe_function_expression] = STATE(1767), + [sym_function_call] = STATE(651), + [sym_string] = STATE(802), + [sym_integer] = STATE(802), + [sym_identifier] = STATE(655), + [sym_constructor_name] = STATE(650), + [sym_remote_constructor_name] = STATE(650), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(73), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(75), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(79), + [anon_sym_panic] = ACTIONS(81), + [anon_sym_echo] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_case] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_float] = ACTIONS(93), + [sym__hex] = ACTIONS(95), + [sym__decimal] = ACTIONS(97), + [sym__octal] = ACTIONS(95), + [sym__binary] = ACTIONS(95), + [sym__name] = ACTIONS(99), + [sym__upname] = ACTIONS(101), + }, + [5] = { [sym__module_statement] = STATE(6), [sym_target_group] = STATE(6), [sym_attribute] = STATE(6), @@ -7547,43 +7812,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_type] = STATE(6), [sym_external_function] = STATE(6), [sym_function] = STATE(6), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(761), - [sym__expression] = STATE(230), - [sym_binary_expression] = STATE(230), - [sym__expression_unit] = STATE(230), - [sym_record] = STATE(137), - [sym_todo] = STATE(230), - [sym_panic] = STATE(230), - [sym_echo] = STATE(230), - [sym_tuple] = STATE(142), - [sym_list] = STATE(230), - [sym__expression_bit_string] = STATE(230), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_let_assert] = STATE(761), - [sym_let] = STATE(761), - [sym_use] = STATE(761), - [sym_assert] = STATE(230), - [sym_boolean_negation] = STATE(230), - [sym_integer_negation] = STATE(230), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), + [aux_sym__statement_seq] = STATE(12), + [sym__statement] = STATE(12), + [sym__expression] = STATE(136), + [sym_binary_expression] = STATE(136), + [sym__expression_unit] = STATE(136), + [sym_record] = STATE(126), + [sym_todo] = STATE(136), + [sym_panic] = STATE(136), + [sym_echo] = STATE(136), + [sym_tuple] = STATE(125), + [sym_list] = STATE(136), + [sym__expression_bit_string] = STATE(136), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_let_assert] = STATE(12), + [sym_let] = STATE(12), + [sym_use] = STATE(12), + [sym_assert] = STATE(136), + [sym_boolean_negation] = STATE(136), + [sym_integer_negation] = STATE(136), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), [sym_type_definition] = STATE(6), [sym_type_alias] = STATE(6), - [sym_string] = STATE(230), - [sym_integer] = STATE(230), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), + [sym_string] = STATE(136), + [sym_integer] = STATE(136), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [aux_sym_source_file_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(7), + [ts_builtin_sym_end] = ACTIONS(103), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -7618,450 +7883,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__name] = ACTIONS(61), [sym__upname] = ACTIONS(63), }, - [2] = { - [sym__expression] = STATE(163), - [sym_binary_expression] = STATE(163), - [sym__expression_unit] = STATE(163), - [sym_record] = STATE(92), - [sym_todo] = STATE(163), - [sym_panic] = STATE(163), - [sym_echo] = STATE(163), - [sym_tuple] = STATE(85), - [sym_list] = STATE(163), - [sym__expression_bit_string] = STATE(163), - [sym_anonymous_function] = STATE(80), - [sym_block] = STATE(66), - [sym_case] = STATE(66), - [sym_assert] = STATE(163), - [sym_boolean_negation] = STATE(163), - [sym_integer_negation] = STATE(163), - [sym_record_update] = STATE(92), - [sym__maybe_tuple_expression] = STATE(1957), - [sym_tuple_access] = STATE(66), - [sym__maybe_record_expression] = STATE(1856), - [sym_field_access] = STATE(66), - [sym__maybe_function_expression] = STATE(1719), - [sym_function_call] = STATE(66), - [sym_string] = STATE(163), - [sym_integer] = STATE(163), - [sym_identifier] = STATE(70), - [sym_constructor_name] = STATE(14), - [sym_remote_constructor_name] = STATE(14), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_as] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_type] = ACTIONS(67), - [anon_sym_const] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_external] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [sym_visibility_modifier] = ACTIONS(67), - [sym_opacity_modifier] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [3] = { - [sym__expression] = STATE(201), - [sym_binary_expression] = STATE(201), - [sym__expression_unit] = STATE(201), - [sym_record] = STATE(137), - [sym_todo] = STATE(201), - [sym_panic] = STATE(201), - [sym_echo] = STATE(201), - [sym_tuple] = STATE(142), - [sym_list] = STATE(201), - [sym__expression_bit_string] = STATE(201), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_assert] = STATE(201), - [sym_boolean_negation] = STATE(201), - [sym_integer_negation] = STATE(201), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), - [sym_string] = STATE(201), - [sym_integer] = STATE(201), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(65), - [anon_sym_import] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_type] = ACTIONS(67), - [anon_sym_const] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(67), - [anon_sym_external] = ACTIONS(67), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(67), - [anon_sym_panic] = ACTIONS(67), - [anon_sym_echo] = ACTIONS(67), - [anon_sym_case] = ACTIONS(67), - [anon_sym_let] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(67), - [anon_sym_use] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(67), - [sym_visibility_modifier] = ACTIONS(67), - [sym_opacity_modifier] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(65), - [sym_float] = ACTIONS(65), - [sym__hex] = ACTIONS(65), - [sym__decimal] = ACTIONS(67), - [sym__octal] = ACTIONS(65), - [sym__binary] = ACTIONS(65), - [sym__name] = ACTIONS(67), - [sym__upname] = ACTIONS(65), - }, - [4] = { - [sym__expression] = STATE(861), - [sym_binary_expression] = STATE(861), - [sym__expression_unit] = STATE(861), - [sym_record] = STATE(740), - [sym_todo] = STATE(861), - [sym_panic] = STATE(861), - [sym_echo] = STATE(861), - [sym_tuple] = STATE(743), - [sym_list] = STATE(861), - [sym__expression_bit_string] = STATE(861), - [sym_anonymous_function] = STATE(744), - [sym_block] = STATE(705), - [sym_case] = STATE(705), - [sym_assert] = STATE(861), - [sym_boolean_negation] = STATE(861), - [sym_integer_negation] = STATE(861), - [sym_record_update] = STATE(740), - [sym__maybe_tuple_expression] = STATE(1819), - [sym_tuple_access] = STATE(705), - [sym__maybe_record_expression] = STATE(1842), - [sym_field_access] = STATE(705), - [sym__maybe_function_expression] = STATE(1808), - [sym_function_call] = STATE(705), - [sym_string] = STATE(861), - [sym_integer] = STATE(861), - [sym_identifier] = STATE(696), - [sym_constructor_name] = STATE(686), - [sym_remote_constructor_name] = STATE(686), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(69), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_POUND] = ACTIONS(71), - [anon_sym_LBRACK] = ACTIONS(73), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(75), - [anon_sym_GT_GT] = ACTIONS(65), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(67), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_DOT] = ACTIONS(65), - [anon_sym_LT_EQ_DOT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(67), - [anon_sym_GT_EQ] = ACTIONS(67), - [anon_sym_GT_DOT] = ACTIONS(65), - [anon_sym_GT_EQ_DOT] = ACTIONS(65), - [anon_sym_PIPE_GT] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_PLUS_DOT] = ACTIONS(65), - [anon_sym_DASH_DOT] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [anon_sym_STAR_DOT] = ACTIONS(65), - [anon_sym_SLASH_DOT] = ACTIONS(65), - [anon_sym_PERCENT] = ACTIONS(65), - [anon_sym_LT_GT] = ACTIONS(65), - [anon_sym_todo] = ACTIONS(79), - [anon_sym_panic] = ACTIONS(81), - [anon_sym_echo] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_case] = ACTIONS(85), - [anon_sym_assert] = ACTIONS(87), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_float] = ACTIONS(93), - [sym__hex] = ACTIONS(95), - [sym__decimal] = ACTIONS(97), - [sym__octal] = ACTIONS(95), - [sym__binary] = ACTIONS(95), - [sym__name] = ACTIONS(99), - [sym__upname] = ACTIONS(101), - }, - [5] = { - [sym__module_statement] = STATE(5), - [sym_target_group] = STATE(5), - [sym_attribute] = STATE(5), - [sym_import] = STATE(5), - [sym_constant] = STATE(5), - [sym_external_type] = STATE(5), - [sym_external_function] = STATE(5), - [sym_function] = STATE(5), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(761), - [sym__expression] = STATE(230), - [sym_binary_expression] = STATE(230), - [sym__expression_unit] = STATE(230), - [sym_record] = STATE(137), - [sym_todo] = STATE(230), - [sym_panic] = STATE(230), - [sym_echo] = STATE(230), - [sym_tuple] = STATE(142), - [sym_list] = STATE(230), - [sym__expression_bit_string] = STATE(230), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_let_assert] = STATE(761), - [sym_let] = STATE(761), - [sym_use] = STATE(761), - [sym_assert] = STATE(230), - [sym_boolean_negation] = STATE(230), - [sym_integer_negation] = STATE(230), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), - [sym_type_definition] = STATE(5), - [sym_type_alias] = STATE(5), - [sym_string] = STATE(230), - [sym_integer] = STATE(230), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), - [aux_sym_source_file_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(108), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_import] = ACTIONS(114), - [anon_sym_type] = ACTIONS(117), - [anon_sym_const] = ACTIONS(120), - [anon_sym_POUND] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_LT_LT] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_fn] = ACTIONS(135), - [anon_sym_external] = ACTIONS(138), - [anon_sym_todo] = ACTIONS(141), - [anon_sym_panic] = ACTIONS(144), - [anon_sym_echo] = ACTIONS(147), - [anon_sym_case] = ACTIONS(150), - [anon_sym_let] = ACTIONS(153), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_use] = ACTIONS(159), - [anon_sym_BANG] = ACTIONS(162), - [sym_visibility_modifier] = ACTIONS(165), - [sym_opacity_modifier] = ACTIONS(168), - [anon_sym_DQUOTE] = ACTIONS(171), - [sym_float] = ACTIONS(174), - [sym__hex] = ACTIONS(177), - [sym__decimal] = ACTIONS(180), - [sym__octal] = ACTIONS(177), - [sym__binary] = ACTIONS(177), - [sym__name] = ACTIONS(183), - [sym__upname] = ACTIONS(186), - }, [6] = { - [sym__module_statement] = STATE(5), - [sym_target_group] = STATE(5), - [sym_attribute] = STATE(5), - [sym_import] = STATE(5), - [sym_constant] = STATE(5), - [sym_external_type] = STATE(5), - [sym_external_function] = STATE(5), - [sym_function] = STATE(5), - [aux_sym__statement_seq] = STATE(13), - [sym__statement] = STATE(761), - [sym__expression] = STATE(230), - [sym_binary_expression] = STATE(230), - [sym__expression_unit] = STATE(230), - [sym_record] = STATE(137), - [sym_todo] = STATE(230), - [sym_panic] = STATE(230), - [sym_echo] = STATE(230), - [sym_tuple] = STATE(142), - [sym_list] = STATE(230), - [sym__expression_bit_string] = STATE(230), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_let_assert] = STATE(761), - [sym_let] = STATE(761), - [sym_use] = STATE(761), - [sym_assert] = STATE(230), - [sym_boolean_negation] = STATE(230), - [sym_integer_negation] = STATE(230), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), - [sym_type_definition] = STATE(5), - [sym_type_alias] = STATE(5), - [sym_string] = STATE(230), - [sym_integer] = STATE(230), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), - [aux_sym_source_file_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(189), + [sym__module_statement] = STATE(6), + [sym_target_group] = STATE(6), + [sym_attribute] = STATE(6), + [sym_import] = STATE(6), + [sym_constant] = STATE(6), + [sym_external_type] = STATE(6), + [sym_external_function] = STATE(6), + [sym_function] = STATE(6), + [aux_sym__statement_seq] = STATE(12), + [sym__statement] = STATE(12), + [sym__expression] = STATE(136), + [sym_binary_expression] = STATE(136), + [sym__expression_unit] = STATE(136), + [sym_record] = STATE(126), + [sym_todo] = STATE(136), + [sym_panic] = STATE(136), + [sym_echo] = STATE(136), + [sym_tuple] = STATE(125), + [sym_list] = STATE(136), + [sym__expression_bit_string] = STATE(136), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_let_assert] = STATE(12), + [sym_let] = STATE(12), + [sym_use] = STATE(12), + [sym_assert] = STATE(136), + [sym_boolean_negation] = STATE(136), + [sym_integer_negation] = STATE(136), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), + [sym_type_definition] = STATE(6), + [sym_type_alias] = STATE(6), + [sym_string] = STATE(136), + [sym_integer] = STATE(136), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(105), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_LT_LT] = ACTIONS(25), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_external] = ACTIONS(31), - [anon_sym_todo] = ACTIONS(33), - [anon_sym_panic] = ACTIONS(35), - [anon_sym_echo] = ACTIONS(37), - [anon_sym_case] = ACTIONS(39), - [anon_sym_let] = ACTIONS(41), - [anon_sym_assert] = ACTIONS(43), - [anon_sym_use] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [sym_visibility_modifier] = ACTIONS(49), - [sym_opacity_modifier] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_float] = ACTIONS(55), - [sym__hex] = ACTIONS(57), - [sym__decimal] = ACTIONS(59), - [sym__octal] = ACTIONS(57), - [sym__binary] = ACTIONS(57), - [sym__name] = ACTIONS(61), - [sym__upname] = ACTIONS(63), + [anon_sym_if] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(110), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_import] = ACTIONS(116), + [anon_sym_type] = ACTIONS(119), + [anon_sym_const] = ACTIONS(122), + [anon_sym_POUND] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_LT_LT] = ACTIONS(131), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_fn] = ACTIONS(137), + [anon_sym_external] = ACTIONS(140), + [anon_sym_todo] = ACTIONS(143), + [anon_sym_panic] = ACTIONS(146), + [anon_sym_echo] = ACTIONS(149), + [anon_sym_case] = ACTIONS(152), + [anon_sym_let] = ACTIONS(155), + [anon_sym_assert] = ACTIONS(158), + [anon_sym_use] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(164), + [sym_visibility_modifier] = ACTIONS(167), + [sym_opacity_modifier] = ACTIONS(170), + [anon_sym_DQUOTE] = ACTIONS(173), + [sym_float] = ACTIONS(176), + [sym__hex] = ACTIONS(179), + [sym__decimal] = ACTIONS(182), + [sym__octal] = ACTIONS(179), + [sym__binary] = ACTIONS(179), + [sym__name] = ACTIONS(185), + [sym__upname] = ACTIONS(188), }, [7] = { - [sym__expression] = STATE(525), - [sym_binary_expression] = STATE(525), - [sym__expression_unit] = STATE(525), - [sym_record] = STATE(507), - [sym_todo] = STATE(525), - [sym_panic] = STATE(525), - [sym_echo] = STATE(525), - [sym_tuple] = STATE(510), - [sym_list] = STATE(525), - [sym__expression_bit_string] = STATE(525), - [sym_anonymous_function] = STATE(511), - [sym_block] = STATE(498), - [sym_case] = STATE(498), - [sym_assert] = STATE(525), - [sym_boolean_negation] = STATE(525), - [sym_integer_negation] = STATE(525), - [sym_record_update] = STATE(507), - [sym__maybe_tuple_expression] = STATE(1936), - [sym_tuple_access] = STATE(498), - [sym__maybe_record_expression] = STATE(1868), - [sym_field_access] = STATE(498), - [sym__maybe_function_expression] = STATE(1686), - [sym_function_call] = STATE(498), - [sym_string] = STATE(525), - [sym_integer] = STATE(525), - [sym_identifier] = STATE(497), - [sym_constructor_name] = STATE(315), - [sym_remote_constructor_name] = STATE(315), + [sym__expression] = STATE(514), + [sym_binary_expression] = STATE(514), + [sym__expression_unit] = STATE(514), + [sym_record] = STATE(477), + [sym_todo] = STATE(514), + [sym_panic] = STATE(514), + [sym_echo] = STATE(514), + [sym_tuple] = STATE(476), + [sym_list] = STATE(514), + [sym__expression_bit_string] = STATE(514), + [sym_anonymous_function] = STATE(475), + [sym_block] = STATE(427), + [sym_case] = STATE(427), + [sym_assert] = STATE(514), + [sym_boolean_negation] = STATE(514), + [sym_integer_negation] = STATE(514), + [sym_record_update] = STATE(477), + [sym__maybe_tuple_expression] = STATE(1859), + [sym_tuple_access] = STATE(427), + [sym__maybe_record_expression] = STATE(1847), + [sym_field_access] = STATE(427), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(427), + [sym_string] = STATE(514), + [sym_integer] = STATE(514), + [sym_identifier] = STATE(428), + [sym_constructor_name] = STATE(244), + [sym_remote_constructor_name] = STATE(244), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -8113,34 +8043,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(65), }, [8] = { - [sym__expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym__expression_unit] = STATE(585), - [sym_record] = STATE(272), - [sym_todo] = STATE(585), - [sym_panic] = STATE(585), - [sym_echo] = STATE(585), - [sym_tuple] = STATE(273), - [sym_list] = STATE(585), - [sym__expression_bit_string] = STATE(585), - [sym_anonymous_function] = STATE(274), - [sym_block] = STATE(266), - [sym_case] = STATE(266), - [sym_assert] = STATE(585), - [sym_boolean_negation] = STATE(585), - [sym_integer_negation] = STATE(585), - [sym_record_update] = STATE(272), - [sym__maybe_tuple_expression] = STATE(1830), - [sym_tuple_access] = STATE(266), - [sym__maybe_record_expression] = STATE(1817), - [sym_field_access] = STATE(266), - [sym__maybe_function_expression] = STATE(1805), - [sym_function_call] = STATE(266), - [sym_string] = STATE(585), - [sym_integer] = STATE(585), - [sym_identifier] = STATE(263), - [sym_constructor_name] = STATE(240), - [sym_remote_constructor_name] = STATE(240), + [sym__expression] = STATE(547), + [sym_binary_expression] = STATE(547), + [sym__expression_unit] = STATE(547), + [sym_record] = STATE(232), + [sym_todo] = STATE(547), + [sym_panic] = STATE(547), + [sym_echo] = STATE(547), + [sym_tuple] = STATE(233), + [sym_list] = STATE(547), + [sym__expression_bit_string] = STATE(547), + [sym_anonymous_function] = STATE(234), + [sym_block] = STATE(228), + [sym_case] = STATE(228), + [sym_assert] = STATE(547), + [sym_boolean_negation] = STATE(547), + [sym_integer_negation] = STATE(547), + [sym_record_update] = STATE(232), + [sym__maybe_tuple_expression] = STATE(1866), + [sym_tuple_access] = STATE(228), + [sym__maybe_record_expression] = STATE(1781), + [sym_field_access] = STATE(228), + [sym__maybe_function_expression] = STATE(1676), + [sym_function_call] = STATE(228), + [sym_string] = STATE(547), + [sym_integer] = STATE(547), + [sym_identifier] = STATE(203), + [sym_constructor_name] = STATE(198), + [sym_remote_constructor_name] = STATE(198), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -8191,34 +8121,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(65), }, [9] = { - [sym__expression] = STATE(668), - [sym_binary_expression] = STATE(668), - [sym__expression_unit] = STATE(668), - [sym_record] = STATE(620), - [sym_todo] = STATE(668), - [sym_panic] = STATE(668), - [sym_echo] = STATE(668), - [sym_tuple] = STATE(629), - [sym_list] = STATE(668), - [sym__expression_bit_string] = STATE(668), - [sym_anonymous_function] = STATE(628), - [sym_block] = STATE(598), - [sym_case] = STATE(598), - [sym_assert] = STATE(668), - [sym_boolean_negation] = STATE(668), - [sym_integer_negation] = STATE(668), - [sym_record_update] = STATE(620), - [sym__maybe_tuple_expression] = STATE(1886), - [sym_tuple_access] = STATE(598), - [sym__maybe_record_expression] = STATE(1880), - [sym_field_access] = STATE(598), - [sym__maybe_function_expression] = STATE(1713), - [sym_function_call] = STATE(598), - [sym_string] = STATE(668), - [sym_integer] = STATE(668), - [sym_identifier] = STATE(615), - [sym_constructor_name] = STATE(597), - [sym_remote_constructor_name] = STATE(597), + [sym__expression] = STATE(609), + [sym_binary_expression] = STATE(609), + [sym__expression_unit] = STATE(609), + [sym_record] = STATE(591), + [sym_todo] = STATE(609), + [sym_panic] = STATE(609), + [sym_echo] = STATE(609), + [sym_tuple] = STATE(588), + [sym_list] = STATE(609), + [sym__expression_bit_string] = STATE(609), + [sym_anonymous_function] = STATE(592), + [sym_block] = STATE(564), + [sym_case] = STATE(564), + [sym_assert] = STATE(609), + [sym_boolean_negation] = STATE(609), + [sym_integer_negation] = STATE(609), + [sym_record_update] = STATE(591), + [sym__maybe_tuple_expression] = STATE(1819), + [sym_tuple_access] = STATE(564), + [sym__maybe_record_expression] = STATE(1858), + [sym_field_access] = STATE(564), + [sym__maybe_function_expression] = STATE(1695), + [sym_function_call] = STATE(564), + [sym_string] = STATE(609), + [sym_integer] = STATE(609), + [sym_identifier] = STATE(566), + [sym_constructor_name] = STATE(559), + [sym_remote_constructor_name] = STATE(559), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -8268,34 +8198,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(65), }, [10] = { - [sym__expression] = STATE(1004), - [sym_binary_expression] = STATE(1004), - [sym__expression_unit] = STATE(1004), - [sym_record] = STATE(740), - [sym_todo] = STATE(1004), - [sym_panic] = STATE(1004), - [sym_echo] = STATE(1004), - [sym_tuple] = STATE(743), - [sym_list] = STATE(1004), - [sym__expression_bit_string] = STATE(1004), - [sym_anonymous_function] = STATE(744), - [sym_block] = STATE(705), - [sym_case] = STATE(705), - [sym_assert] = STATE(1004), - [sym_boolean_negation] = STATE(1004), - [sym_integer_negation] = STATE(1004), - [sym_record_update] = STATE(740), - [sym__maybe_tuple_expression] = STATE(1819), - [sym_tuple_access] = STATE(705), - [sym__maybe_record_expression] = STATE(1842), - [sym_field_access] = STATE(705), - [sym__maybe_function_expression] = STATE(1808), - [sym_function_call] = STATE(705), - [sym_string] = STATE(1004), - [sym_integer] = STATE(1004), - [sym_identifier] = STATE(696), - [sym_constructor_name] = STATE(686), - [sym_remote_constructor_name] = STATE(686), + [sym__expression] = STATE(927), + [sym_binary_expression] = STATE(927), + [sym__expression_unit] = STATE(927), + [sym_record] = STATE(699), + [sym_todo] = STATE(927), + [sym_panic] = STATE(927), + [sym_echo] = STATE(927), + [sym_tuple] = STATE(700), + [sym_list] = STATE(927), + [sym__expression_bit_string] = STATE(927), + [sym_anonymous_function] = STATE(702), + [sym_block] = STATE(651), + [sym_case] = STATE(651), + [sym_assert] = STATE(927), + [sym_boolean_negation] = STATE(927), + [sym_integer_negation] = STATE(927), + [sym_record_update] = STATE(699), + [sym__maybe_tuple_expression] = STATE(1917), + [sym_tuple_access] = STATE(651), + [sym__maybe_record_expression] = STATE(1823), + [sym_field_access] = STATE(651), + [sym__maybe_function_expression] = STATE(1767), + [sym_function_call] = STATE(651), + [sym_string] = STATE(927), + [sym_integer] = STATE(927), + [sym_identifier] = STATE(655), + [sym_constructor_name] = STATE(650), + [sym_remote_constructor_name] = STATE(650), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -8344,34 +8274,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(101), }, [11] = { - [sym__expression] = STATE(1052), - [sym_binary_expression] = STATE(1052), - [sym__expression_unit] = STATE(1052), - [sym_record] = STATE(967), - [sym_todo] = STATE(1052), - [sym_panic] = STATE(1052), - [sym_echo] = STATE(1052), - [sym_tuple] = STATE(1006), - [sym_list] = STATE(1052), - [sym__expression_bit_string] = STATE(1052), - [sym_anonymous_function] = STATE(998), - [sym_block] = STATE(938), - [sym_case] = STATE(938), - [sym_assert] = STATE(1052), - [sym_boolean_negation] = STATE(1052), - [sym_integer_negation] = STATE(1052), - [sym_record_update] = STATE(967), - [sym__maybe_tuple_expression] = STATE(1836), - [sym_tuple_access] = STATE(938), - [sym__maybe_record_expression] = STATE(1892), - [sym_field_access] = STATE(938), - [sym__maybe_function_expression] = STATE(1755), - [sym_function_call] = STATE(938), - [sym_string] = STATE(1052), - [sym_integer] = STATE(1052), - [sym_identifier] = STATE(937), - [sym_constructor_name] = STATE(909), - [sym_remote_constructor_name] = STATE(909), + [sym__expression] = STATE(1046), + [sym_binary_expression] = STATE(1046), + [sym__expression_unit] = STATE(1046), + [sym_record] = STATE(938), + [sym_todo] = STATE(1046), + [sym_panic] = STATE(1046), + [sym_echo] = STATE(1046), + [sym_tuple] = STATE(935), + [sym_list] = STATE(1046), + [sym__expression_bit_string] = STATE(1046), + [sym_anonymous_function] = STATE(931), + [sym_block] = STATE(908), + [sym_case] = STATE(908), + [sym_assert] = STATE(1046), + [sym_boolean_negation] = STATE(1046), + [sym_integer_negation] = STATE(1046), + [sym_record_update] = STATE(938), + [sym__maybe_tuple_expression] = STATE(1790), + [sym_tuple_access] = STATE(908), + [sym__maybe_record_expression] = STATE(1869), + [sym_field_access] = STATE(908), + [sym__maybe_function_expression] = STATE(1738), + [sym_function_call] = STATE(908), + [sym_string] = STATE(1046), + [sym_integer] = STATE(1046), + [sym_identifier] = STATE(910), + [sym_constructor_name] = STATE(853), + [sym_remote_constructor_name] = STATE(853), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), @@ -8420,39 +8350,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(251), }, [12] = { - [aux_sym__statement_seq] = STATE(12), - [sym__statement] = STATE(761), - [sym__expression] = STATE(230), - [sym_binary_expression] = STATE(230), - [sym__expression_unit] = STATE(230), - [sym_record] = STATE(137), - [sym_todo] = STATE(230), - [sym_panic] = STATE(230), - [sym_echo] = STATE(230), - [sym_tuple] = STATE(142), - [sym_list] = STATE(230), - [sym__expression_bit_string] = STATE(230), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_let_assert] = STATE(761), - [sym_let] = STATE(761), - [sym_use] = STATE(761), - [sym_assert] = STATE(230), - [sym_boolean_negation] = STATE(230), - [sym_integer_negation] = STATE(230), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), - [sym_string] = STATE(230), - [sym_integer] = STATE(230), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), + [aux_sym__statement_seq] = STATE(13), + [sym__statement] = STATE(13), + [sym__expression] = STATE(136), + [sym_binary_expression] = STATE(136), + [sym__expression_unit] = STATE(136), + [sym_record] = STATE(126), + [sym_todo] = STATE(136), + [sym_panic] = STATE(136), + [sym_echo] = STATE(136), + [sym_tuple] = STATE(125), + [sym_list] = STATE(136), + [sym__expression_bit_string] = STATE(136), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_let_assert] = STATE(13), + [sym_let] = STATE(13), + [sym_use] = STATE(13), + [sym_assert] = STATE(136), + [sym_boolean_negation] = STATE(136), + [sym_integer_negation] = STATE(136), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), + [sym_string] = STATE(136), + [sym_integer] = STATE(136), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [ts_builtin_sym_end] = ACTIONS(253), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -8489,39 +8419,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(314), }, [13] = { - [aux_sym__statement_seq] = STATE(12), - [sym__statement] = STATE(761), - [sym__expression] = STATE(230), - [sym_binary_expression] = STATE(230), - [sym__expression_unit] = STATE(230), - [sym_record] = STATE(137), - [sym_todo] = STATE(230), - [sym_panic] = STATE(230), - [sym_echo] = STATE(230), - [sym_tuple] = STATE(142), - [sym_list] = STATE(230), - [sym__expression_bit_string] = STATE(230), - [sym_anonymous_function] = STATE(143), - [sym_block] = STATE(114), - [sym_case] = STATE(114), - [sym_let_assert] = STATE(761), - [sym_let] = STATE(761), - [sym_use] = STATE(761), - [sym_assert] = STATE(230), - [sym_boolean_negation] = STATE(230), - [sym_integer_negation] = STATE(230), - [sym_record_update] = STATE(137), - [sym__maybe_tuple_expression] = STATE(1913), - [sym_tuple_access] = STATE(114), - [sym__maybe_record_expression] = STATE(1902), - [sym_field_access] = STATE(114), - [sym__maybe_function_expression] = STATE(1666), - [sym_function_call] = STATE(114), - [sym_string] = STATE(230), - [sym_integer] = STATE(230), - [sym_identifier] = STATE(109), - [sym_constructor_name] = STATE(44), - [sym_remote_constructor_name] = STATE(44), + [aux_sym__statement_seq] = STATE(13), + [sym__statement] = STATE(13), + [sym__expression] = STATE(136), + [sym_binary_expression] = STATE(136), + [sym__expression_unit] = STATE(136), + [sym_record] = STATE(126), + [sym_todo] = STATE(136), + [sym_panic] = STATE(136), + [sym_echo] = STATE(136), + [sym_tuple] = STATE(125), + [sym_list] = STATE(136), + [sym__expression_bit_string] = STATE(136), + [sym_anonymous_function] = STATE(124), + [sym_block] = STATE(62), + [sym_case] = STATE(62), + [sym_let_assert] = STATE(13), + [sym_let] = STATE(13), + [sym_use] = STATE(13), + [sym_assert] = STATE(136), + [sym_boolean_negation] = STATE(136), + [sym_integer_negation] = STATE(136), + [sym_record_update] = STATE(126), + [sym__maybe_tuple_expression] = STATE(1907), + [sym_tuple_access] = STATE(62), + [sym__maybe_record_expression] = STATE(1906), + [sym_field_access] = STATE(62), + [sym__maybe_function_expression] = STATE(1639), + [sym_function_call] = STATE(62), + [sym_string] = STATE(136), + [sym_integer] = STATE(136), + [sym_identifier] = STATE(57), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [ts_builtin_sym_end] = ACTIONS(317), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -8565,7 +8495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(385), 1, anon_sym_LPAREN, - STATE(90), 1, + STATE(63), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -8627,12 +8557,44 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [73] = 4, + [73] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, + ACTIONS(387), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, ACTIONS(389), 27, anon_sym_if, anon_sym_import, @@ -8661,7 +8623,41 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(387), 29, + [145] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(399), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(397), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8691,88 +8687,87 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [141] = 35, + [213] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(393), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(395), 1, + ACTIONS(401), 1, + anon_sym_LBRACE, + ACTIONS(404), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(407), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(410), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(413), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(416), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(419), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(422), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(425), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(428), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(431), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(434), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(437), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(440), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(443), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(446), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(452), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(455), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(458), 1, sym__upname, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(449), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8786,88 +8781,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [271] = 35, + [341] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(463), 1, + anon_sym_RBRACE, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(433), 1, - anon_sym_RBRACE, - STATE(19), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8881,88 +8875,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [401] = 35, + [469] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(435), 1, + ACTIONS(503), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(29), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8976,88 +8969,151 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [531] = 35, + [597] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(507), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(505), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [665] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(437), 1, + ACTIONS(509), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(18), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9071,88 +9127,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [661] = 35, + [793] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(253), 1, - anon_sym_RBRACE, - ACTIONS(439), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(445), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(451), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(454), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(457), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(460), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(466), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(469), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(472), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(475), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(478), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(481), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(490), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(493), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(496), 1, + ACTIONS(501), 1, sym__upname, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(511), 1, + anon_sym_RBRACE, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(487), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9166,203 +9221,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [791] = 35, + [921] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(387), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(499), 1, - anon_sym_RBRACE, - STATE(22), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [921] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + sym__upname, + ACTIONS(389), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(501), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1051] = 4, + [993] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(505), 27, + ACTIONS(518), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -9390,7 +9321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(503), 29, + ACTIONS(516), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9420,88 +9351,181 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1119] = 35, + [1061] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(507), 1, + ACTIONS(520), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, aux_sym__statement_seq, - STATE(263), 1, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(544), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1189] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(483), 1, + anon_sym_let, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(487), 1, + anon_sym_use, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(493), 1, + sym_float, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(522), 1, + anon_sym_RBRACE, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9515,13 +9539,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1249] = 4, + [1317] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 27, + ACTIONS(526), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -9549,7 +9573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(509), 29, + ACTIONS(524), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9579,88 +9603,87 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1317] = 35, + [1385] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(513), 1, + ACTIONS(528), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(44), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9674,88 +9697,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1447] = 35, + [1513] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(515), 1, + ACTIONS(530), 1, anon_sym_RBRACE, - STATE(42), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9769,183 +9791,215 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1577] = 35, + [1641] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(534), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(532), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(517), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + [1709] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(538), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(536), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [1707] = 35, + sym__upname, + [1777] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(519), 1, + ACTIONS(540), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(22), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9959,13 +10013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1837] = 4, + [1905] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 27, + ACTIONS(544), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -9993,7 +10047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(521), 29, + ACTIONS(542), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -10023,13 +10077,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1905] = 4, + [1973] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 27, + ACTIONS(548), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -10057,7 +10111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(525), 29, + ACTIONS(546), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -10087,183 +10141,151 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1973] = 35, + [2041] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(552), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(529), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2103] = 35, + ACTIONS(550), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [2109] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(531), 1, + ACTIONS(554), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10277,183 +10299,281 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2233] = 35, + [2237] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(558), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(556), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [2305] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(562), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(560), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(533), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + [2373] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(564), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(383), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(381), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [2363] = 35, + sym__upname, + [2445] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(535), 1, + ACTIONS(566), 1, anon_sym_RBRACE, - STATE(69), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(43), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10467,88 +10587,215 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2493] = 35, + [2573] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(570), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(568), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [2641] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(572), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [2709] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(483), 1, + anon_sym_let, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(487), 1, + anon_sym_use, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(537), 1, + ACTIONS(576), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10562,88 +10809,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2623] = 35, + [2837] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(539), 1, + ACTIONS(578), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(17), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10657,88 +10903,87 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2753] = 35, + [2965] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(413), 1, + ACTIONS(483), 1, anon_sym_let, - ACTIONS(415), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(417), 1, + ACTIONS(487), 1, anon_sym_use, - ACTIONS(419), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, + ACTIONS(493), 1, sym_float, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(541), 1, + ACTIONS(580), 1, anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, + STATE(36), 5, + aux_sym__statement_seq, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(544), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10752,108 +10997,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2883] = 35, + [3093] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(584), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(543), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(582), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3013] = 4, + sym__upname, + [3161] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 27, + ACTIONS(588), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -10881,7 +11095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(545), 29, + ACTIONS(586), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -10911,304 +11125,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3081] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(549), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3211] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(551), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3341] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(553), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3471] = 6, + [3229] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(555), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 26, + ACTIONS(592), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -11233,10 +11159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(381), 28, + ACTIONS(590), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -11262,13 +11189,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3543] = 4, + [3297] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 27, + ACTIONS(596), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -11296,7 +11223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(557), 29, + ACTIONS(594), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11326,108 +11253,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3611] = 35, + [3365] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(598), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(387), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(389), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(561), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3741] = 4, + [3434] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 27, + ACTIONS(602), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -11455,11 +11351,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(563), 29, + ACTIONS(600), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -11485,111 +11380,78 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3809] = 35, + [3501] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(534), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(567), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(532), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3939] = 4, + sym__upname, + [3568] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(571), 27, + ACTIONS(558), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -11614,7 +11476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(569), 29, + ACTIONS(556), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11644,298 +11506,76 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4007] = 35, + [3635] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(606), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(573), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4137] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(604), 28, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(575), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4267] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, sym__upname, - ACTIONS(577), 1, - anon_sym_RBRACE, - STATE(18), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4397] = 4, + [3702] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 27, + ACTIONS(610), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -11963,12 +11603,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(579), 29, + ACTIONS(608), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11993,108 +11632,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4465] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(583), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4595] = 4, + [3769] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(587), 27, + ACTIONS(614), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -12122,12 +11666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(585), 29, + ACTIONS(612), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12152,298 +11695,78 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4663] = 35, + [3836] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(589), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + anon_sym_LPAREN, + ACTIONS(616), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4793] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(389), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(591), 1, - anon_sym_RBRACE, - STATE(50), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [4923] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(387), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(593), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [5053] = 4, + sym__upname, + [3907] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(597), 27, + ACTIONS(622), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -12471,11 +11794,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(595), 29, + ACTIONS(620), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -12501,13 +11823,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5121] = 4, + [3974] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(601), 27, + ACTIONS(626), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -12535,11 +11857,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(599), 29, + ACTIONS(624), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -12565,13 +11886,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5189] = 4, + [4041] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 27, + ACTIONS(630), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -12599,11 +11920,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(603), 29, + ACTIONS(628), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -12629,16 +11949,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5257] = 4, + [4108] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 27, + ACTIONS(518), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -12663,7 +11982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(607), 29, + ACTIONS(516), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12693,16 +12012,19 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5325] = 4, + [4175] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 27, + ACTIONS(389), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -12727,12 +12049,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(611), 29, + ACTIONS(387), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12757,210 +12077,45 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5393] = 35, + [4246] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(615), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [5523] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(634), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(617), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [5653] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(625), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(619), 27, + ACTIONS(632), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12985,10 +12140,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(621), 27, + [4313] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(526), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -13013,305 +12173,138 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [5725] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(524), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(628), 1, - anon_sym_RBRACE, - STATE(65), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [5855] = 35, + sym__upname, + [4380] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(507), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(630), 1, - anon_sym_RBRACE, - STATE(43), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(505), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [5985] = 35, + sym__upname, + [4447] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(596), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(632), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6115] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(634), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(619), 27, + ACTIONS(594), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -13336,10 +12329,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(621), 27, + [4514] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(399), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -13364,108 +12362,43 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [6187] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(397), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(638), 1, - anon_sym_RBRACE, - STATE(20), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6317] = 4, + sym__upname, + [4581] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 26, + ACTIONS(592), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13492,7 +12425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(525), 29, + ACTIONS(590), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13522,106 +12455,76 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6384] = 34, + [4648] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(588), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(32), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(586), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6511] = 4, + sym__upname, + [4715] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 26, + ACTIONS(584), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13648,7 +12551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(387), 29, + ACTIONS(582), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13678,201 +12581,109 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6578] = 34, + [4782] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(548), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(58), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, + ACTIONS(546), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6705] = 34, + sym__upname, + [4849] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(387), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(51), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6832] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(587), 26, + sym__upname, + ACTIONS(389), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -13897,12 +12708,18 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(585), 29, + [4918] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(636), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(387), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -13927,201 +12744,107 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6899] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(389), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(38), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + [4987] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(642), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7026] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(638), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(640), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(37), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7153] = 5, + [5056] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, + ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(619), 27, + ACTIONS(644), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14149,7 +12872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(621), 27, + ACTIONS(646), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -14177,387 +12900,172 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7222] = 34, + [5125] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(544), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(542), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - STATE(56), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + [5192] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(650), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7349] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(640), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(34), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7476] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(638), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(54), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7603] = 34, + sym__upname, + [5263] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(656), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(646), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(28), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7730] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(619), 27, + ACTIONS(644), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14585,10 +13093,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(621), 27, + [5334] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(570), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -14613,13 +13126,43 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7799] = 4, + ACTIONS(568), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5401] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 26, + ACTIONS(574), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14646,7 +13189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(521), 29, + ACTIONS(572), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14676,16 +13219,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7866] = 4, + [5468] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 27, + ACTIONS(562), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -14710,10 +13252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(642), 28, + ACTIONS(560), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -14739,16 +13282,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7933] = 4, + [5535] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(648), 27, + ACTIONS(552), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -14773,11 +13315,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(646), 28, + ACTIONS(550), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -14802,13 +13345,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8000] = 4, + [5602] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 26, + ACTIONS(538), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14835,7 +13378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(509), 29, + ACTIONS(536), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14865,13 +13408,41 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8067] = 4, + [5669] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 27, + ACTIONS(658), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(660), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -14899,11 +13470,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(650), 28, + [5735] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(662), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -14928,86 +13504,115 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8134] = 34, + ACTIONS(664), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5801] = 36, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - STATE(46), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(666), 1, + anon_sym_RPAREN, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(670), 1, + anon_sym_DOT_DOT, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1478), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1855), 1, + sym_label, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15021,15 +13626,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [8261] = 5, + [5931] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(654), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(619), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15057,7 +13660,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(621), 27, + ACTIONS(682), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -15085,45 +13688,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8330] = 4, + [5997] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(656), 28, + ACTIONS(684), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -15148,15 +13722,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8397] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(505), 26, + ACTIONS(686), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -15181,45 +13750,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(503), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8464] = 5, + [6063] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(664), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(660), 27, + ACTIONS(688), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15247,7 +13784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(662), 27, + ACTIONS(690), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -15275,86 +13812,87 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8533] = 34, + [6129] = 36, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - STATE(71), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(692), 1, + anon_sym_RPAREN, + ACTIONS(694), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1559), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1855), 1, + sym_label, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15368,16 +13906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [8660] = 4, + [6259] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 27, + ACTIONS(622), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -15402,7 +13939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(666), 28, + ACTIONS(620), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15431,149 +13968,159 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8727] = 4, + [6325] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(706), 1, + anon_sym_AMP_AMP, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(700), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(702), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(708), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(545), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(696), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8794] = 34, + ACTIONS(698), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6411] = 36, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - STATE(16), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(720), 1, + anon_sym_RPAREN, + ACTIONS(722), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1457), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1855), 1, + sym_label, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15587,15 +14134,44 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [8921] = 4, + [6541] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 26, + ACTIONS(724), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(726), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -15620,12 +14196,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(557), 29, + [6607] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(728), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -15650,201 +14230,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8988] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(33), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [9115] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(36), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [9242] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(571), 26, + ACTIONS(730), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -15869,12 +14258,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(569), 29, + [6673] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(732), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -15899,13 +14292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9309] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(672), 27, + ACTIONS(734), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -15933,57 +14320,66 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(670), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + [6739] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(704), 1, anon_sym_PIPE_PIPE, + ACTIONS(706), 1, anon_sym_AMP_AMP, + ACTIONS(714), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(702), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(708), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(736), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [9376] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(676), 27, + ACTIONS(738), 19, anon_sym_if, anon_sym_import, anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -15996,11 +14392,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(674), 28, + [6825] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(740), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -16025,86 +14426,115 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9443] = 34, + ACTIONS(742), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6891] = 36, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - STATE(26), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(744), 1, + anon_sym_RPAREN, + ACTIONS(746), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1449), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1855), 1, + sym_label, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16118,108 +14548,44 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [9570] = 34, + [7021] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(748), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(24), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [9697] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(565), 26, + sym__upname, + ACTIONS(750), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -16244,47 +14610,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(563), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9764] = 6, + [7087] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 26, + ACTIONS(602), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -16311,10 +14643,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 27, + ACTIONS(600), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -16339,15 +14672,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9835] = 5, + [7153] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(682), 27, + ACTIONS(752), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -16375,7 +14706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(684), 27, + ACTIONS(754), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -16403,201 +14734,44 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9904] = 34, + [7219] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(29), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [10031] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, + ACTIONS(756), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(423), 1, sym_float, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(39), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [10158] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(601), 26, + sym__upname, + ACTIONS(758), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -16622,12 +14796,30 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(599), 29, + [7285] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(702), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(718), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -16640,29 +14832,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [10225] = 6, + ACTIONS(758), 23, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [7359] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(625), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 26, + ACTIONS(630), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -16689,10 +14895,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 27, + ACTIONS(628), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -16717,86 +14924,87 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10296] = 34, + [7425] = 36, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(413), 1, - anon_sym_let, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(417), 1, - anon_sym_use, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - STATE(41), 1, - aux_sym__statement_seq, - STATE(263), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(760), 1, + anon_sym_RPAREN, + ACTIONS(762), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1477), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1855), 1, + sym_label, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(582), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16810,45 +15018,32 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10423] = 4, + [7555] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(700), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(702), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(611), 29, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(718), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -16860,119 +15055,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [10490] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(758), 23, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(48), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [10617] = 4, + [7631] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 26, + ACTIONS(614), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -16999,12 +15118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(607), 29, + ACTIONS(612), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17029,21 +15147,18 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10684] = 4, + [7697] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(597), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(399), 21, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_EQ, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17058,19 +15173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(595), 29, - ts_builtin_sym_end, + ACTIONS(397), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17086,51 +15202,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [10751] = 4, + [7763] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(700), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(702), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(603), 29, + ACTIONS(712), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(718), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17138,126 +15252,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [10818] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(758), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(413), 1, anon_sym_let, - ACTIONS(415), 1, anon_sym_assert, - ACTIONS(417), 1, anon_sym_use, - ACTIONS(419), 1, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(423), 1, - sym_float, - ACTIONS(427), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(429), 1, sym__name, - ACTIONS(431), 1, - sym__upname, - STATE(64), 1, - aux_sym__statement_seq, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1091), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(582), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [10945] = 4, + [7843] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(690), 27, + ACTIONS(610), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -17282,11 +15311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(688), 28, + ACTIONS(608), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17311,27 +15340,64 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11012] = 4, + [7909] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(700), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(702), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(708), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(712), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(718), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(758), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -17344,61 +15410,65 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(579), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, + [7991] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(706), 1, anon_sym_AMP_AMP, + ACTIONS(714), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(702), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(708), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(756), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [11079] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 26, + ACTIONS(758), 19, anon_sym_if, anon_sym_import, - anon_sym_SLASH, + anon_sym_as, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -17411,7 +15481,21 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(660), 27, + [8075] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(718), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -17429,27 +15513,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [11150] = 6, + ACTIONS(758), 25, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8145] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(696), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 26, + ACTIONS(606), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -17476,10 +15578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(682), 27, + ACTIONS(604), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17504,13 +15607,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11221] = 4, + [8211] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(700), 27, + ACTIONS(756), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -17538,7 +15641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(702), 27, + ACTIONS(758), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -17566,56 +15669,66 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [11287] = 4, + [8277] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(706), 1, + anon_sym_AMP_AMP, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(704), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(700), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(702), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(708), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(716), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(764), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(706), 27, + ACTIONS(766), 19, anon_sym_if, anon_sym_import, anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -17628,180 +15741,66 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [11353] = 4, + [8363] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(706), 1, + anon_sym_AMP_AMP, + ACTIONS(714), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 21, - anon_sym_DOT, + ACTIONS(700), 2, anon_sym_SLASH, - anon_sym_EQ, + anon_sym_STAR, + ACTIONS(702), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(607), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(708), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(716), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11419] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(690), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + ACTIONS(710), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(688), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11485] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 27, + ACTIONS(768), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(710), 27, + ACTIONS(770), 19, anon_sym_if, anon_sym_import, anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -17814,101 +15813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [11551] = 36, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(712), 1, - anon_sym_RPAREN, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(716), 1, - anon_sym_DOT_DOT, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(720), 1, - sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1481), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11681] = 36, + [8449] = 36, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -17937,58 +15842,58 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(726), 1, + ACTIONS(772), 1, anon_sym_RPAREN, - ACTIONS(728), 1, + ACTIONS(774), 1, anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1584), 1, + STATE(1614), 1, sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18002,7 +15907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11811] = 36, + [8579] = 36, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -18031,58 +15936,58 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(730), 1, + ACTIONS(776), 1, anon_sym_RPAREN, - ACTIONS(732), 1, + ACTIONS(778), 1, anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1585), 1, + STATE(1512), 1, sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18096,13 +16001,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11941] = 4, + [8709] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 26, + ACTIONS(634), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -18129,7 +16034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(656), 28, + ACTIONS(632), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18158,13 +16063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12007] = 4, + [8775] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(734), 27, + ACTIONS(780), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18192,7 +16097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(736), 27, + ACTIONS(782), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -18220,44 +16125,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [12073] = 4, + [8841] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(642), 28, + ACTIONS(784), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18282,15 +16159,43 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12139] = 5, + ACTIONS(786), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8907] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(654), 1, - anon_sym_DOT, + ACTIONS(391), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 26, + ACTIONS(389), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -18317,7 +16222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 27, + ACTIONS(387), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18345,13 +16250,42 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12207] = 4, + [8975] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(598), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(738), 27, + ACTIONS(389), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(387), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18379,41 +16313,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(740), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [12273] = 4, + [9043] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(636), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 26, + ACTIONS(389), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -18440,11 +16348,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(650), 28, + ACTIONS(387), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18469,13 +16376,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12339] = 4, + [9111] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(742), 27, + ACTIONS(788), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18503,7 +16410,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(744), 27, + ACTIONS(790), 27, anon_sym_if, anon_sym_import, anon_sym_as, @@ -18531,111 +16438,106 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [12405] = 36, + [9177] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(792), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(794), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - ACTIONS(79), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(81), 1, anon_sym_panic, - ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(720), 1, - sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, sym__name, - ACTIONS(746), 1, - anon_sym_RPAREN, - ACTIONS(748), 1, - anon_sym_DOT_DOT, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1654), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + [9243] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, + ACTIONS(796), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [12535] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 26, + sym__upname, + ACTIONS(798), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -18660,7 +16562,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 27, + [9309] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(800), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18688,17 +16596,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12603] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 26, + ACTIONS(803), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -18723,7 +16624,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 27, + [9375] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(806), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18751,46 +16658,74 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12671] = 14, + ACTIONS(808), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9441] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, + ACTIONS(704), 1, anon_sym_PIPE_PIPE, - ACTIONS(760), 1, + ACTIONS(706), 1, anon_sym_AMP_AMP, - ACTIONS(768), 1, + ACTIONS(714), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(700), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(702), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(762), 2, + ACTIONS(708), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(770), 2, + ACTIONS(716), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(764), 4, + ACTIONS(710), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(712), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + ACTIONS(718), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(750), 12, + ACTIONS(810), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -18803,7 +16738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(752), 19, + ACTIONS(812), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -18823,44 +16758,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [12757] = 4, + [9527] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(674), 28, + ACTIONS(814), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18885,13 +16792,41 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12823] = 4, + ACTIONS(816), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9593] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 26, + ACTIONS(626), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -18918,11 +16853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(670), 28, + ACTIONS(624), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18947,60 +16882,169 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12889] = 8, + [9659] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(770), 2, + ACTIONS(826), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(772), 4, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 21, + ACTIONS(736), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(738), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9744] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(822), 1, anon_sym_PIPE_PIPE, + ACTIONS(824), 1, anon_sym_AMP_AMP, + ACTIONS(832), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(836), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(838), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 23, + ACTIONS(840), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9829] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(786), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -19013,7 +17057,35 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [12963] = 36, + ACTIONS(784), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [9894] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -19042,58 +17114,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(774), 1, + ACTIONS(772), 1, anon_sym_RPAREN, - ACTIONS(776), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1648), 1, + STATE(1614), 1, sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19107,29 +17177,40 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13093] = 9, + [10021] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(768), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(742), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(756), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(770), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(772), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 20, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(740), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -19144,24 +17225,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 23, + [10086] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(750), 26, anon_sym_if, anon_sym_import, - anon_sym_as, + anon_sym_SLASH, anon_sym_type, anon_sym_const, + anon_sym_DASH, anon_sym_fn, anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -19174,63 +17271,147 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13169] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(768), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(756), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(770), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(764), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(748), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 16, - ts_builtin_sym_end, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [10151] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(842), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(736), 19, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [10278] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(782), 26, anon_sym_if, anon_sym_import, - anon_sym_as, + anon_sym_SLASH, anon_sym_type, anon_sym_const, + anon_sym_DASH, anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -19243,60 +17424,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13249] = 12, + ACTIONS(780), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [10343] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(768), 1, + ACTIONS(822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(762), 2, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(770), 2, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(764), 4, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 14, + ACTIONS(844), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 19, + ACTIONS(846), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, @@ -19313,106 +17523,291 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13331] = 4, + [10428] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(648), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - ACTIONS(646), 28, - ts_builtin_sym_end, + ACTIONS(776), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1512), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [10555] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(848), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [13397] = 4, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [10682] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(778), 27, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(850), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(780), 27, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [10809] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -19437,13 +17832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13463] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(782), 27, + ACTIONS(732), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -19471,10 +17860,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(784), 27, + [10874] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(730), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -19499,13 +17893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13529] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(786), 27, + ACTIONS(728), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -19533,10 +17921,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(788), 27, + [10939] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(726), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -19561,13 +17954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [13595] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(790), 27, + ACTIONS(724), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -19595,227 +17982,197 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(792), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [13661] = 4, + [11004] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(794), 27, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(796), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - [13727] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(852), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(798), 27, - ts_builtin_sym_end, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [11131] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(800), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - [13793] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(760), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1477), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(802), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(804), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [13859] = 4, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [11258] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 26, + ACTIONS(686), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -19842,11 +18199,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(666), 28, + ACTIONS(684), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -19871,7 +18227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13925] = 36, + [11323] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -19900,58 +18256,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(806), 1, + ACTIONS(854), 1, anon_sym_RPAREN, - ACTIONS(808), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1623), 1, - sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19965,117 +18319,46 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14055] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(760), 1, - anon_sym_AMP_AMP, - ACTIONS(768), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(756), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(762), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(770), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(764), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(766), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(736), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [14139] = 14, + [11450] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, + ACTIONS(822), 1, anon_sym_PIPE_PIPE, - ACTIONS(760), 1, + ACTIONS(824), 1, anon_sym_AMP_AMP, - ACTIONS(768), 1, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(762), 2, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(770), 2, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(764), 4, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(810), 12, + ACTIONS(856), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20088,10 +18371,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(812), 19, + ACTIONS(858), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, @@ -20108,48 +18390,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14225] = 6, + [11535] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(772), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(736), 25, + ACTIONS(664), 26, anon_sym_if, anon_sym_import, - anon_sym_as, + anon_sym_SLASH, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -20160,6 +18410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -20172,13 +18423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14295] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(734), 27, + ACTIONS(662), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20206,74 +18451,46 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(736), 27, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [14361] = 14, + [11600] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, + ACTIONS(822), 1, anon_sym_PIPE_PIPE, - ACTIONS(760), 1, + ACTIONS(824), 1, anon_sym_AMP_AMP, - ACTIONS(768), 1, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(762), 2, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(770), 2, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(764), 4, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(814), 12, + ACTIONS(696), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20286,10 +18503,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(816), 19, + ACTIONS(698), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, @@ -20306,56 +18522,65 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14447] = 4, + [11685] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(818), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(768), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(821), 27, + ACTIONS(770), 18, anon_sym_if, anon_sym_import, - anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -20368,118 +18593,138 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14513] = 14, + [11770] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, - anon_sym_PIPE_PIPE, - ACTIONS(760), 1, - anon_sym_AMP_AMP, - ACTIONS(768), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(754), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(756), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(762), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(770), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(764), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(766), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(824), 12, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(826), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - [14599] = 14, + ACTIONS(860), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [11897] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, + ACTIONS(822), 1, anon_sym_PIPE_PIPE, - ACTIONS(760), 1, + ACTIONS(824), 1, anon_sym_AMP_AMP, - ACTIONS(768), 1, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(754), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(756), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(762), 2, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(770), 2, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(764), 4, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(766), 4, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(772), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(828), 12, + ACTIONS(764), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20492,10 +18737,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(830), 19, + ACTIONS(766), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, @@ -20512,7 +18756,160 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14685] = 36, + [11982] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(752), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [12047] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(862), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [12174] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -20541,58 +18938,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(832), 1, + ACTIONS(744), 1, anon_sym_RPAREN, - ACTIONS(834), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1660), 1, + STATE(1449), 1, sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20606,13 +19001,27 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14815] = 4, + [12301] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(836), 27, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(836), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20628,34 +19037,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(838), 27, + ACTIONS(758), 22, anon_sym_if, anon_sym_import, - anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -20668,13 +19066,40 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14881] = 4, + [12374] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(840), 27, + ACTIONS(790), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(788), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20702,10 +19127,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(842), 27, + [12439] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(690), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -20730,13 +19160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [14947] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(844), 27, + ACTIONS(688), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20764,10 +19188,107 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(846), 27, + [12504] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(864), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [12631] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(794), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -20792,13 +19313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [15013] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(848), 27, + ACTIONS(792), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20826,10 +19341,107 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(850), 27, + [12696] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(866), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [12823] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(816), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -20854,13 +19466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [15079] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(852), 27, + ACTIONS(814), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20888,10 +19494,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(854), 27, + [12888] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(660), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -20916,13 +19527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [15145] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(856), 27, + ACTIONS(658), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -20950,10 +19555,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(858), 27, + [12953] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(798), 26, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_SLASH, anon_sym_type, anon_sym_const, @@ -20978,110 +19588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [15211] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(736), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [15294] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(788), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(786), 27, + ACTIONS(796), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -21109,78 +19616,191 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15359] = 14, + [13018] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(828), 12, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, + sym__name, + ACTIONS(720), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1457), 1, + sym_argument, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(830), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [13145] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - [15444] = 35, + ACTIONS(868), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [13272] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -21209,56 +19829,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(880), 1, + ACTIONS(870), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1739), 1, + STATE(1766), 1, sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21272,78 +19892,68 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15571] = 14, + [13399] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(803), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(800), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(824), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(826), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [15656] = 35, + [13464] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -21372,56 +19982,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(806), 1, + ACTIONS(872), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1623), 1, - sym_argument, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1808), 1, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21435,13 +20045,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15783] = 4, + [13591] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(858), 26, + ACTIONS(808), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -21468,7 +20078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(856), 27, + ACTIONS(806), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -21496,7 +20106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15848] = 35, + [13656] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -21525,56 +20135,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(882), 1, + ACTIONS(692), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, + STATE(1559), 1, sym_argument, - STATE(1808), 1, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21588,7 +20198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15975] = 35, + [13783] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -21617,56 +20227,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(666), 1, + anon_sym_RPAREN, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(884), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, + STATE(1478), 1, sym_argument, - STATE(1808), 1, + STATE(1694), 1, + sym_hole, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21680,13 +20290,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16102] = 4, + [13910] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(792), 26, + ACTIONS(682), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -21713,7 +20323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(790), 27, + ACTIONS(680), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -21741,74 +20351,84 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16167] = 4, + [13975] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(702), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(818), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(820), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(826), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(700), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(874), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16232] = 4, + ACTIONS(876), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [14060] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(800), 26, + ACTIONS(758), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -21835,7 +20455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(798), 27, + ACTIONS(756), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -21863,87 +20483,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16297] = 14, + [14125] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(886), 12, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(888), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [16382] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(75), 1, anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, @@ -21963,240 +20512,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [16509] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(720), 1, - sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(832), 1, - anon_sym_RPAREN, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1660), 1, + STATE(1766), 1, sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [16636] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(720), 1, - sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(892), 1, - anon_sym_RPAREN, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, + STATE(1917), 1, sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22210,13 +20575,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16763] = 4, + [14252] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(706), 26, + ACTIONS(758), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -22243,7 +20608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(704), 27, + ACTIONS(756), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -22271,108 +20636,47 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16828] = 35, + [14317] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(836), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 23, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(720), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(894), 1, - anon_sym_RPAREN, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [16955] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(736), 26, + sym__upname, + ACTIONS(758), 24, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -22383,7 +20687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -22396,7 +20699,44 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(734), 27, + [14386] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(826), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(836), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -22404,41 +20744,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(758), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [14469] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(832), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(818), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(826), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(756), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17020] = 6, + ACTIONS(758), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [14550] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(832), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(876), 4, + ACTIONS(820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(834), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(828), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(830), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 23, + ACTIONS(756), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -22449,32 +20881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 24, + ACTIONS(758), 18, anon_sym_if, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -22487,7 +20906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [17089] = 35, + [14629] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -22516,56 +20935,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(722), 1, + ACTIONS(676), 1, sym__discard_name, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(896), 1, + ACTIONS(880), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, + STATE(1694), 1, sym_hole, - STATE(1739), 1, + STATE(1766), 1, sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, + STATE(1855), 1, sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(961), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22579,42 +20998,29 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17216] = 12, + [14756] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(872), 1, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(862), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 14, + ACTIONS(756), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -22623,19 +21029,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 18, + ACTIONS(758), 22, anon_sym_if, anon_sym_import, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -22648,56 +21064,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [17297] = 11, + [14831] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(872), 1, + ACTIONS(822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(824), 1, + anon_sym_AMP_AMP, + ACTIONS(832), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(818), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(862), 2, + ACTIONS(820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(874), 2, + ACTIONS(826), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(834), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(868), 4, + ACTIONS(828), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 4, + ACTIONS(830), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, + ACTIONS(836), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 16, + ACTIONS(810), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 18, + ACTIONS(812), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -22716,35 +21135,45 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [17376] = 9, + [14916] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(872), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(588), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 20, - ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(586), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -22753,186 +21182,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 22, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [17451] = 14, + [14980] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(810), 12, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(812), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(674), 1, + sym_float, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(678), 1, sym__name, - [17536] = 8, - ACTIONS(3), 1, - sym_module_comment, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1694), 1, + sym_hole, + STATE(1766), 1, + sym_argument, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1855), 1, + sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 21, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(736), 22, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [17609] = 4, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15104] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(526), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -22947,17 +21309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(734), 27, - ts_builtin_sym_end, + ACTIONS(524), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -22979,21 +21345,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17674] = 4, + [15168] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(548), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23008,17 +21369,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(708), 27, - ts_builtin_sym_end, + ACTIONS(546), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23040,21 +21405,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17739] = 4, + [15232] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(507), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23069,17 +21429,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(794), 27, - ts_builtin_sym_end, + ACTIONS(505), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23101,21 +21465,109 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17804] = 4, + [15296] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(676), 1, + sym__discard_name, + ACTIONS(884), 1, + sym_float, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1765), 1, + sym_hole, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(882), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(965), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15418] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(886), 1, + anon_sym_LPAREN, + STATE(229), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(821), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(383), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23130,17 +21582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(818), 27, - ts_builtin_sym_end, + ACTIONS(381), 30, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23162,21 +21615,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17869] = 4, + [15485] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(846), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(558), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23191,17 +21639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(844), 27, - ts_builtin_sym_end, + ACTIONS(556), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23223,21 +21673,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17934] = 4, + [15547] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(804), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(592), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23252,17 +21697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(802), 27, - ts_builtin_sym_end, + ACTIONS(590), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23284,7 +21731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17999] = 35, + [15609] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -23311,58 +21758,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(888), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_DOT_DOT, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(898), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23376,21 +21817,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18126] = 4, + [15727] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(552), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23405,17 +21841,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(852), 27, - ts_builtin_sym_end, + ACTIONS(550), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15789] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(387), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15855] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(562), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(560), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23437,7 +21993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [18191] = 35, + [15917] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -23464,58 +22020,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, + ACTIONS(898), 1, + anon_sym_RBRACK, ACTIONS(900), 1, - anon_sym_RPAREN, - STATE(696), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23529,7 +22079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18318] = 35, + [16035] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -23556,58 +22106,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(726), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1584), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23621,78 +22165,65 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18445] = 14, + [16153] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(570), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(568), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(814), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(816), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [18530] = 35, + [16215] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -23719,58 +22250,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(712), 1, - anon_sym_RPAREN, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - STATE(696), 1, + ACTIONS(906), 1, + anon_sym_RBRACK, + ACTIONS(908), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1481), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23784,78 +22309,237 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18657] = 14, + [16333] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(518), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(516), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(902), 12, - ts_builtin_sym_end, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [16395] = 32, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, sym_float, + ACTIONS(910), 1, + anon_sym_RBRACK, + ACTIONS(912), 1, + anon_sym_DOT_DOT, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(904), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(862), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [16513] = 32, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - [18742] = 35, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, + sym_float, + ACTIONS(914), 1, + anon_sym_RBRACK, + ACTIONS(916), 1, + anon_sym_DOT_DOT, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(862), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [16631] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -23882,58 +22566,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(730), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(918), 1, + anon_sym_RBRACK, + ACTIONS(920), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1585), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23947,21 +22625,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18869] = 4, + [16749] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(740), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(596), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23976,17 +22649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(738), 27, - ts_builtin_sym_end, + ACTIONS(594), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24008,82 +22683,102 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [18934] = 4, + [16811] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(744), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(742), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, sym_float, + ACTIONS(922), 1, + anon_sym_RBRACK, + ACTIONS(924), 1, + anon_sym_DOT_DOT, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [18999] = 4, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(862), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [16929] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(850), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(584), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24098,17 +22793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(848), 27, - ts_builtin_sym_end, + ACTIONS(582), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24130,7 +22827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [19064] = 35, + [16991] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -24157,58 +22854,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(928), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(774), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1648), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + ACTIONS(926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(944), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24222,149 +22912,93 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19191] = 14, + [17107] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(750), 12, - ts_builtin_sym_end, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(752), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - [19276] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, + sym_float, + ACTIONS(930), 1, + anon_sym_RBRACK, + ACTIONS(932), 1, + anon_sym_DOT_DOT, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(906), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(908), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [19361] = 35, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(862), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [17225] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -24391,58 +23025,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(910), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + ACTIONS(936), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24456,82 +23084,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19488] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(838), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(836), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19553] = 4, + [17343] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(682), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24546,17 +23108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(782), 27, - ts_builtin_sym_end, + ACTIONS(680), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24578,21 +23142,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [19618] = 4, + [17405] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(780), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(544), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24607,17 +23166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(778), 27, - ts_builtin_sym_end, + ACTIONS(542), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24639,7 +23200,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [19683] = 35, + [17467] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -24666,58 +23227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(912), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(938), 1, + anon_sym_RBRACK, + ACTIONS(940), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24731,7 +23286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19810] = 35, + [17585] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -24758,58 +23313,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(746), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(942), 1, + anon_sym_RBRACK, + ACTIONS(944), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1654), 1, - sym_argument, - STATE(1675), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24823,7 +23372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19937] = 35, + [17703] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -24850,58 +23399,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(914), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(946), 1, + anon_sym_RBRACK, + ACTIONS(948), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24915,65 +23458,22 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20064] = 14, + [17821] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(864), 1, - anon_sym_AMP_AMP, - ACTIONS(872), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(534), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(862), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(866), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(874), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(868), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(876), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(916), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(918), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -24982,117 +23482,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - [20149] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, + ACTIONS(532), 31, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(720), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(920), 1, - anon_sym_RPAREN, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1961), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(995), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [20276] = 4, + sym__upname, + [17883] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(842), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(686), 19, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25107,17 +23540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(840), 27, - ts_builtin_sym_end, + ACTIONS(684), 31, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25139,11 +23574,69 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [20341] = 35, + [17945] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(538), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(536), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [18007] = 32, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_POUND, ACTIONS(73), 1, @@ -25166,58 +23659,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - ACTIONS(922), 1, - anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(950), 1, + anon_sym_RBRACK, + ACTIONS(952), 1, + anon_sym_DOT_DOT, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25231,73 +23718,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20468] = 4, + [18125] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(571), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(569), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(391), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(513), 1, anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20532] = 4, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 19, + ACTIONS(389), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25317,17 +23748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(603), 33, + ACTIONS(387), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_PIPE, @@ -25351,13 +23778,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [20596] = 4, + [18191] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 19, + ACTIONS(634), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25377,17 +23804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(611), 33, + ACTIONS(632), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_PIPE, @@ -25411,7 +23835,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [20660] = 34, + [18252] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -25438,56 +23862,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(720), 1, + ACTIONS(954), 1, + anon_sym_RBRACK, + ACTIONS(956), 1, sym_float, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(724), 1, - sym__name, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1675), 1, - sym_hole, - STATE(1739), 1, - sym_argument, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1961), 1, - sym_label, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(995), 13, + STATE(854), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25501,7 +23919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20784] = 33, + [18367] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -25532,51 +23950,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(722), 1, - sym__discard_name, - ACTIONS(926), 1, + ACTIONS(958), 1, + anon_sym_RPAREN, + ACTIONS(960), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1746), 1, - sym_hole, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1000), 13, + STATE(897), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25590,13 +24003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20906] = 4, + [18482] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(636), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 19, + ACTIONS(389), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25616,17 +24031,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(509), 33, + ACTIONS(387), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [18545] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(598), 1, anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(387), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_PIPE, @@ -25650,17 +24119,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [20970] = 6, + [18608] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(928), 1, + ACTIONS(391), 1, anon_sym_LPAREN, - STATE(283), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 19, + ACTIONS(389), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25680,12 +24147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(381), 30, + ACTIONS(387), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -25711,7 +24177,91 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21037] = 32, + [18671] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(962), 1, + anon_sym_echo, + ACTIONS(964), 1, + sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(545), 1, + sym_pipeline_echo, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(542), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [18786] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -25724,16 +24274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -25742,48 +24284,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(930), 1, - anon_sym_RBRACK, - ACTIONS(932), 1, - anon_sym_DOT_DOT, - ACTIONS(934), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1873), 1, + sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25797,65 +24345,91 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21155] = 4, + [18901] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(523), 19, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(521), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, sym_float, + ACTIONS(972), 1, + anon_sym_RPAREN, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [21217] = 32, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(862), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [19016] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -25886,48 +24460,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, - sym_float, - ACTIONS(936), 1, + ACTIONS(974), 1, anon_sym_RBRACK, - ACTIONS(938), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(976), 1, + sym_float, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(861), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25941,13 +24513,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21335] = 4, + [19131] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 19, + ACTIONS(626), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25967,10 +24539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(563), 31, + ACTIONS(624), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT, @@ -25999,7 +24570,91 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21397] = 32, + [19192] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, + anon_sym_assert, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(980), 1, + anon_sym_echo, + ACTIONS(982), 1, + sym_float, + STATE(57), 1, + sym_identifier, + STATE(124), 1, + sym_anonymous_function, + STATE(125), 1, + sym_tuple, + STATE(182), 1, + sym_pipeline_echo, + STATE(1639), 1, + sym__maybe_function_expression, + STATE(1906), 1, + sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(126), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(62), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(163), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [19307] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26030,48 +24685,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(940), 1, - anon_sym_RBRACK, - ACTIONS(942), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(984), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26085,7 +24738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21515] = 32, + [19422] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26116,48 +24769,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(986), 1, + anon_sym_RPAREN, + ACTIONS(988), 1, sym_float, - ACTIONS(944), 1, - anon_sym_RBRACK, - ACTIONS(946), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(901), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26171,71 +24822,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21633] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(587), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(585), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21695] = 4, + [19537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 19, + ACTIONS(614), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -26255,13 +24848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(525), 31, + ACTIONS(612), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -26287,71 +24879,18 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21757] = 4, + [19598] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(505), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(503), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(990), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21819] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(474), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 19, + ACTIONS(383), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -26371,17 +24910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(387), 31, + ACTIONS(381), 27, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -26403,7 +24938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21881] = 32, + [19663] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26434,48 +24969,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(948), 1, - anon_sym_RBRACK, - ACTIONS(950), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(992), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26489,7 +25022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21999] = 32, + [19778] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26520,48 +25053,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(952), 1, - anon_sym_RBRACK, - ACTIONS(954), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(994), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26575,7 +25106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22117] = 32, + [19893] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26606,48 +25137,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(996), 1, + anon_sym_RPAREN, + ACTIONS(998), 1, sym_float, - ACTIONS(956), 1, - anon_sym_RBRACK, - ACTIONS(958), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(890), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26661,7 +25190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22235] = 32, + [20008] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26692,48 +25221,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(960), 1, - anon_sym_RBRACK, - ACTIONS(962), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(1000), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26747,7 +25274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22353] = 32, + [20123] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26778,48 +25305,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, - sym_float, - ACTIONS(964), 1, + ACTIONS(1002), 1, anon_sym_RBRACK, - ACTIONS(966), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(1004), 1, + sym_float, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(866), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26833,7 +25358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22471] = 31, + [20238] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -26864,47 +25389,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(970), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + ACTIONS(1006), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(968), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1005), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26918,65 +25442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22587] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(706), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(704), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22649] = 32, + [20353] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27007,48 +25473,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(972), 1, - anon_sym_RBRACK, - ACTIONS(974), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(1008), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27062,187 +25526,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22767] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(597), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(595), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22829] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(601), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(599), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22891] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(858), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(856), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22953] = 4, + [20468] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 19, + ACTIONS(602), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -27262,10 +25552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(557), 31, + ACTIONS(600), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT, @@ -27294,67 +25583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23015] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(976), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23081] = 32, + [20529] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27385,48 +25614,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1010), 1, + anon_sym_RPAREN, + ACTIONS(1012), 1, sym_float, - ACTIONS(980), 1, - anon_sym_RBRACK, - ACTIONS(982), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(906), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27440,7 +25667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23199] = 32, + [20644] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27471,48 +25698,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(984), 1, - anon_sym_RBRACK, - ACTIONS(986), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(1014), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27526,73 +25751,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23317] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(625), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23383] = 4, + [20759] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 19, + ACTIONS(606), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -27612,10 +25777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(545), 31, + ACTIONS(604), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT, @@ -27644,7 +25808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23445] = 32, + [20820] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27675,48 +25839,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, - sym_float, - ACTIONS(988), 1, + ACTIONS(1016), 1, anon_sym_RBRACK, - ACTIONS(990), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + ACTIONS(1018), 1, + sym_float, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(859), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27730,7 +25892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23563] = 32, + [20935] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27743,16 +25905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -27761,48 +25915,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(970), 1, sym_float, - ACTIONS(992), 1, - anon_sym_RBRACK, - ACTIONS(994), 1, - anon_sym_DOT_DOT, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1840), 1, + sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27816,7 +25976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23681] = 31, + [21050] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -27829,16 +25989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -27847,46 +25999,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(996), 1, - anon_sym_RPAREN, - ACTIONS(998), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1827), 1, + sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(942), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27900,157 +26060,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23796] = 31, + [21165] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1008), 1, - anon_sym_echo, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1014), 1, - sym_float, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(650), 1, - sym_pipeline_echo, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(652), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [23911] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(654), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23974] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 19, + ACTIONS(610), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -28070,67 +26086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(619), 29, + ACTIONS(608), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [24037] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_COLON, anon_sym_POUND, @@ -28158,7 +26117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [24100] = 31, + [21226] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28171,8 +26130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -28181,54 +26148,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1026), 1, - anon_sym_echo, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1030), 1, + ACTIONS(1020), 1, + anon_sym_RBRACK, + ACTIONS(1022), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(818), 1, - sym_pipeline_echo, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1008), 13, + STATE(856), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28242,7 +26201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24215] = 31, + [21341] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28273,46 +26232,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1032), 1, - anon_sym_RBRACK, - ACTIONS(1034), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + ACTIONS(1024), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(911), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28326,7 +26285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24330] = 31, + [21456] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28357,46 +26316,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(892), 1, sym_float, - ACTIONS(1036), 1, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28410,7 +26369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24445] = 31, + [21571] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28437,50 +26396,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(209), 1, anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, ACTIONS(213), 1, anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(1028), 1, + anon_sym_echo, + ACTIONS(1030), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(726), 1, + sym_pipeline_echo, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1895), 1, - sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(940), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28494,77 +26453,134 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24560] = 31, + [21686] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(622), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(620), 30, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [21747] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(411), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1040), 1, - anon_sym_echo, - ACTIONS(1042), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(892), 1, sym_float, - STATE(263), 1, + ACTIONS(1032), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(588), 1, - sym_pipeline_echo, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(586), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28578,7 +26594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24675] = 31, + [21862] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28609,46 +26625,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_echo, ACTIONS(213), 1, anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - STATE(1883), 1, + STATE(1785), 1, sym_case_subjects, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28662,77 +26678,134 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24790] = 31, + [21977] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(630), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(628), 30, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [22038] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1034), 1, + anon_sym_LBRACE, + ACTIONS(1036), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_LBRACK, + ACTIONS(1040), 1, + anon_sym_LT_LT, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(1050), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1060), 1, + sym_float, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1044), 1, - anon_sym_RBRACK, - ACTIONS(1046), 1, - sym_float, - STATE(696), 1, + STATE(428), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(476), 1, + sym_tuple, + STATE(522), 1, + sym_pipeline_echo, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(915), 13, + STATE(485), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28746,7 +26819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24905] = 31, + [22153] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -28777,46 +26850,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1070), 1, + anon_sym_RBRACK, + ACTIONS(1072), 1, sym_float, - ACTIONS(1048), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(873), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28830,82 +26903,23 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25020] = 4, + [22268] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(652), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(650), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25081] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, ACTIONS(79), 1, anon_sym_todo, ACTIONS(81), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, ACTIONS(87), 1, @@ -28918,46 +26932,48 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1050), 1, - anon_sym_RPAREN, - ACTIONS(1052), 1, + ACTIONS(1074), 1, + anon_sym_echo, + ACTIONS(1076), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(726), 1, + sym_pipeline_echo, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(963), 13, + STATE(824), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28971,64 +26987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25196] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(658), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(656), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25257] = 31, + [22383] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29059,46 +27018,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_echo, ACTIONS(213), 1, anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1866), 1, + STATE(1896), 1, sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29112,7 +27071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25372] = 31, + [22498] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29143,46 +27102,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_RPAREN, - ACTIONS(1056), 1, + ACTIONS(1080), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(954), 13, + STATE(896), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29196,7 +27155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25487] = 31, + [22613] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29209,8 +27168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -29219,54 +27186,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + ACTIONS(1082), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1871), 1, - sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29280,7 +27239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25602] = 31, + [22728] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29293,8 +27252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -29303,54 +27270,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + ACTIONS(1084), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1859), 1, - sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29364,7 +27323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25717] = 31, + [22843] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29377,8 +27336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -29387,54 +27354,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + ACTIONS(1086), 1, + anon_sym_RPAREN, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1845), 1, - sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29448,64 +27407,91 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25832] = 4, + [22958] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(690), 19, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(195), 1, anon_sym_todo, + ACTIONS(197), 1, anon_sym_panic, - anon_sym_echo, + ACTIONS(201), 1, anon_sym_case, - anon_sym_let, + ACTIONS(203), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(688), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, + ACTIONS(1088), 1, anon_sym_POUND, + ACTIONS(1090), 1, anon_sym_LBRACK, + ACTIONS(1092), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1096), 1, + anon_sym_echo, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, + ACTIONS(1102), 1, sym_float, + ACTIONS(1106), 1, + sym__decimal, + ACTIONS(1108), 1, + sym__name, + ACTIONS(1110), 1, + sym__upname, + STATE(566), 1, + sym_identifier, + STATE(588), 1, + sym_tuple, + STATE(592), 1, + sym_anonymous_function, + STATE(638), 1, + sym_pipeline_echo, + STATE(1695), 1, + sym__maybe_function_expression, + STATE(1819), 1, + sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(591), 2, + sym_record, + sym_record_update, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [25893] = 31, + STATE(564), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(637), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23073] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29536,46 +27522,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1058), 1, - anon_sym_RBRACK, - ACTIONS(1060), 1, + ACTIONS(1112), 1, + anon_sym_RPAREN, + ACTIONS(1114), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(923), 13, + STATE(894), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29589,7 +27575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26008] = 31, + [23188] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -29602,8 +27588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -29612,54 +27606,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1038), 1, + ACTIONS(1116), 1, + anon_sym_RBRACK, + ACTIONS(1118), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1828), 1, - sym_case_subjects, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(929), 13, + STATE(875), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -29673,303 +27659,102 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26123] = 4, + [23303] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(676), 19, - anon_sym_SLASH, + ACTIONS(1120), 1, + anon_sym_LBRACE, + ACTIONS(1122), 1, + anon_sym_POUND, + ACTIONS(1124), 1, + anon_sym_LBRACK, + ACTIONS(1126), 1, + anon_sym_LT_LT, + ACTIONS(1128), 1, anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1132), 1, anon_sym_todo, + ACTIONS(1134), 1, anon_sym_panic, + ACTIONS(1136), 1, anon_sym_echo, + ACTIONS(1138), 1, anon_sym_case, - anon_sym_let, + ACTIONS(1140), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(1142), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(674), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(1144), 1, anon_sym_DQUOTE, + ACTIONS(1146), 1, sym_float, + ACTIONS(1150), 1, + sym__decimal, + ACTIONS(1152), 1, + sym__name, + ACTIONS(1154), 1, + sym__upname, + STATE(15), 1, + sym_identifier, + STATE(50), 1, + sym_tuple, + STATE(72), 1, + sym_anonymous_function, + STATE(103), 1, + sym_pipeline_echo, + STATE(1630), 1, + sym__maybe_function_expression, + STATE(1836), 1, + sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(73), 2, + sym_record, + sym_record_update, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [26184] = 4, + STATE(23), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(104), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23418] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(672), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(670), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26245] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(668), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(666), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26306] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(648), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(646), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26367] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(642), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26428] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, ACTIONS(79), 1, anon_sym_todo, @@ -29989,46 +27774,46 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, - sym_float, - ACTIONS(1062), 1, + ACTIONS(1156), 1, anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(1158), 1, + sym_float, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(895), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30042,7 +27827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26543] = 31, + [23533] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -30055,14 +27840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -30071,48 +27850,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1064), 1, - anon_sym_echo, - ACTIONS(1066), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(818), 1, - sym_pipeline_echo, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1851), 1, + sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(862), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30126,7 +27911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26658] = 31, + [23648] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -30139,16 +27924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -30157,46 +27934,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1068), 1, - anon_sym_RPAREN, - ACTIONS(1070), 1, + ACTIONS(970), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1862), 1, + sym_case_subjects, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(933), 13, + STATE(881), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30210,77 +27995,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26773] = 31, + [23763] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(1084), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(1086), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(1088), 1, - anon_sym_echo, - ACTIONS(1090), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(1092), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(1098), 1, - sym_float, - ACTIONS(1102), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(251), 1, sym__upname, - STATE(70), 1, + ACTIONS(1160), 1, + anon_sym_DASH, + ACTIONS(1162), 1, + anon_sym_echo, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1166), 1, + sym_float, + STATE(910), 1, sym_identifier, - STATE(80), 1, + STATE(931), 1, sym_anonymous_function, - STATE(85), 1, + STATE(935), 1, sym_tuple, - STATE(135), 1, + STATE(1047), 1, sym_pipeline_echo, - STATE(1719), 1, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1856), 1, - sym__maybe_record_expression, - STATE(1957), 1, + STATE(1790), 1, sym__maybe_tuple_expression, + STATE(1869), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(147), 13, + STATE(1017), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30294,77 +28079,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26888] = 31, + [23878] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(39), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1110), 1, - anon_sym_echo, - ACTIONS(1112), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1168), 1, sym_float, - STATE(109), 1, + STATE(655), 1, sym_identifier, - STATE(142), 1, + STATE(700), 1, sym_tuple, - STATE(143), 1, + STATE(702), 1, sym_anonymous_function, - STATE(203), 1, - sym_pipeline_echo, - STATE(1666), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(202), 13, + STATE(1019), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30378,79 +28161,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27003] = 31, + [23990] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1170), 1, + anon_sym_GT_GT, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1114), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -30462,77 +28245,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27118] = 31, + [24106] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1186), 1, sym_float, - ACTIONS(1116), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(97), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30546,77 +28327,157 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27233] = 31, + [24218] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(221), 1, - anon_sym_POUND, - ACTIONS(223), 1, - anon_sym_LBRACK, - ACTIONS(225), 1, - anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(193), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(235), 1, + ACTIONS(199), 1, + anon_sym_echo, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(1188), 1, + sym_float, + STATE(566), 1, + sym_identifier, + STATE(588), 1, + sym_tuple, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, + sym__maybe_function_expression, + STATE(1819), 1, + sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(591), 2, + sym_record, + sym_record_update, + ACTIONS(1104), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(564), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(620), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24330] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(1120), 1, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(1122), 1, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, + anon_sym_assert, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(1124), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1190), 1, sym_float, - STATE(937), 1, + STATE(57), 1, sym_identifier, - STATE(998), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(125), 1, sym_tuple, - STATE(1078), 1, - sym_pipeline_echo, - STATE(1755), 1, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1077), 13, + STATE(157), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30630,77 +28491,131 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27348] = 31, + [24442] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(507), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(505), 28, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [24502] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(199), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1126), 1, - anon_sym_RPAREN, - ACTIONS(1128), 1, + ACTIONS(1192), 1, sym_float, - STATE(696), 1, + STATE(566), 1, sym_identifier, - STATE(743), 1, + STATE(588), 1, sym_tuple, - STATE(744), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1695), 1, sym__maybe_function_expression, STATE(1819), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1858), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(931), 13, + STATE(607), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30714,79 +28629,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27463] = 31, + [24614] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1130), 1, - anon_sym_RBRACK, - ACTIONS(1132), 1, + ACTIONS(1182), 1, sym_float, - STATE(696), 1, + ACTIONS(1194), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1601), 1, + sym_expression_bit_string_segment, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(899), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -30798,7 +28713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27578] = 31, + [24730] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -30811,16 +28726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -30829,46 +28736,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1196), 1, sym_float, - ACTIONS(1134), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(924), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30882,77 +28795,159 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27693] = 31, + [24842] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, + sym_float, + ACTIONS(1198), 1, + anon_sym_GT_GT, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1555), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24958] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(221), 1, + anon_sym_POUND, + ACTIONS(223), 1, + anon_sym_LBRACK, + ACTIONS(225), 1, + anon_sym_LT_LT, + ACTIONS(227), 1, + anon_sym_fn, + ACTIONS(229), 1, + anon_sym_todo, + ACTIONS(231), 1, + anon_sym_panic, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(243), 1, + sym_float, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(934), 1, - sym_float, - ACTIONS(1136), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(1046), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -30966,11 +28961,9 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27808] = 31, + [25070] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_POUND, ACTIONS(73), 1, @@ -30979,16 +28972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -30997,46 +28982,54 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1138), 1, - anon_sym_RPAREN, - ACTIONS(1140), 1, + ACTIONS(1200), 1, + anon_sym_LBRACE, + ACTIONS(1203), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(939), 13, + STATE(941), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31050,7 +29043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27923] = 31, + [25182] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -31063,16 +29056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -31081,46 +29066,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1142), 1, - anon_sym_RBRACK, - ACTIONS(1144), 1, + ACTIONS(1205), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(898), 13, + STATE(951), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31134,77 +29125,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28038] = 31, + [25294] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1207), 1, sym_float, - ACTIONS(1146), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(982), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31218,7 +29207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28153] = 31, + [25406] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -31249,46 +29238,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1209), 1, sym_float, - ACTIONS(1148), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(1029), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31302,136 +29289,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28268] = 6, + [25518] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1150), 1, - anon_sym_LPAREN, - STATE(506), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(383), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(381), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28333] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(1128), 1, anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(1168), 1, - anon_sym_echo, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(1174), 1, + ACTIONS(1142), 1, anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, - sym_float, - ACTIONS(1182), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(1154), 1, sym__upname, - STATE(497), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1211), 1, + sym_float, + STATE(15), 1, sym_identifier, - STATE(510), 1, + STATE(50), 1, sym_tuple, - STATE(511), 1, + STATE(72), 1, sym_anonymous_function, - STATE(550), 1, - sym_pipeline_echo, - STATE(1686), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1836), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1889), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(548), 13, + STATE(107), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31445,77 +29371,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28448] = 31, + [25630] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1188), 1, - anon_sym_RBRACK, - ACTIONS(1190), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1213), 1, sym_float, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(906), 13, + STATE(110), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31529,7 +29453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28563] = 31, + [25742] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -31542,16 +29466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -31560,46 +29476,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1215), 1, sym_float, - ACTIONS(1192), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(950), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31613,77 +29535,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28678] = 31, + [25854] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1217), 1, sym_float, - ACTIONS(1194), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(112), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31697,77 +29617,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28793] = 31, + [25966] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1196), 1, - anon_sym_RPAREN, - ACTIONS(1198), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1219), 1, sym_float, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(943), 13, + STATE(113), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31781,7 +29699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28908] = 31, + [26078] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -31794,16 +29712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -31812,46 +29722,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1221), 1, sym_float, - ACTIONS(1200), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(948), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31865,77 +29781,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29023] = 31, + [26190] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1202), 1, - anon_sym_RBRACK, - ACTIONS(1204), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1223), 1, sym_float, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(910), 13, + STATE(114), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -31949,77 +29863,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29138] = 31, + [26302] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1225), 1, sym_float, - ACTIONS(1206), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(116), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32033,77 +29945,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29253] = 31, + [26414] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1227), 1, sym_float, - ACTIONS(1208), 1, - anon_sym_RPAREN, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(979), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32117,75 +30027,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29368] = 30, + [26526] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1210), 1, + ACTIONS(1229), 1, sym_float, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(869), 13, + STATE(973), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32199,7 +30109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29480] = 30, + [26638] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(219), 1, @@ -32230,44 +30140,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(251), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1212), 1, + ACTIONS(1231), 1, sym_float, - STATE(937), 1, + STATE(910), 1, sym_identifier, - STATE(998), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(935), 1, sym_tuple, - STATE(1755), 1, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1836), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(938), 2, sym_record, sym_record_update, ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1030), 13, + STATE(1002), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32281,75 +30191,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29592] = 30, + [26750] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1214), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1233), 1, sym_float, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(864), 13, + STATE(154), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32363,75 +30273,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29704] = 30, + [26862] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(1216), 1, + ACTIONS(1160), 1, + anon_sym_DASH, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1235), 1, sym_float, - STATE(263), 1, + STATE(910), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, + STATE(1790), 1, sym__maybe_tuple_expression, + STATE(1869), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(585), 13, + STATE(1005), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32445,75 +30355,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29816] = 30, + [26974] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1218), 1, + ACTIONS(1237), 1, sym_float, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(872), 13, + STATE(993), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32527,75 +30437,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29928] = 30, + [27086] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(227), 1, + anon_sym_fn, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1220), 1, + ACTIONS(1160), 1, + anon_sym_DASH, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1239), 1, sym_float, - STATE(109), 1, + STATE(910), 1, sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, + STATE(1790), 1, sym__maybe_tuple_expression, + STATE(1869), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(215), 13, + STATE(984), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32609,75 +30519,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30040] = 30, + [27198] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1222), 1, + ACTIONS(1241), 1, sym_float, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1026), 13, + STATE(992), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32691,75 +30601,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30152] = 30, + [27310] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1224), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1243), 1, sym_float, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1028), 13, + STATE(156), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32773,75 +30683,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30264] = 30, + [27422] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1226), 1, + ACTIONS(1245), 1, sym_float, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(849), 13, + STATE(1010), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32855,7 +30765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30376] = 30, + [27534] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -32886,44 +30796,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1228), 1, + ACTIONS(1247), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1032), 13, + STATE(999), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -32937,79 +30847,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30488] = 32, + [27646] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1230), 1, - anon_sym_GT_GT, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(207), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(209), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1249), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(946), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -33021,7 +30929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30604] = 30, + [27758] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -33034,16 +30942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -33052,44 +30952,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1244), 1, + ACTIONS(1251), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(874), 13, + STATE(945), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33103,75 +31011,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30716] = 30, + [27870] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(219), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(221), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(223), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(225), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(227), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(229), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(231), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(233), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(235), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(237), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(241), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(247), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(249), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(251), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1160), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1246), 1, + ACTIONS(1253), 1, sym_float, - STATE(696), 1, + STATE(910), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(931), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, sym__maybe_function_expression, - STATE(1819), 1, + STATE(1790), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1869), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(853), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(938), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(908), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1035), 13, + STATE(974), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33185,79 +31093,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30828] = 32, + [27982] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1248), 1, + ACTIONS(1255), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -33269,79 +31177,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [30944] = 32, + [28098] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(193), 1, + anon_sym_fn, + ACTIONS(195), 1, + anon_sym_todo, + ACTIONS(197), 1, + anon_sym_panic, + ACTIONS(199), 1, + anon_sym_echo, + ACTIONS(201), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_assert, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1250), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(566), 1, sym_identifier, - STATE(273), 1, + STATE(588), 1, sym_tuple, - STATE(274), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(628), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -33353,75 +31259,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31060] = 30, + [28210] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1142), 1, + anon_sym_BANG, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1252), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1259), 1, sym_float, - STATE(696), 1, + STATE(15), 1, sym_identifier, - STATE(743), 1, + STATE(50), 1, sym_tuple, - STATE(744), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1836), 1, sym__maybe_record_expression, + STATE(1889), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 13, + STATE(132), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33435,79 +31341,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31172] = 32, + [28322] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1254), 1, + ACTIONS(1261), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1530), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -33519,63 +31425,89 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31288] = 4, + [28438] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(804), 19, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(207), 1, anon_sym_todo, + ACTIONS(209), 1, anon_sym_panic, + ACTIONS(211), 1, anon_sym_echo, - anon_sym_case, - anon_sym_let, + ACTIONS(213), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(802), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(1263), 1, sym_float, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [31348] = 30, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(953), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28550] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -33606,44 +31538,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1256), 1, + ACTIONS(1265), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(871), 13, + STATE(810), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33657,63 +31589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31460] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(846), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(844), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31520] = 30, + [28662] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(191), 1, @@ -33730,58 +31606,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, ACTIONS(203), 1, anon_sym_assert, - ACTIONS(1000), 1, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1004), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(1006), 1, + ACTIONS(1094), 1, anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1258), 1, + ACTIONS(1267), 1, sym_float, - STATE(615), 1, + STATE(566), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(588), 1, sym_tuple, - STATE(1713), 1, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(636), 13, + STATE(634), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33795,119 +31671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31632] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(821), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(818), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31692] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(796), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(794), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31752] = 30, + [28774] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -33938,44 +31702,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1260), 1, + ACTIONS(1269), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(795), 13, + STATE(815), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -33989,75 +31753,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31864] = 30, + [28886] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1262), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(1271), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(580), 13, + STATE(954), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34071,75 +31835,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [31976] = 30, + [28998] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(193), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(199), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(419), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1264), 1, + ACTIONS(1273), 1, sym_float, - STATE(263), 1, + STATE(566), 1, sym_identifier, - STATE(273), 1, + STATE(588), 1, sym_tuple, - STATE(274), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(579), 13, + STATE(594), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34153,7 +31917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32088] = 30, + [29110] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -34184,44 +31948,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1266), 1, + ACTIONS(1275), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(853), 13, + STATE(822), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34235,131 +31999,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32200] = 4, + [29222] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(800), 19, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(195), 1, anon_sym_todo, + ACTIONS(197), 1, anon_sym_panic, + ACTIONS(199), 1, anon_sym_echo, + ACTIONS(201), 1, anon_sym_case, - anon_sym_let, + ACTIONS(203), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(798), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32260] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(1094), 1, anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(419), 1, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1268), 1, + ACTIONS(1277), 1, sym_float, - STATE(263), 1, + STATE(566), 1, sym_identifier, - STATE(273), 1, + STATE(588), 1, sym_tuple, - STATE(274), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 13, + STATE(631), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34373,119 +32081,89 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32372] = 4, + [29334] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(571), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(569), 28, + ACTIONS(11), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(21), 1, anon_sym_POUND, + ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(25), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32432] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(792), 19, - anon_sym_SLASH, + ACTIONS(27), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(33), 1, anon_sym_todo, + ACTIONS(35), 1, anon_sym_panic, + ACTIONS(37), 1, anon_sym_echo, + ACTIONS(39), 1, anon_sym_case, - anon_sym_let, + ACTIONS(43), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(47), 1, anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, sym__decimal, + ACTIONS(61), 1, sym__name, - ACTIONS(790), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1279), 1, sym_float, + STATE(57), 1, + sym_identifier, + STATE(124), 1, + sym_anonymous_function, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, + sym__maybe_function_expression, + STATE(1906), 1, + sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(126), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32492] = 30, + STATE(62), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(191), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29446] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -34516,44 +32194,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1270), 1, + ACTIONS(1281), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(863), 13, + STATE(821), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34567,75 +32245,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32604] = 30, + [29558] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(193), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(199), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1272), 1, + ACTIONS(1283), 1, sym_float, - STATE(696), 1, + STATE(566), 1, sym_identifier, - STATE(743), 1, + STATE(588), 1, sym_tuple, - STATE(744), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1695), 1, sym__maybe_function_expression, STATE(1819), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1858), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1025), 13, + STATE(630), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34649,7 +32327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32716] = 30, + [29670] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -34674,50 +32352,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, - sym_float, ACTIONS(97), 1, sym__decimal, ACTIONS(99), 1, sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - STATE(696), 1, + ACTIONS(1285), 1, + sym_float, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(861), 13, + STATE(820), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34731,135 +32409,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [32828] = 4, + [29782] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(854), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(852), 29, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(71), 1, anon_sym_POUND, + ACTIONS(73), 1, anon_sym_LBRACK, + ACTIONS(75), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32888] = 32, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1274), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(819), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -34871,75 +32491,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33004] = 30, + [29894] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1276), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1289), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 13, + STATE(818), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -34953,131 +32573,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33116] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(838), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(836), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [33176] = 30, + [30006] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1278), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1291), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(574), 13, + STATE(734), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35091,75 +32655,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33288] = 30, + [30118] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1280), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1293), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 13, + STATE(812), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35173,75 +32737,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33400] = 30, + [30230] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1282), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1295), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(581), 13, + STATE(801), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35255,75 +32819,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33512] = 30, + [30342] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(93), 1, + sym_float, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1284), 1, - sym_float, - STATE(263), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 13, + STATE(802), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35337,75 +32901,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33624] = 30, + [30454] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(419), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1286), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1297), 1, sym_float, - STATE(263), 1, + STATE(57), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1906), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1907), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(573), 13, + STATE(143), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35419,77 +32983,135 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33736] = 30, + [30566] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(690), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(688), 29, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30626] = 32, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1288), 1, + ACTIONS(1182), 1, sym_float, - STATE(696), 1, + ACTIONS(1299), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1080), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -35501,89 +33123,63 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [33848] = 30, + [30742] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(660), 19, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(79), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(81), 1, anon_sym_panic, - ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, + anon_sym_use, + anon_sym_BANG, sym__decimal, - ACTIONS(99), 1, sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1290), 1, + ACTIONS(658), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1036), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [33960] = 30, + sym__upname, + [30802] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(191), 1, @@ -35600,58 +33196,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, ACTIONS(203), 1, anon_sym_assert, - ACTIONS(1000), 1, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1004), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(1006), 1, + ACTIONS(1094), 1, anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1292), 1, + ACTIONS(1301), 1, sym_float, - STATE(615), 1, + STATE(566), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(588), 1, sym_tuple, - STATE(1713), 1, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(644), 13, + STATE(627), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35665,7 +33261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [34072] = 30, + [30914] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -35696,44 +33292,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1294), 1, + ACTIONS(1303), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1034), 13, + STATE(986), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35747,79 +33343,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [34184] = 32, + [31026] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1296), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1568), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(977), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -35831,75 +33425,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [34300] = 30, + [31138] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1084), 1, - anon_sym_todo, - ACTIONS(1086), 1, - anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1092), 1, - anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1298), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, anon_sym_echo, - ACTIONS(1300), 1, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(1203), 1, sym_float, - STATE(70), 1, + ACTIONS(1307), 1, + anon_sym_LBRACE, + STATE(655), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(700), 1, sym_tuple, - STATE(1719), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(163), 13, + STATE(941), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -35913,233 +33507,69 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [34412] = 30, + [31250] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(726), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_echo, - ACTIONS(39), 1, anon_sym_case, - ACTIONS(43), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(47), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, sym__decimal, - ACTIONS(61), 1, sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1302), 1, + ACTIONS(724), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(109), 1, - sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, - sym_anonymous_function, - STATE(1666), 1, - sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(44), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(137), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(201), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34524] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1304), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1027), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34636] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(850), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(848), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [34696] = 4, + sym__upname, + [31310] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(842), 19, + ACTIONS(730), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -36159,7 +33589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(840), 29, + ACTIONS(728), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -36189,7 +33619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [34756] = 30, + [31370] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -36202,16 +33632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -36220,44 +33642,52 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1306), 1, + ACTIONS(1203), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1015), 13, + STATE(941), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36271,159 +33701,135 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [34868] = 30, + [31482] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 19, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(79), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(81), 1, anon_sym_panic, - ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, + anon_sym_use, + anon_sym_BANG, sym__decimal, - ACTIONS(99), 1, sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1308), 1, + ACTIONS(732), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1013), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [34980] = 30, + sym__upname, + [31542] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, - anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1310), 1, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, sym_float, - STATE(109), 1, + ACTIONS(1310), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(179), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -36435,7 +33841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35092] = 30, + [31658] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -36466,44 +33872,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, ACTIONS(1312), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1012), 13, + STATE(1016), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36517,75 +33923,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35204] = 30, + [31770] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(195), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(197), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(199), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(201), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(203), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(501), 1, sym__upname, ACTIONS(1314), 1, sym_float, - STATE(615), 1, + STATE(203), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(233), 1, sym_tuple, - STATE(1713), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1880), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1886), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(653), 13, + STATE(548), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36599,159 +34005,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35316] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, - sym_float, - ACTIONS(1316), 1, - anon_sym_GT_GT, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1528), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35432] = 30, + [31882] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(47), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1318), 1, + ACTIONS(1316), 1, sym_float, - STATE(109), 1, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(181), 13, + STATE(549), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36765,75 +34087,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35544] = 30, + [31994] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(193), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(199), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1320), 1, + ACTIONS(1318), 1, sym_float, - STATE(696), 1, + STATE(566), 1, sym_identifier, - STATE(743), 1, + STATE(588), 1, sym_tuple, - STATE(744), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1695), 1, sym__maybe_function_expression, STATE(1819), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1858), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1072), 13, + STATE(593), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36847,7 +34169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35656] = 30, + [32106] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -36878,44 +34200,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(934), 1, + ACTIONS(1320), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(918), 13, + STATE(1011), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -36929,2147 +34251,293 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [35768] = 30, + [32218] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(742), 19, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(79), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(81), 1, anon_sym_panic, - ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, anon_sym_case, - ACTIONS(87), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1322), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1073), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35880] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1324), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(631), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [35992] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1326), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(654), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36104] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1328), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(630), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36216] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1330), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1017), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36328] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1332), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(655), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36440] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1334), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36552] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1336), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1020), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36664] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1338), 1, - sym_float, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(578), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36776] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, - sym_float, - ACTIONS(1340), 1, - anon_sym_GT_GT, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1632), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1528), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [36892] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1342), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1021), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37004] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1344), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1059), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37116] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, - anon_sym_todo, - ACTIONS(407), 1, - anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(415), 1, - anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1346), 1, - sym_float, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(589), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37228] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1348), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(661), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37340] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_fn, - ACTIONS(195), 1, - anon_sym_todo, - ACTIONS(197), 1, - anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, - anon_sym_case, - ACTIONS(203), 1, - anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, - anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, - sym__name, - ACTIONS(1022), 1, - sym__upname, - ACTIONS(1350), 1, - sym_float, - STATE(615), 1, - sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, - sym_tuple, - STATE(1713), 1, - sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(597), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(620), 2, - sym_record, - sym_record_update, - ACTIONS(1016), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(598), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(663), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37452] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1352), 1, - anon_sym_LBRACE, - ACTIONS(1355), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1003), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37564] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1357), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1063), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37676] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, sym__decimal, - ACTIONS(99), 1, sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1359), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1087), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37788] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, + ACTIONS(740), 29, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1361), 1, sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(984), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [37900] = 30, + sym__upname, + [32278] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1363), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(983), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38012] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(750), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_echo, - ACTIONS(39), 1, anon_sym_case, - ACTIONS(43), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(47), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, sym__decimal, - ACTIONS(61), 1, sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1365), 1, - sym_float, - STATE(109), 1, - sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, - sym_anonymous_function, - STATE(1666), 1, - sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(44), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(137), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(114), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(189), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38124] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, + ACTIONS(748), 29, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1367), 1, sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(982), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38236] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(1074), 1, - anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_LBRACK, - ACTIONS(1078), 1, - anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_fn, - ACTIONS(1084), 1, - anon_sym_todo, - ACTIONS(1086), 1, - anon_sym_panic, - ACTIONS(1090), 1, - anon_sym_case, - ACTIONS(1092), 1, - anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, - anon_sym_DQUOTE, - ACTIONS(1102), 1, - sym__decimal, - ACTIONS(1104), 1, - sym__name, - ACTIONS(1106), 1, sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1369), 1, - sym_float, - STATE(70), 1, - sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, - sym_tuple, - STATE(1719), 1, - sym__maybe_function_expression, - STATE(1856), 1, - sym__maybe_record_expression, - STATE(1957), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(92), 2, - sym_record, - sym_record_update, - ACTIONS(1100), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(66), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38348] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(1074), 1, - anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_LBRACK, - ACTIONS(1078), 1, - anon_sym_LT_LT, - ACTIONS(1080), 1, + [32338] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(664), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1084), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(1086), 1, anon_sym_panic, - ACTIONS(1090), 1, + anon_sym_echo, anon_sym_case, - ACTIONS(1092), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(1094), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1096), 1, - anon_sym_DQUOTE, - ACTIONS(1102), 1, sym__decimal, - ACTIONS(1104), 1, sym__name, - ACTIONS(1106), 1, - sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1371), 1, + ACTIONS(662), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(70), 1, - sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, - sym_tuple, - STATE(1719), 1, - sym__maybe_function_expression, - STATE(1856), 1, - sym__maybe_record_expression, - STATE(1957), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(92), 2, - sym_record, - sym_record_update, - ACTIONS(1100), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(164), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38460] = 30, + sym__upname, + [32398] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(1074), 1, - anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_LBRACK, - ACTIONS(1078), 1, - anon_sym_LT_LT, - ACTIONS(1080), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1084), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(1086), 1, anon_sym_panic, - ACTIONS(1090), 1, + anon_sym_echo, anon_sym_case, - ACTIONS(1092), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(1094), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1096), 1, - anon_sym_DQUOTE, - ACTIONS(1102), 1, sym__decimal, - ACTIONS(1104), 1, sym__name, - ACTIONS(1106), 1, - sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1373), 1, + ACTIONS(752), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(70), 1, - sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, - sym_tuple, - STATE(1719), 1, - sym__maybe_function_expression, - STATE(1856), 1, - sym__maybe_record_expression, - STATE(1957), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(92), 2, - sym_record, - sym_record_update, - ACTIONS(1100), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(162), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38572] = 30, + sym__upname, + [32458] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(1074), 1, - anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_LBRACK, - ACTIONS(1078), 1, - anon_sym_LT_LT, - ACTIONS(1080), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(526), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1084), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(1086), 1, anon_sym_panic, - ACTIONS(1090), 1, + anon_sym_echo, anon_sym_case, - ACTIONS(1092), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(1094), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1096), 1, - anon_sym_DQUOTE, - ACTIONS(1102), 1, sym__decimal, - ACTIONS(1104), 1, sym__name, - ACTIONS(1106), 1, - sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1375), 1, + ACTIONS(524), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(70), 1, - sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, - sym_tuple, - STATE(1719), 1, - sym__maybe_function_expression, - STATE(1856), 1, - sym__maybe_record_expression, - STATE(1957), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(14), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(92), 2, - sym_record, - sym_record_update, - ACTIONS(1100), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(151), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [38684] = 4, + sym__upname, + [32518] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 20, + ACTIONS(399), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -39090,7 +34558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(611), 28, + ACTIONS(397), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39119,13 +34587,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [38744] = 4, + [32578] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 20, + ACTIONS(548), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -39146,7 +34614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(607), 28, + ACTIONS(546), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39175,79 +34643,161 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [38804] = 32, + [32638] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, + anon_sym_fn, + ACTIONS(195), 1, + anon_sym_todo, + ACTIONS(197), 1, + anon_sym_panic, + ACTIONS(199), 1, + anon_sym_echo, + ACTIONS(201), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_assert, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, + anon_sym_DQUOTE, + ACTIONS(1106), 1, + sym__decimal, + ACTIONS(1108), 1, + sym__name, + ACTIONS(1110), 1, + sym__upname, + ACTIONS(1322), 1, + sym_float, + STATE(566), 1, + sym_identifier, + STATE(588), 1, + sym_tuple, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, + sym__maybe_function_expression, + STATE(1819), 1, + sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(591), 2, + sym_record, + sym_record_update, + ACTIONS(1104), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(564), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(609), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32750] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1377), 1, + ACTIONS(1324), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, + STATE(1448), 1, sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -39259,13 +34809,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [38920] = 4, + [32866] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 20, + ACTIONS(552), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -39286,7 +34836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(603), 28, + ACTIONS(550), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39315,75 +34865,239 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [38980] = 30, + [32926] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1326), 1, + sym_float, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1026), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33038] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1328), 1, + sym_float, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1036), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33150] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(195), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(197), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(199), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(201), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(203), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1379), 1, + ACTIONS(1330), 1, sym_float, - STATE(615), 1, + STATE(203), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(233), 1, sym_tuple, - STATE(1713), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1880), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1886), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(662), 13, + STATE(534), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39397,75 +35111,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39092] = 30, + [33262] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(1084), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(1086), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(1092), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1094), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1381), 1, + ACTIONS(1332), 1, sym_float, - STATE(70), 1, + STATE(203), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(233), 1, sym_tuple, - STATE(1719), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(150), 13, + STATE(546), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39479,7 +35193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39204] = 30, + [33374] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(191), 1, @@ -39496,58 +35210,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, ACTIONS(203), 1, anon_sym_assert, - ACTIONS(1000), 1, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1004), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(1006), 1, + ACTIONS(1094), 1, anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1383), 1, + ACTIONS(1334), 1, sym_float, - STATE(615), 1, + STATE(566), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(588), 1, sym_tuple, - STATE(1713), 1, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1880), 1, - sym__maybe_record_expression, - STATE(1886), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(668), 13, + STATE(636), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39561,54 +35275,54 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39316] = 30, + [33486] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, + ACTIONS(1128), 1, anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(1084), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(1086), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(1092), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(1094), 1, + ACTIONS(1142), 1, anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(1298), 1, + ACTIONS(1184), 1, anon_sym_echo, - ACTIONS(1385), 1, + ACTIONS(1336), 1, sym_float, - STATE(70), 1, + STATE(15), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(50), 1, sym_tuple, - STATE(1719), 1, + STATE(72), 1, + sym_anonymous_function, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1836), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1889), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -39616,20 +35330,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(149), 13, + STATE(92), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39643,77 +35357,135 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39428] = 30, + [33598] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(782), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(780), 29, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33658] = 32, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1387), 1, + ACTIONS(1182), 1, sym_float, - STATE(696), 1, + ACTIONS(1338), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1461), 1, + sym_expression_bit_string_segment, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1058), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -39725,7 +35497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39540] = 30, + [33774] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -39738,8 +35510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -39748,52 +35528,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1389), 1, + ACTIONS(1340), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(981), 13, + STATE(996), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39807,75 +35579,187 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39652] = 30, + [33886] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(786), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(784), 29, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33946] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(558), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(85), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - ACTIONS(99), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(556), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(207), 1, + [34006] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(209), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(211), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(213), 1, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(1391), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1342), 1, sym_float, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(980), 13, + STATE(190), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39889,7 +35773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39764] = 30, + [34118] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -39902,8 +35786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -39912,52 +35804,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1393), 1, + ACTIONS(1344), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(979), 13, + STATE(1022), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -39971,63 +35855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [39876] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(389), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(387), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [39936] = 30, + [34230] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -40040,62 +35868,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, ACTIONS(99), 1, sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1395), 1, + ACTIONS(892), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(976), 13, + STATE(862), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -40109,7 +35937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40048] = 30, + [34342] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -40122,8 +35950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(77), 1, anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, ACTIONS(85), 1, anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, @@ -40132,52 +35968,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1397), 1, + ACTIONS(1346), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(975), 13, + STATE(1018), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -40191,13 +36019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40160] = 4, + [34454] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(587), 20, + ACTIONS(562), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -40218,7 +36046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(585), 28, + ACTIONS(560), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -40247,95 +36075,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [40220] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1355), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1003), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [40332] = 4, + [34514] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 20, + ACTIONS(570), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -40356,7 +36102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(563), 28, + ACTIONS(568), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -40385,75 +36131,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [40392] = 30, + [34574] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1399), 1, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1350), 1, sym_float, - STATE(696), 1, + STATE(428), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1019), 13, + STATE(521), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -40467,75 +36213,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40504] = 30, + [34686] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1401), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1352), 1, sym_float, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1037), 13, + STATE(188), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -40549,77 +36295,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40616] = 30, + [34798] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, - anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1403), 1, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, sym_float, - STATE(109), 1, + ACTIONS(1354), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(195), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -40631,75 +36379,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40728] = 30, + [34914] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1084), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(1086), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1092), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1405), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1356), 1, sym_float, - STATE(70), 1, + STATE(655), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(700), 1, sym_tuple, - STATE(1719), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(144), 13, + STATE(1003), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -40713,77 +36461,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40840] = 30, + [35026] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, - anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1407), 1, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, sym_float, - STATE(109), 1, + ACTIONS(1358), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1520), 1, + sym_expression_bit_string_segment, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(196), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -40795,13 +36545,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [40952] = 4, + [35142] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 20, + ACTIONS(518), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -40822,7 +36572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(557), 28, + ACTIONS(516), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -40851,89 +36601,63 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [41012] = 30, + [35202] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, - anon_sym_LBRACE, - ACTIONS(1154), 1, - anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_LBRACK, - ACTIONS(1158), 1, - anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(596), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1162), 1, anon_sym_fn, - ACTIONS(1164), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(1166), 1, anon_sym_panic, - ACTIONS(1170), 1, + anon_sym_echo, anon_sym_case, - ACTIONS(1172), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(1174), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1182), 1, sym__decimal, - ACTIONS(1184), 1, sym__name, - ACTIONS(1186), 1, - sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1411), 1, + ACTIONS(594), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(497), 1, - sym_identifier, - STATE(510), 1, - sym_tuple, - STATE(511), 1, - sym_anonymous_function, - STATE(1686), 1, - sym__maybe_function_expression, - STATE(1868), 1, - sym__maybe_record_expression, - STATE(1936), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(315), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(507), 2, - sym_record, - sym_record_update, - ACTIONS(1180), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(524), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41124] = 30, + sym__upname, + [35262] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -40966,42 +36690,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(63), 1, sym__upname, - ACTIONS(1108), 1, + ACTIONS(978), 1, anon_sym_fn, - ACTIONS(1413), 1, + ACTIONS(1360), 1, sym_float, - STATE(109), 1, + STATE(57), 1, sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1906), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1907), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(126), 2, sym_record, sym_record_update, ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(177), 13, + STATE(187), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41011,135 +36735,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [41236] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(547), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(545), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [41296] = 30, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35374] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(47), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1415), 1, + ACTIONS(1362), 1, sym_float, - STATE(109), 1, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(198), 13, + STATE(537), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41153,75 +36821,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [41408] = 30, + [35486] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(47), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1417), 1, + ACTIONS(1364), 1, sym_float, - STATE(109), 1, + STATE(203), 1, sym_identifier, - STATE(142), 1, + STATE(233), 1, sym_tuple, - STATE(143), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(199), 13, + STATE(535), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41235,75 +36903,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [41520] = 30, + [35598] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(195), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(197), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(199), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(201), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(203), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1018), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1020), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1419), 1, + ACTIONS(1366), 1, sym_float, - STATE(615), 1, + STATE(203), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(233), 1, sym_tuple, - STATE(1713), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1880), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1886), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(660), 13, + STATE(543), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41317,75 +36985,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [41632] = 30, + [35710] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1421), 1, + ACTIONS(1368), 1, sym_float, - STATE(696), 1, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1029), 13, + STATE(533), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41399,131 +37067,157 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [41744] = 4, + [35822] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(788), 19, - anon_sym_SLASH, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(475), 1, anon_sym_todo, + ACTIONS(477), 1, anon_sym_panic, + ACTIONS(479), 1, anon_sym_echo, + ACTIONS(481), 1, anon_sym_case, - anon_sym_let, + ACTIONS(485), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(489), 1, anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, sym__decimal, + ACTIONS(499), 1, sym__name, - ACTIONS(786), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1370), 1, sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [41804] = 30, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(540), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35934] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1423), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1372), 1, sym_float, - STATE(109), 1, + STATE(655), 1, sym_identifier, - STATE(142), 1, + STATE(700), 1, sym_tuple, - STATE(143), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(200), 13, + STATE(1038), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41537,75 +37231,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [41916] = 30, + [36046] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1425), 1, + ACTIONS(1374), 1, sym_float, - STATE(937), 1, + STATE(203), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(233), 1, sym_tuple, - STATE(1755), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1014), 13, + STATE(536), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41619,75 +37313,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [42028] = 30, + [36158] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(227), 1, - anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(243), 1, - sym_float, - ACTIONS(247), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - STATE(937), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1376), 1, + sym_float, + STATE(57), 1, sym_identifier, - STATE(998), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(125), 1, sym_tuple, - STATE(1755), 1, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1052), 13, + STATE(186), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -41701,13 +37395,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [42140] = 4, + [36270] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 20, + ACTIONS(592), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -41728,7 +37422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(525), 28, + ACTIONS(590), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -41757,14 +37451,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [42200] = 4, + [36330] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(505), 20, - anon_sym_as, + ACTIONS(790), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -41784,14 +37477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(503), 28, + ACTIONS(788), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41813,14 +37507,95 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [42260] = 4, + [36390] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1378), 1, + sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 20, - anon_sym_as, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(538), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36502] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(816), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -41840,14 +37615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(509), 28, + ACTIONS(814), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41868,15 +37644,178 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - sym__upname, - [42320] = 4, + sym__upname, + [36562] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1380), 1, + sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(539), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36674] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(475), 1, + anon_sym_todo, + ACTIONS(477), 1, + anon_sym_panic, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(485), 1, + anon_sym_assert, + ACTIONS(489), 1, + anon_sym_BANG, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1382), 1, + sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(541), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36786] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 20, - anon_sym_as, + ACTIONS(808), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -41896,14 +37835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(521), 28, + ACTIONS(806), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41925,77 +37865,79 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [42380] = 30, + [36846] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1427), 1, + ACTIONS(1182), 1, sym_float, - STATE(696), 1, + ACTIONS(1384), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1553), 1, + sym_expression_bit_string_segment, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1018), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -42007,13 +37949,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [42492] = 4, + [36962] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 19, + ACTIONS(803), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -42033,7 +37975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(782), 29, + ACTIONS(800), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -42063,79 +38005,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [42552] = 32, + [37022] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(193), 1, + anon_sym_fn, + ACTIONS(195), 1, + anon_sym_todo, + ACTIONS(197), 1, + anon_sym_panic, + ACTIONS(199), 1, + anon_sym_echo, + ACTIONS(201), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_assert, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1386), 1, sym_float, - ACTIONS(1429), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(566), 1, sym_identifier, - STATE(273), 1, + STATE(588), 1, sym_tuple, - STATE(274), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(641), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -42147,13 +38087,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [42668] = 4, + [37134] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(780), 19, + ACTIONS(798), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -42173,7 +38113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(778), 29, + ACTIONS(796), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -42203,159 +38143,131 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [42728] = 32, + [37194] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(794), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, anon_sym_echo, - ACTIONS(391), 1, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(792), 29, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, sym_float, - ACTIONS(1431), 1, - anon_sym_GT_GT, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1528), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [42844] = 30, + sym__upname, + [37254] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1433), 1, + ACTIONS(1388), 1, sym_float, - STATE(937), 1, + STATE(655), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(700), 1, sym_tuple, - STATE(1755), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1076), 13, + STATE(1013), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -42369,77 +38281,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [42956] = 30, + [37366] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1435), 1, + ACTIONS(1182), 1, sym_float, - STATE(696), 1, + ACTIONS(1390), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1060), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -42451,75 +38365,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43068] = 30, + [37482] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(419), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1437), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1392), 1, sym_float, - STATE(263), 1, + STATE(57), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1906), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1907), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(584), 13, + STATE(135), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -42533,75 +38447,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43180] = 30, + [37594] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1439), 1, + ACTIONS(1394), 1, sym_float, - STATE(937), 1, + STATE(655), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(700), 1, sym_tuple, - STATE(1755), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1065), 13, + STATE(968), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -42615,75 +38529,131 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43292] = 30, + [37706] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(588), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(586), 28, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [37766] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1034), 1, + anon_sym_LBRACE, + ACTIONS(1036), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_LBRACK, + ACTIONS(1040), 1, + anon_sym_LT_LT, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1441), 1, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1396), 1, sym_float, - STATE(696), 1, + STATE(428), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(873), 13, + STATE(514), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -42697,79 +38667,133 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43404] = 32, + [37878] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(584), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(582), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [37938] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1398), 1, sym_float, - ACTIONS(1443), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1653), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1000), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -42781,75 +38805,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43520] = 30, + [38050] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1445), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1400), 1, sym_float, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1081), 13, + STATE(185), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -42863,79 +38887,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43632] = 32, + [38162] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1447), 1, + ACTIONS(1402), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, + STATE(1545), 1, sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -42947,75 +38971,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43748] = 30, + [38278] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(471), 1, anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(479), 1, + anon_sym_echo, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1174), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1449), 1, + ACTIONS(1404), 1, sym_float, - STATE(497), 1, + STATE(203), 1, sym_identifier, - STATE(510), 1, + STATE(233), 1, sym_tuple, - STATE(511), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1866), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(556), 13, + STATE(547), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -43029,13 +39053,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [43860] = 4, + [38390] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 20, + ACTIONS(389), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -43056,11 +39084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(579), 28, + ACTIONS(387), 26, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -43085,79 +39111,135 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [43920] = 32, + [38454] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(1406), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(387), 26, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(1232), 1, + [38518] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1410), 1, sym_float, - ACTIONS(1451), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(57), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1558), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1906), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1907), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(184), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -43169,79 +39251,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44036] = 32, + [38630] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1412), 1, sym_float, - ACTIONS(1453), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1597), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1009), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -43253,159 +39333,135 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44152] = 30, + [38742] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, - anon_sym_LBRACE, - ACTIONS(221), 1, - anon_sym_POUND, - ACTIONS(223), 1, - anon_sym_LBRACK, - ACTIONS(225), 1, - anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(534), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(229), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(231), 1, anon_sym_panic, - ACTIONS(233), 1, anon_sym_echo, - ACTIONS(235), 1, anon_sym_case, - ACTIONS(237), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(241), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + anon_sym_use, + anon_sym_BANG, sym__decimal, - ACTIONS(249), 1, sym__name, - ACTIONS(251), 1, - sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1455), 1, + ACTIONS(532), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(937), 1, - sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, - sym_tuple, - STATE(1755), 1, - sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(909), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(967), 2, - sym_record, - sym_record_update, - ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1075), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [44264] = 30, + sym__upname, + [38802] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(229), 1, - anon_sym_todo, - ACTIONS(231), 1, - anon_sym_panic, - ACTIONS(233), 1, - anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(237), 1, - anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1457), 1, + ACTIONS(1182), 1, sym_float, - STATE(937), 1, + ACTIONS(1414), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(233), 1, sym_tuple, - STATE(1755), 1, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1074), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -43417,75 +39473,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44376] = 30, + [38918] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1084), 1, - anon_sym_todo, - ACTIONS(1086), 1, - anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1092), 1, - anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1298), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, anon_sym_echo, - ACTIONS(1459), 1, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(217), 1, sym_float, - STATE(70), 1, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + STATE(655), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(700), 1, sym_tuple, - STATE(1719), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(166), 13, + STATE(927), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -43499,79 +39555,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44488] = 32, + [39030] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(1046), 1, + anon_sym_todo, + ACTIONS(1048), 1, + anon_sym_panic, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(1054), 1, + anon_sym_assert, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1416), 1, sym_float, - ACTIONS(1461), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(428), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1847), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1859), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(496), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -43583,75 +39637,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44604] = 30, + [39142] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(409), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(419), 1, - anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1463), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1418), 1, sym_float, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(587), 13, + STATE(997), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -43665,75 +39719,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44716] = 30, + [39254] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1465), 1, + ACTIONS(1420), 1, sym_float, - STATE(937), 1, + STATE(655), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(700), 1, sym_tuple, - STATE(1755), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1071), 13, + STATE(1001), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -43747,135 +39801,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [44828] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(597), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(595), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [44888] = 32, + [39366] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1467), 1, + ACTIONS(1422), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -43887,131 +39885,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45004] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(601), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(599), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [45064] = 30, + [39482] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1469), 1, + ACTIONS(1424), 1, sym_float, - STATE(937), 1, + STATE(655), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(700), 1, sym_tuple, - STATE(1755), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1067), 13, + STATE(1043), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44025,75 +39967,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45176] = 30, + [39594] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1164), 1, - anon_sym_todo, - ACTIONS(1166), 1, - anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1172), 1, - anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1409), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, anon_sym_echo, - ACTIONS(1471), 1, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(1291), 1, sym_float, - STATE(497), 1, + STATE(655), 1, sym_identifier, - STATE(510), 1, + STATE(700), 1, sym_tuple, - STATE(511), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(546), 13, + STATE(734), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44107,7 +40049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45288] = 30, + [39706] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -44138,44 +40080,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_echo, ACTIONS(213), 1, anon_sym_assert, - ACTIONS(1024), 1, + ACTIONS(966), 1, anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(1473), 1, + ACTIONS(1426), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1007), 13, + STATE(943), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44189,75 +40131,159 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45400] = 30, + [39818] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, + sym_float, + ACTIONS(1428), 1, + anon_sym_GT_GT, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1555), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39934] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1034), 1, + anon_sym_LBRACE, + ACTIONS(1036), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_LBRACK, + ACTIONS(1040), 1, + anon_sym_LT_LT, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(1174), 1, + ACTIONS(1056), 1, anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1409), 1, + ACTIONS(1348), 1, anon_sym_echo, - ACTIONS(1475), 1, + ACTIONS(1430), 1, sym_float, - STATE(497), 1, + STATE(428), 1, sym_identifier, - STATE(510), 1, - sym_tuple, - STATE(511), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1847), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1859), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 13, + STATE(492), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44271,75 +40297,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45512] = 30, + [40046] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(85), 1, + ACTIONS(1046), 1, + anon_sym_todo, + ACTIONS(1048), 1, + anon_sym_panic, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(91), 1, + ACTIONS(1054), 1, + anon_sym_assert, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, + ACTIONS(1348), 1, anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1260), 1, + ACTIONS(1432), 1, sym_float, - STATE(696), 1, + STATE(428), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(795), 13, + STATE(489), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44353,75 +40379,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45624] = 30, + [40158] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(1042), 1, anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(1174), 1, + ACTIONS(1056), 1, anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1409), 1, + ACTIONS(1348), 1, anon_sym_echo, - ACTIONS(1477), 1, + ACTIONS(1434), 1, sym_float, - STATE(497), 1, + STATE(428), 1, sym_identifier, - STATE(510), 1, - sym_tuple, - STATE(511), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1847), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1859), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(544), 13, + STATE(488), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44435,75 +40461,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45736] = 30, + [40270] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1479), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1436), 1, sym_float, - STATE(497), 1, + STATE(655), 1, sym_identifier, - STATE(510), 1, + STATE(700), 1, sym_tuple, - STATE(511), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(542), 13, + STATE(967), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44517,75 +40543,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45848] = 30, + [40382] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, + ACTIONS(1042), 1, anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(1174), 1, + ACTIONS(1056), 1, anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1409), 1, + ACTIONS(1348), 1, anon_sym_echo, - ACTIONS(1481), 1, + ACTIONS(1438), 1, sym_float, - STATE(497), 1, + STATE(428), 1, sym_identifier, - STATE(510), 1, - sym_tuple, - STATE(511), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1847), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1859), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(541), 13, + STATE(487), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44599,75 +40625,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [45960] = 30, + [40494] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1483), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1440), 1, sym_float, - STATE(497), 1, + STATE(655), 1, sym_identifier, - STATE(510), 1, + STATE(700), 1, sym_tuple, - STATE(511), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(523), 13, + STATE(998), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44681,79 +40707,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46072] = 32, + [40606] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1485), 1, + ACTIONS(1442), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, + STATE(1609), 1, sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -44765,75 +40791,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46188] = 30, + [40722] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(71), 1, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(209), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(211), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(213), 1, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(1355), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1444), 1, sym_float, - ACTIONS(1487), 1, - anon_sym_LBRACE, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 13, + STATE(159), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44847,7 +40873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46300] = 30, + [40834] = 30, ACTIONS(3), 1, sym_module_comment, ACTIONS(69), 1, @@ -44878,44 +40904,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(714), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1490), 1, + ACTIONS(1446), 1, sym_float, - STATE(696), 1, + STATE(655), 1, sym_identifier, - STATE(743), 1, + STATE(700), 1, sym_tuple, - STATE(744), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(699), 2, sym_record, sym_record_update, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1061), 13, + STATE(1007), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -44929,135 +40955,159 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46412] = 4, + [40946] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(744), 19, - anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_LBRACE, + ACTIONS(1036), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_LBRACK, + ACTIONS(1040), 1, + anon_sym_LT_LT, + ACTIONS(1042), 1, anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1046), 1, anon_sym_todo, + ACTIONS(1048), 1, anon_sym_panic, - anon_sym_echo, + ACTIONS(1052), 1, anon_sym_case, - anon_sym_let, + ACTIONS(1054), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(1056), 1, anon_sym_BANG, + ACTIONS(1058), 1, + anon_sym_DQUOTE, + ACTIONS(1064), 1, sym__decimal, + ACTIONS(1066), 1, sym__name, - ACTIONS(742), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(1068), 1, + sym__upname, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1448), 1, sym_float, + STATE(428), 1, + sym_identifier, + STATE(475), 1, + sym_anonymous_function, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1847), 1, + sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(244), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(477), 2, + sym_record, + sym_record_update, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [46472] = 32, + STATE(427), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(486), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41058] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1450), 1, sym_float, - ACTIONS(1492), 1, - anon_sym_GT_GT, - STATE(263), 1, + STATE(655), 1, sym_identifier, - STATE(273), 1, + STATE(700), 1, sym_tuple, - STATE(274), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1628), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1014), 13, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -45069,75 +41119,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46588] = 30, + [41170] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(191), 1, anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(193), 1, + anon_sym_fn, + ACTIONS(195), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(197), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(199), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(201), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(203), 1, anon_sym_assert, - ACTIONS(47), 1, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1494), 1, + ACTIONS(1452), 1, sym_float, - STATE(109), 1, + STATE(566), 1, sym_identifier, - STATE(142), 1, + STATE(588), 1, sym_tuple, - STATE(143), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1695), 1, sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, + STATE(1819), 1, sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(213), 13, + STATE(640), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -45151,75 +41201,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46700] = 30, + [41282] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(227), 1, - anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1496), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1454), 1, sym_float, - STATE(937), 1, + STATE(57), 1, sym_identifier, - STATE(998), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(125), 1, sym_tuple, - STATE(1755), 1, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1070), 13, + STATE(181), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -45233,135 +41283,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46812] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(740), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(738), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [46872] = 32, + [41394] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1498), 1, + ACTIONS(1456), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -45373,75 +41367,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [46988] = 30, + [41510] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1500), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1458), 1, sym_float, - STATE(109), 1, + STATE(655), 1, sym_identifier, - STATE(142), 1, + STATE(700), 1, sym_tuple, - STATE(143), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(221), 13, + STATE(1008), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -45455,17 +41449,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [47100] = 6, + [41622] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 20, + ACTIONS(538), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -45486,67 +41476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(619), 26, + ACTIONS(536), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [47164] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, anon_sym_LPAREN, - ACTIONS(625), 1, anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -45571,75 +41505,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [47228] = 30, + [41682] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(233), 1, + ACTIONS(83), 1, anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1118), 1, + ACTIONS(668), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1506), 1, + ACTIONS(1460), 1, sym_float, - STATE(937), 1, + STATE(655), 1, sym_identifier, - STATE(998), 1, - sym_anonymous_function, - STATE(1006), 1, + STATE(700), 1, sym_tuple, - STATE(1755), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1823), 1, sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1069), 13, + STATE(972), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -45653,133 +41587,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [47340] = 4, + [41794] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(702), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(700), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [47400] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(85), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(207), 1, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(209), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(217), 1, - sym_float, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(1180), 1, anon_sym_BANG, - STATE(696), 1, + ACTIONS(1182), 1, + sym_float, + ACTIONS(1462), 1, + anon_sym_GT_GT, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1004), 13, - sym__expression, - sym_binary_expression, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -45791,13 +41671,14 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [47512] = 4, + [41910] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 19, + ACTIONS(544), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -45817,15 +41698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(708), 29, + ACTIONS(542), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -45847,161 +41727,79 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [47572] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_echo, - ACTIONS(39), 1, - anon_sym_case, - ACTIONS(43), 1, - anon_sym_assert, - ACTIONS(47), 1, - anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1508), 1, - sym_float, - STATE(109), 1, - sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, - sym_anonymous_function, - STATE(1666), 1, - sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(44), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(137), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(114), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(222), 13, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [47684] = 32, + [41970] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(83), 1, anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(411), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1232), 1, + ACTIONS(1172), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(1174), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(1176), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(1178), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(1180), 1, anon_sym_BANG, - ACTIONS(1242), 1, + ACTIONS(1182), 1, sym_float, - ACTIONS(1510), 1, + ACTIONS(1464), 1, anon_sym_GT_GT, - STATE(263), 1, + STATE(203), 1, sym_identifier, - STATE(273), 1, + STATE(233), 1, sym_tuple, - STATE(274), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1528), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -46013,75 +41811,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [47800] = 30, + [42086] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1164), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(1166), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1172), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1182), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1184), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1512), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1466), 1, sym_float, - STATE(497), 1, + STATE(655), 1, sym_identifier, - STATE(510), 1, + STATE(700), 1, sym_tuple, - STATE(511), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1180), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(525), 13, + STATE(1021), 13, sym__expression, sym_binary_expression, sym__expression_unit, @@ -46095,13 +41893,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [47912] = 4, + [42198] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 20, + ACTIONS(574), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46122,9 +41920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(650), 27, + ACTIONS(572), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -46150,71 +41949,177 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [47971] = 5, + [42258] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(654), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(79), 1, anon_sym_todo, + ACTIONS(81), 1, anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - anon_sym_let, + ACTIONS(87), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(619), 26, + ACTIONS(101), 1, + sym__upname, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1468), 1, + sym_float, + STATE(655), 1, + sym_identifier, + STATE(700), 1, + sym_tuple, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, + sym__maybe_function_expression, + STATE(1823), 1, + sym__maybe_record_expression, + STATE(1917), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(650), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(699), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(651), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(975), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42370] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1034), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1036), 1, anon_sym_POUND, + ACTIONS(1038), 1, anon_sym_LBRACK, + ACTIONS(1040), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, + anon_sym_fn, + ACTIONS(1046), 1, + anon_sym_todo, + ACTIONS(1048), 1, + anon_sym_panic, + ACTIONS(1052), 1, + anon_sym_case, + ACTIONS(1054), 1, + anon_sym_assert, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, + ACTIONS(1064), 1, + sym__decimal, + ACTIONS(1066), 1, + sym__name, + ACTIONS(1068), 1, + sym__upname, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1470), 1, sym_float, + STATE(428), 1, + sym_identifier, + STATE(475), 1, + sym_anonymous_function, + STATE(476), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1847), 1, + sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(244), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(477), 2, + sym_record, + sym_record_update, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [48032] = 5, + STATE(427), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(532), 13, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42482] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1514), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 20, + ACTIONS(610), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46235,9 +42140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(660), 26, + ACTIONS(608), 27, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46262,15 +42168,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48093] = 5, + [42541] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1516), 1, + ACTIONS(1472), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 20, + ACTIONS(646), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46291,7 +42197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(682), 26, + ACTIONS(644), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46318,15 +42224,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48154] = 5, + [42602] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 20, + ACTIONS(630), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46347,9 +42251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(619), 26, + ACTIONS(628), 27, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46374,73 +42279,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48215] = 5, + [42661] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(619), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48276] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1518), 1, - anon_sym_LPAREN, - ACTIONS(1520), 1, + ACTIONS(622), 20, anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -46460,63 +42306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(660), 26, + ACTIONS(620), 27, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [48339] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(581), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(579), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -46542,17 +42334,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48398] = 6, + [42720] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1522), 1, - anon_sym_LPAREN, - ACTIONS(1524), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 19, + ACTIONS(606), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -46572,9 +42361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(682), 26, + ACTIONS(604), 27, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46599,95 +42389,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48461] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, - anon_sym_todo, - ACTIONS(1236), 1, - anon_sym_panic, - ACTIONS(1238), 1, - anon_sym_assert, - ACTIONS(1240), 1, - anon_sym_BANG, - ACTIONS(1242), 1, - sym_float, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1730), 1, - sym_expression_bit_string_segment, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1528), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [48574] = 4, + [42779] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 20, + ACTIONS(602), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46708,7 +42416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(666), 27, + ACTIONS(600), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -46736,13 +42444,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48633] = 4, + [42838] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 20, + ACTIONS(614), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46763,10 +42471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(656), 27, + ACTIONS(612), 27, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46791,13 +42499,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48692] = 4, + [42897] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(648), 20, + ACTIONS(626), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46818,10 +42526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(646), 27, + ACTIONS(624), 27, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46846,13 +42554,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48751] = 4, + [42956] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(690), 20, + ACTIONS(634), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46873,7 +42581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(688), 27, + ACTIONS(632), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -46901,13 +42609,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48810] = 4, + [43015] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 20, + ACTIONS(389), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46928,10 +42638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(670), 27, + ACTIONS(387), 26, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -46956,13 +42665,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48869] = 4, + [43076] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(598), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 20, + ACTIONS(389), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -46983,10 +42694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(674), 27, + ACTIONS(387), 26, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -47011,13 +42721,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48928] = 4, + [43137] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(636), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 20, + ACTIONS(389), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -47038,10 +42750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(642), 27, + ACTIONS(387), 26, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -47066,14 +42777,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [48987] = 4, + [43198] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(1476), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 20, - anon_sym_as, + ACTIONS(640), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -47093,7 +42807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 26, + ACTIONS(638), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -47120,203 +42834,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49045] = 14, + [43261] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1532), 1, - anon_sym_AMP_AMP, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1536), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1538), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(814), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(816), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [49123] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1532), 1, - anon_sym_AMP_AMP, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1536), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1538), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(810), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(812), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [49201] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1152), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(1154), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(1156), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(1158), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(1164), 1, - anon_sym_todo, - ACTIONS(1166), 1, - anon_sym_panic, - ACTIONS(1170), 1, + ACTIONS(481), 1, anon_sym_case, - ACTIONS(1172), 1, - anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1184), 1, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, sym__name, - ACTIONS(1186), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1546), 1, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1182), 1, sym_float, - ACTIONS(1550), 1, - sym__decimal, - STATE(497), 1, + STATE(203), 1, sym_identifier, - STATE(510), 1, + STATE(233), 1, sym_tuple, - STATE(511), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1686), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1868), 1, + STATE(1723), 1, + sym_expression_bit_string_segment, + STATE(1781), 1, sym__maybe_record_expression, - STATE(1936), 1, + STATE(1915), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(315), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(507), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1548), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(498), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(569), 11, + STATE(1555), 11, sym__expression_unit, sym_todo, sym_panic, @@ -47328,14 +42916,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [49311] = 4, + [43374] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1478), 1, + anon_sym_LPAREN, + ACTIONS(1480), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(800), 20, - anon_sym_as, + ACTIONS(646), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -47355,7 +42946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(798), 26, + ACTIONS(644), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -47382,14 +42973,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49369] = 4, + [43437] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(792), 20, - anon_sym_as, + ACTIONS(574), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -47409,9 +42999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(790), 26, + ACTIONS(572), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -47436,13 +43028,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49427] = 4, + [43496] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1482), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(804), 20, + ACTIONS(640), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -47463,7 +43057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(802), 26, + ACTIONS(638), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -47490,155 +43084,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49485] = 30, + [43557] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(465), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(467), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(469), 1, anon_sym_LT_LT, - ACTIONS(77), 1, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(473), 1, anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(207), 1, + ACTIONS(475), 1, anon_sym_todo, - ACTIONS(209), 1, + ACTIONS(477), 1, anon_sym_panic, - ACTIONS(211), 1, + ACTIONS(479), 1, anon_sym_echo, - ACTIONS(213), 1, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(485), 1, anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, + ACTIONS(489), 1, anon_sym_BANG, - ACTIONS(1552), 1, - sym_float, - STATE(696), 1, - sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, - sym_anonymous_function, - STATE(1808), 1, - sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(686), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(740), 2, - sym_record, - sym_record_update, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(751), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [49595] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_POUND, - ACTIONS(73), 1, - anon_sym_LBRACK, - ACTIONS(75), 1, - anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(207), 1, - anon_sym_todo, - ACTIONS(209), 1, - anon_sym_panic, - ACTIONS(211), 1, - anon_sym_echo, - ACTIONS(213), 1, - anon_sym_assert, - ACTIONS(1024), 1, - anon_sym_DASH, - ACTIONS(1028), 1, - anon_sym_BANG, - ACTIONS(1554), 1, + ACTIONS(1484), 1, sym_float, - ACTIONS(1558), 1, - sym__decimal, - STATE(696), 1, + STATE(203), 1, sym_identifier, - STATE(743), 1, + STATE(233), 1, sym_tuple, - STATE(744), 1, + STATE(234), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1676), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1781), 1, sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(198), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(232), 2, sym_record, sym_record_update, - ACTIONS(1556), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(228), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(763), 11, + STATE(405), 11, sym__expression_unit, sym_todo, sym_panic, @@ -47650,13 +43164,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [49705] = 4, + [43667] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(850), 20, + ACTIONS(726), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -47677,7 +43191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(848), 26, + ACTIONS(724), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -47704,23 +43218,33 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49763] = 4, + [43725] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(842), 20, - anon_sym_as, + ACTIONS(1486), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 16, + anon_sym_as, anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -47731,7 +43255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(840), 26, + ACTIONS(756), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -47746,150 +43270,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [49821] = 30, + [43791] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 16, + anon_sym_as, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_echo, - ACTIONS(39), 1, anon_sym_case, - ACTIONS(43), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(47), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(59), 1, sym__decimal, - ACTIONS(61), 1, sym__name, - ACTIONS(63), 1, - sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1560), 1, + ACTIONS(756), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, sym_float, - STATE(109), 1, - sym_identifier, - STATE(142), 1, - sym_tuple, - STATE(143), 1, - sym_anonymous_function, - STATE(1666), 1, - sym__maybe_function_expression, - STATE(1902), 1, - sym__maybe_record_expression, - STATE(1913), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(44), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(137), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(186), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [49931] = 14, + sym__upname, + [43859] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1532), 1, - anon_sym_AMP_AMP, - ACTIONS(1540), 1, + ACTIONS(1494), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, + ACTIONS(1486), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1528), 2, + ACTIONS(1488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, + ACTIONS(1490), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1536), 4, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1538), 4, + ACTIONS(1498), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(828), 11, + ACTIONS(758), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(756), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(830), 12, + [43931] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1498), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(758), 12, anon_sym_as, anon_sym_fn, anon_sym_todo, @@ -47902,58 +43444,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [50009] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1530), 1, + ACTIONS(756), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, - ACTIONS(1532), 1, anon_sym_AMP_AMP, - ACTIONS(1540), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44005] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, + ACTIONS(1486), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1528), 2, + ACTIONS(1488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, + ACTIONS(1490), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1536), 4, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1538), 4, + ACTIONS(1498), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(824), 11, + ACTIONS(756), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(826), 12, + ACTIONS(758), 12, anon_sym_as, anon_sym_fn, anon_sym_todo, @@ -47966,75 +43521,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [50087] = 30, + [44081] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(682), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(195), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(197), 1, anon_sym_panic, - ACTIONS(199), 1, anon_sym_echo, - ACTIONS(201), 1, anon_sym_case, - ACTIONS(203), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(1000), 1, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(680), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(1002), 1, anon_sym_LBRACK, - ACTIONS(1004), 1, anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, - anon_sym_BANG, - ACTIONS(1012), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(1018), 1, - sym__decimal, - ACTIONS(1020), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44139] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(79), 1, + anon_sym_todo, + ACTIONS(81), 1, + anon_sym_panic, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1562), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1504), 1, sym_float, - STATE(615), 1, + ACTIONS(1508), 1, + sym__decimal, + STATE(655), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(700), 1, sym_tuple, - STATE(1713), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1880), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1886), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1016), 3, + ACTIONS(1506), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(673), 11, + STATE(758), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48046,75 +43655,131 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [50197] = 30, + [44249] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 18, + anon_sym_as, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(756), 22, anon_sym_LBRACE, - ACTIONS(1074), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(1076), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44311] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1084), 1, - anon_sym_todo, - ACTIONS(1086), 1, - anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1092), 1, - anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1104), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1298), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, anon_sym_echo, - ACTIONS(1564), 1, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(1504), 1, sym_float, - ACTIONS(1568), 1, + ACTIONS(1508), 1, sym__decimal, - STATE(70), 1, + STATE(655), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(700), 1, sym_tuple, - STATE(1719), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1566), 3, + ACTIONS(1506), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(157), 11, + STATE(758), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48126,75 +43791,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [50307] = 30, + [44421] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(191), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(193), 1, + ACTIONS(1122), 1, + anon_sym_POUND, + ACTIONS(1124), 1, + anon_sym_LBRACK, + ACTIONS(1126), 1, + anon_sym_LT_LT, + ACTIONS(1128), 1, + anon_sym_DASH, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(195), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(197), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(199), 1, - anon_sym_echo, - ACTIONS(201), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(203), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(1000), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_LBRACK, - ACTIONS(1004), 1, - anon_sym_LT_LT, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(1010), 1, + ACTIONS(1142), 1, anon_sym_BANG, - ACTIONS(1012), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(1020), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(1022), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(1570), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1510), 1, sym_float, - ACTIONS(1574), 1, + ACTIONS(1514), 1, sym__decimal, - STATE(615), 1, + STATE(15), 1, sym_identifier, - STATE(628), 1, - sym_anonymous_function, - STATE(629), 1, + STATE(50), 1, sym_tuple, - STATE(1713), 1, + STATE(72), 1, + sym_anonymous_function, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1880), 1, + STATE(1836), 1, sym__maybe_record_expression, - STATE(1886), 1, + STATE(1889), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(597), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(620), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(1572), 3, + ACTIONS(1512), 3, sym__hex, sym__octal, sym__binary, - STATE(598), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(669), 11, + STATE(131), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48206,75 +43871,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [50417] = 30, + [44531] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(71), 1, anon_sym_POUND, - ACTIONS(1076), 1, + ACTIONS(73), 1, anon_sym_LBRACK, - ACTIONS(1078), 1, + ACTIONS(75), 1, anon_sym_LT_LT, - ACTIONS(1080), 1, - anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(1084), 1, + ACTIONS(79), 1, anon_sym_todo, - ACTIONS(1086), 1, + ACTIONS(81), 1, anon_sym_panic, - ACTIONS(1090), 1, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(85), 1, anon_sym_case, - ACTIONS(1092), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(1094), 1, - anon_sym_BANG, - ACTIONS(1096), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1102), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1104), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1298), 1, - anon_sym_echo, - ACTIONS(1576), 1, + ACTIONS(668), 1, + anon_sym_DASH, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(1516), 1, sym_float, - STATE(70), 1, + STATE(655), 1, sym_identifier, - STATE(80), 1, - sym_anonymous_function, - STATE(85), 1, + STATE(700), 1, sym_tuple, - STATE(1719), 1, + STATE(702), 1, + sym_anonymous_function, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1856), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1957), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(14), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(92), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(66), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(156), 11, + STATE(712), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48286,22 +43951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [50527] = 6, + [44641] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 18, + ACTIONS(758), 20, anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, anon_sym_LT, @@ -48309,6 +43967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -48319,7 +43978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 22, + ACTIONS(756), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -48336,63 +43995,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [50589] = 13, + [44699] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1532), 1, - anon_sym_AMP_AMP, - ACTIONS(1540), 1, + ACTIONS(1494), 1, anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, + ACTIONS(1518), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, + ACTIONS(1486), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1528), 2, + ACTIONS(1488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, + ACTIONS(1490), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1536), 4, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1538), 4, + ACTIONS(1498), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 12, + ACTIONS(764), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(736), 12, + ACTIONS(766), 12, anon_sym_as, anon_sym_fn, anon_sym_todo, @@ -48405,75 +44069,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [50665] = 30, + [44777] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, + ACTIONS(1518), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1498), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(768), 11, anon_sym_LBRACE, - ACTIONS(21), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(770), 12, + anon_sym_as, + anon_sym_fn, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_echo, - ACTIONS(39), 1, anon_sym_case, - ACTIONS(43), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(47), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(53), 1, + sym__decimal, + sym__name, + [44855] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_POUND, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(75), 1, + anon_sym_LT_LT, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(85), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(61), 1, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1108), 1, - anon_sym_fn, - ACTIONS(1578), 1, + ACTIONS(207), 1, + anon_sym_todo, + ACTIONS(209), 1, + anon_sym_panic, + ACTIONS(211), 1, + anon_sym_echo, + ACTIONS(213), 1, + anon_sym_assert, + ACTIONS(966), 1, + anon_sym_DASH, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(1516), 1, sym_float, - ACTIONS(1582), 1, - sym__decimal, - STATE(109), 1, + STATE(655), 1, sym_identifier, - STATE(142), 1, + STATE(700), 1, sym_tuple, - STATE(143), 1, + STATE(702), 1, sym_anonymous_function, - STATE(1666), 1, + STATE(1767), 1, sym__maybe_function_expression, - STATE(1902), 1, + STATE(1823), 1, sym__maybe_record_expression, - STATE(1913), 1, + STATE(1917), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(44), 2, + STATE(650), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(137), 2, + STATE(699), 2, sym_record, sym_record_update, - ACTIONS(1580), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(114), 5, + STATE(651), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(205), 11, + STATE(712), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48485,103 +44213,103 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [50775] = 12, + [44965] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1536), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1538), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 12, - anon_sym_as, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, + ACTIONS(83), 1, anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(734), 13, + ACTIONS(461), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(465), 1, anon_sym_POUND, + ACTIONS(467), 1, anon_sym_LBRACK, + ACTIONS(469), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(491), 1, anon_sym_DQUOTE, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1520), 1, sym_float, + ACTIONS(1524), 1, + sym__decimal, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(1522), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [50849] = 11, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(410), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45075] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, + ACTIONS(782), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1536), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1538), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 12, - anon_sym_as, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -48592,7 +44320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 15, + ACTIONS(780), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -48602,140 +44330,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [50921] = 9, + [45133] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(471), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 16, - anon_sym_as, + ACTIONS(473), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, + ACTIONS(475), 1, anon_sym_todo, + ACTIONS(477), 1, anon_sym_panic, + ACTIONS(479), 1, anon_sym_echo, + ACTIONS(481), 1, anon_sym_case, - anon_sym_let, + ACTIONS(485), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(489), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(734), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(491), 1, anon_sym_DQUOTE, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1520), 1, sym_float, + ACTIONS(1524), 1, + sym__decimal, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1866), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(1522), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [50989] = 30, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(410), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45243] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(233), 1, - anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1584), 1, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1526), 1, sym_float, - STATE(937), 1, + STATE(428), 1, sym_identifier, - STATE(998), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(476), 1, sym_tuple, - STATE(1755), 1, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(245), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1011), 11, + STATE(510), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48747,33 +44507,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [51099] = 8, + [45353] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1526), 2, + ACTIONS(786), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1542), 2, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(784), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1544), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(736), 16, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [45411] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 20, anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -48784,7 +44588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 20, + ACTIONS(752), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -48799,81 +44603,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [51165] = 30, + [45469] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(219), 1, + ACTIONS(1034), 1, anon_sym_LBRACE, - ACTIONS(221), 1, + ACTIONS(1036), 1, anon_sym_POUND, - ACTIONS(223), 1, + ACTIONS(1038), 1, anon_sym_LBRACK, - ACTIONS(225), 1, + ACTIONS(1040), 1, anon_sym_LT_LT, - ACTIONS(227), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(1044), 1, anon_sym_fn, - ACTIONS(229), 1, + ACTIONS(1046), 1, anon_sym_todo, - ACTIONS(231), 1, + ACTIONS(1048), 1, anon_sym_panic, - ACTIONS(233), 1, - anon_sym_echo, - ACTIONS(235), 1, + ACTIONS(1052), 1, anon_sym_case, - ACTIONS(237), 1, + ACTIONS(1054), 1, anon_sym_assert, - ACTIONS(241), 1, + ACTIONS(1056), 1, + anon_sym_BANG, + ACTIONS(1058), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(1066), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(1068), 1, sym__upname, - ACTIONS(1118), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1586), 1, + ACTIONS(1348), 1, + anon_sym_echo, + ACTIONS(1528), 1, sym_float, - ACTIONS(1590), 1, + ACTIONS(1532), 1, sym__decimal, - STATE(937), 1, + STATE(428), 1, sym_identifier, - STATE(998), 1, + STATE(475), 1, sym_anonymous_function, - STATE(1006), 1, + STATE(476), 1, sym_tuple, - STATE(1755), 1, + STATE(1652), 1, sym__maybe_function_expression, - STATE(1836), 1, - sym__maybe_tuple_expression, - STATE(1892), 1, + STATE(1847), 1, sym__maybe_record_expression, + STATE(1859), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(909), 2, + STATE(244), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(967), 2, + STATE(477), 2, sym_record, sym_record_update, - ACTIONS(1588), 3, + ACTIONS(1530), 3, sym__hex, sym__octal, sym__binary, - STATE(938), 5, + STATE(427), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1050), 11, + STATE(515), 11, sym__expression_unit, sym_todo, sym_panic, @@ -48885,13 +44695,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [51275] = 4, + [45579] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 20, + ACTIONS(664), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -48912,7 +44722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 26, + ACTIONS(662), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -48939,13 +44749,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51333] = 4, + [45637] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 20, + ACTIONS(750), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -48966,7 +44776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(708), 26, + ACTIONS(748), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -48993,129 +44803,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51391] = 4, + [45695] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(702), 20, - anon_sym_as, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(193), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(195), 1, anon_sym_todo, + ACTIONS(197), 1, anon_sym_panic, + ACTIONS(199), 1, anon_sym_echo, + ACTIONS(201), 1, anon_sym_case, - anon_sym_let, + ACTIONS(203), 1, anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(700), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [51449] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(69), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1088), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(1092), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, - anon_sym_todo, - ACTIONS(81), 1, - anon_sym_panic, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(85), 1, - anon_sym_case, - ACTIONS(87), 1, - anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, + anon_sym_BANG, + ACTIONS(1100), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, + ACTIONS(1108), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(1110), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1552), 1, + ACTIONS(1534), 1, sym_float, - STATE(696), 1, + ACTIONS(1538), 1, + sym__decimal, + STATE(566), 1, sym_identifier, - STATE(743), 1, + STATE(588), 1, sym_tuple, - STATE(744), 1, + STATE(592), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(1695), 1, sym__maybe_function_expression, STATE(1819), 1, sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1858), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(591), 2, sym_record, sym_record_update, - ACTIONS(95), 3, + ACTIONS(1536), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(564), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(751), 11, + STATE(606), 11, sym__expression_unit, sym_todo, sym_panic, @@ -49127,13 +44883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [51559] = 4, + [45805] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(740), 20, + ACTIONS(790), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49154,7 +44910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(738), 26, + ACTIONS(788), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49181,13 +44937,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51617] = 4, + [45863] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(744), 20, + ACTIONS(816), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49208,7 +44964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(742), 26, + ACTIONS(814), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49235,77 +44991,93 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51675] = 14, + [45921] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1530), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1532), 1, - anon_sym_AMP_AMP, - ACTIONS(1540), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1526), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1534), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1542), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1536), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1538), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1544), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(750), 11, + ACTIONS(191), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(752), 12, - anon_sym_as, + ACTIONS(193), 1, anon_sym_fn, + ACTIONS(195), 1, anon_sym_todo, + ACTIONS(197), 1, anon_sym_panic, + ACTIONS(199), 1, anon_sym_echo, + ACTIONS(201), 1, anon_sym_case, - anon_sym_let, + ACTIONS(203), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(1088), 1, + anon_sym_POUND, + ACTIONS(1090), 1, + anon_sym_LBRACK, + ACTIONS(1092), 1, + anon_sym_LT_LT, + ACTIONS(1094), 1, + anon_sym_DASH, + ACTIONS(1098), 1, anon_sym_BANG, + ACTIONS(1100), 1, + anon_sym_DQUOTE, + ACTIONS(1106), 1, sym__decimal, + ACTIONS(1108), 1, sym__name, - [51753] = 4, + ACTIONS(1110), 1, + sym__upname, + ACTIONS(1540), 1, + sym_float, + STATE(566), 1, + sym_identifier, + STATE(588), 1, + sym_tuple, + STATE(592), 1, + sym_anonymous_function, + STATE(1695), 1, + sym__maybe_function_expression, + STATE(1819), 1, + sym__maybe_tuple_expression, + STATE(1858), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(591), 2, + sym_record, + sym_record_update, + ACTIONS(1104), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(564), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(643), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46031] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(780), 20, + ACTIONS(690), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49326,7 +45098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(778), 26, + ACTIONS(688), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49353,67 +45125,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51811] = 4, + [46089] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, + ACTIONS(1518), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 20, - anon_sym_as, + ACTIONS(1486), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, anon_sym_DASH, - anon_sym_fn, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(782), 26, + ACTIONS(1498), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(810), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [51869] = 4, + ACTIONS(812), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [46167] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(788), 20, + ACTIONS(808), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49434,7 +45216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(786), 26, + ACTIONS(806), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49461,13 +45243,173 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51927] = 4, + [46225] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(83), 1, + anon_sym_echo, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(465), 1, + anon_sym_POUND, + ACTIONS(467), 1, + anon_sym_LBRACK, + ACTIONS(469), 1, + anon_sym_LT_LT, + ACTIONS(473), 1, + anon_sym_fn, + ACTIONS(481), 1, + anon_sym_case, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(1172), 1, + anon_sym_DASH, + ACTIONS(1174), 1, + anon_sym_todo, + ACTIONS(1176), 1, + anon_sym_panic, + ACTIONS(1178), 1, + anon_sym_assert, + ACTIONS(1180), 1, + anon_sym_BANG, + ACTIONS(1484), 1, + sym_float, + STATE(203), 1, + sym_identifier, + STATE(233), 1, + sym_tuple, + STATE(234), 1, + sym_anonymous_function, + STATE(1676), 1, + sym__maybe_function_expression, + STATE(1781), 1, + sym__maybe_record_expression, + STATE(1915), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(198), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(232), 2, + sym_record, + sym_record_update, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(228), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(405), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46335] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(221), 1, + anon_sym_POUND, + ACTIONS(223), 1, + anon_sym_LBRACK, + ACTIONS(225), 1, + anon_sym_LT_LT, + ACTIONS(227), 1, + anon_sym_fn, + ACTIONS(229), 1, + anon_sym_todo, + ACTIONS(231), 1, + anon_sym_panic, + ACTIONS(233), 1, + anon_sym_echo, + ACTIONS(235), 1, + anon_sym_case, + ACTIONS(237), 1, + anon_sym_assert, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(249), 1, + sym__name, + ACTIONS(251), 1, + sym__upname, + ACTIONS(1160), 1, + anon_sym_DASH, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1542), 1, + sym_float, + STATE(910), 1, + sym_identifier, + STATE(931), 1, + sym_anonymous_function, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, + sym__maybe_function_expression, + STATE(1790), 1, + sym__maybe_tuple_expression, + STATE(1869), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(853), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(938), 2, + sym_record, + sym_record_update, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(908), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(995), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46445] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(821), 20, + ACTIONS(660), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49488,7 +45430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(818), 26, + ACTIONS(658), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49515,13 +45457,93 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [51985] = 4, + [46503] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(221), 1, + anon_sym_POUND, + ACTIONS(223), 1, + anon_sym_LBRACK, + ACTIONS(225), 1, + anon_sym_LT_LT, + ACTIONS(227), 1, + anon_sym_fn, + ACTIONS(229), 1, + anon_sym_todo, + ACTIONS(231), 1, + anon_sym_panic, + ACTIONS(233), 1, + anon_sym_echo, + ACTIONS(235), 1, + anon_sym_case, + ACTIONS(237), 1, + anon_sym_assert, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, + sym__name, + ACTIONS(251), 1, + sym__upname, + ACTIONS(1160), 1, + anon_sym_DASH, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1544), 1, + sym_float, + ACTIONS(1548), 1, + sym__decimal, + STATE(910), 1, + sym_identifier, + STATE(931), 1, + sym_anonymous_function, + STATE(935), 1, + sym_tuple, + STATE(1738), 1, + sym__maybe_function_expression, + STATE(1790), 1, + sym__maybe_tuple_expression, + STATE(1869), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(853), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(938), 2, + sym_record, + sym_record_update, + ACTIONS(1546), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(908), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1045), 11, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46613] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(838), 20, + ACTIONS(803), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49542,7 +45564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(836), 26, + ACTIONS(800), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49569,13 +45591,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [52043] = 4, + [46671] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, + ACTIONS(1518), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1498), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(696), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(698), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [46749] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 20, + ACTIONS(758), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49596,7 +45682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(852), 26, + ACTIONS(756), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49623,75 +45709,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [52101] = 30, + [46807] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(1120), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(1122), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(1124), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(1126), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + ACTIONS(1128), 1, anon_sym_DASH, - ACTIONS(403), 1, + ACTIONS(1130), 1, anon_sym_fn, - ACTIONS(405), 1, + ACTIONS(1132), 1, anon_sym_todo, - ACTIONS(407), 1, + ACTIONS(1134), 1, anon_sym_panic, - ACTIONS(409), 1, - anon_sym_echo, - ACTIONS(411), 1, + ACTIONS(1138), 1, anon_sym_case, - ACTIONS(415), 1, + ACTIONS(1140), 1, anon_sym_assert, - ACTIONS(419), 1, + ACTIONS(1142), 1, anon_sym_BANG, - ACTIONS(421), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1150), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1152), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1154), 1, sym__upname, - ACTIONS(1592), 1, + ACTIONS(1184), 1, + anon_sym_echo, + ACTIONS(1550), 1, sym_float, - STATE(263), 1, + STATE(15), 1, sym_identifier, - STATE(273), 1, + STATE(50), 1, sym_tuple, - STATE(274), 1, + STATE(72), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(1630), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1836), 1, sym__maybe_record_expression, - STATE(1830), 1, + STATE(1889), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(14), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(73), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1148), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(23), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(355), 11, + STATE(127), 11, sym__expression_unit, sym_todo, sym_panic, @@ -49703,13 +45789,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [52211] = 4, + [46917] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(846), 20, + ACTIONS(730), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49730,7 +45816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(844), 26, + ACTIONS(728), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49757,93 +45843,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [52269] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1152), 1, - anon_sym_LBRACE, - ACTIONS(1154), 1, - anon_sym_POUND, - ACTIONS(1156), 1, - anon_sym_LBRACK, - ACTIONS(1158), 1, - anon_sym_LT_LT, - ACTIONS(1160), 1, - anon_sym_DASH, - ACTIONS(1162), 1, - anon_sym_fn, - ACTIONS(1164), 1, - anon_sym_todo, - ACTIONS(1166), 1, - anon_sym_panic, - ACTIONS(1170), 1, - anon_sym_case, - ACTIONS(1172), 1, - anon_sym_assert, - ACTIONS(1174), 1, - anon_sym_BANG, - ACTIONS(1176), 1, - anon_sym_DQUOTE, - ACTIONS(1182), 1, - sym__decimal, - ACTIONS(1184), 1, - sym__name, - ACTIONS(1186), 1, - sym__upname, - ACTIONS(1409), 1, - anon_sym_echo, - ACTIONS(1594), 1, - sym_float, - STATE(497), 1, - sym_identifier, - STATE(510), 1, - sym_tuple, - STATE(511), 1, - sym_anonymous_function, - STATE(1686), 1, - sym__maybe_function_expression, - STATE(1868), 1, - sym__maybe_record_expression, - STATE(1936), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(315), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(507), 2, - sym_record, - sym_record_update, - ACTIONS(1180), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(498), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(528), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [52379] = 4, + [46975] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(706), 20, + ACTIONS(734), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -49864,7 +45870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(704), 26, + ACTIONS(732), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -49891,75 +45897,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [52437] = 30, + [47033] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(69), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(73), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(75), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_echo, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_case, - ACTIONS(87), 1, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(91), 1, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(99), 1, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(714), 1, - anon_sym_DASH, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(1554), 1, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1552), 1, sym_float, - ACTIONS(1558), 1, - sym__decimal, - STATE(696), 1, + STATE(57), 1, sym_identifier, - STATE(743), 1, - sym_tuple, - STATE(744), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1808), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1819), 1, - sym__maybe_tuple_expression, - STATE(1842), 1, + STATE(1906), 1, sym__maybe_record_expression, + STATE(1907), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(686), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(740), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(1556), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(763), 11, + STATE(164), 11, sym__expression_unit, sym_todo, sym_panic, @@ -49971,75 +45977,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [52547] = 30, + [47143] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(395), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(397), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(399), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(403), 1, - anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(1234), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(1236), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(1238), 1, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(43), 1, anon_sym_assert, - ACTIONS(1240), 1, + ACTIONS(47), 1, anon_sym_BANG, - ACTIONS(1592), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(978), 1, + anon_sym_fn, + ACTIONS(1554), 1, sym_float, - STATE(263), 1, + ACTIONS(1558), 1, + sym__decimal, + STATE(57), 1, sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, + STATE(124), 1, sym_anonymous_function, - STATE(1805), 1, + STATE(125), 1, + sym_tuple, + STATE(1639), 1, sym__maybe_function_expression, - STATE(1817), 1, + STATE(1906), 1, sym__maybe_record_expression, - STATE(1925), 1, + STATE(1907), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(272), 2, + STATE(126), 2, sym_record, sym_record_update, - ACTIONS(425), 3, + ACTIONS(1556), 3, sym__hex, sym__octal, sym__binary, - STATE(266), 5, + STATE(62), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(355), 11, + STATE(177), 11, sym__expression_unit, sym_todo, sym_panic, @@ -50051,13 +46057,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [52657] = 4, + [47253] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 20, + ACTIONS(742), 20, anon_sym_as, anon_sym_SLASH, anon_sym_DASH, @@ -50078,7 +46084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(794), 26, + ACTIONS(740), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50105,103 +46111,271 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [52715] = 30, + [47311] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(798), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(796), 26, anon_sym_LBRACE, - ACTIONS(395), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(397), 1, anon_sym_LBRACK, - ACTIONS(399), 1, anon_sym_LT_LT, - ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47369] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(794), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(403), 1, anon_sym_fn, - ACTIONS(405), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(407), 1, anon_sym_panic, - ACTIONS(409), 1, anon_sym_echo, - ACTIONS(411), 1, anon_sym_case, - ACTIONS(415), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(419), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(429), 1, + sym__decimal, sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1596), 1, + ACTIONS(792), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - ACTIONS(1600), 1, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47427] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(686), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1830), 1, - sym__maybe_tuple_expression, + sym__name, + ACTIONS(684), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47485] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_GT, + ACTIONS(1502), 1, + anon_sym_AMP_AMP, + ACTIONS(1518), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(1598), 3, + ACTIONS(1486), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1488), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1490), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1492), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1496), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1498), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(736), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(347), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [52825] = 4, + sym__upname, + ACTIONS(738), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [47563] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(858), 20, - anon_sym_as, + ACTIONS(1560), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1562), 2, anon_sym_DASH, - anon_sym_fn, + anon_sym_PLUS, + ACTIONS(1566), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1570), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 11, + anon_sym_fn, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50212,141 +46386,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(856), 26, + ACTIONS(756), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47638] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1564), 1, anon_sym_AMP_AMP, + ACTIONS(1572), 1, + anon_sym_PIPE_GT, + ACTIONS(1578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1560), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1562), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(844), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [52883] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(83), 1, - anon_sym_echo, - ACTIONS(391), 1, - anon_sym_LBRACE, - ACTIONS(395), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_LT_LT, - ACTIONS(403), 1, + ACTIONS(846), 11, anon_sym_fn, - ACTIONS(411), 1, - anon_sym_case, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(1232), 1, - anon_sym_DASH, - ACTIONS(1234), 1, anon_sym_todo, - ACTIONS(1236), 1, anon_sym_panic, - ACTIONS(1238), 1, + anon_sym_echo, + anon_sym_case, + anon_sym_let, anon_sym_assert, - ACTIONS(1240), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(1596), 1, - sym_float, - ACTIONS(1600), 1, sym__decimal, - STATE(263), 1, - sym_identifier, - STATE(273), 1, - sym_tuple, - STATE(274), 1, - sym_anonymous_function, - STATE(1805), 1, - sym__maybe_function_expression, - STATE(1817), 1, - sym__maybe_record_expression, - STATE(1925), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(240), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(272), 2, - sym_record, - sym_record_update, - ACTIONS(1598), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(266), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(347), 11, - sym__expression_unit, - sym_todo, - sym_panic, - sym_echo, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [52993] = 9, + sym__name, + [47715] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1572), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, + ACTIONS(1574), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1610), 4, + ACTIONS(1568), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1570), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(736), 15, + ACTIONS(758), 11, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50357,7 +46506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 19, + ACTIONS(756), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50367,31 +46516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53060] = 6, + [47786] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(758), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 17, anon_sym_DASH, anon_sym_fn, anon_sym_LT, @@ -50399,6 +46537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50409,7 +46548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 22, + ACTIONS(756), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50426,28 +46565,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53121] = 4, + [47843] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1572), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 19, + ACTIONS(1560), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1562), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 15, anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50458,7 +46613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 26, + ACTIONS(756), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50472,59 +46627,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47910] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, + ACTIONS(1578), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1560), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1562), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1566), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(1568), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1570), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(874), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53178] = 14, + ACTIONS(876), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [47987] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(886), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(764), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50536,7 +46747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(888), 11, + ACTIONS(766), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -50548,45 +46759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53255] = 13, + [48064] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1610), 4, + ACTIONS(1576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(758), 17, + anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(736), 11, - anon_sym_fn, + anon_sym_PLUS, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50597,59 +46791,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 12, + ACTIONS(756), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53330] = 14, + [48125] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(750), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(768), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50661,7 +46865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(752), 11, + ACTIONS(770), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -50673,58 +46877,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53407] = 14, + [48202] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1612), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, + ACTIONS(1574), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1616), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1610), 4, + ACTIONS(1576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(758), 15, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(824), 11, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(756), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(826), 11, + [48267] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1572), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1560), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1562), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1566), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1570), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -50736,46 +46981,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53484] = 14, + ACTIONS(756), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48340] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(828), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(838), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50787,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(830), 11, + ACTIONS(840), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -50799,43 +47058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53561] = 12, + [48417] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(758), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1604), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(736), 11, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_echo, @@ -50846,7 +47084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(734), 13, + ACTIONS(756), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50854,52 +47092,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53634] = 14, + [48474] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(916), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(736), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -50911,7 +47162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(918), 11, + ACTIONS(738), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -50923,106 +47174,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53711] = 11, + [48551] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, + ACTIONS(1578), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1620), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(736), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(734), 15, + ACTIONS(1566), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1570), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(810), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [53782] = 14, + ACTIONS(812), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [48628] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(814), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(696), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -51034,7 +47288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(816), 11, + ACTIONS(698), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -51046,46 +47300,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53859] = 14, + [48705] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, + ACTIONS(1564), 1, + anon_sym_AMP_AMP, + ACTIONS(1572), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1578), 1, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1562), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, + ACTIONS(1566), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, + ACTIONS(1574), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1568), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + ACTIONS(1570), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(810), 11, + ACTIONS(1576), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(856), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -51097,7 +47351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(812), 11, + ACTIONS(858), 11, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -51109,48 +47363,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - [53936] = 8, + [48782] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(507), 10, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1604), 2, + anon_sym_EQ, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1608), 2, + anon_sym_STAR, + ACTIONS(505), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1610), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(736), 15, - anon_sym_fn, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [48837] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(526), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(734), 20, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(524), 33, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51160,104 +47456,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [54001] = 14, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [48892] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(399), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(397), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [48947] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(548), 10, + anon_sym_DOT, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(546), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49002] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(682), 9, + anon_sym_SLASH, + anon_sym_EQ, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1608), 2, + anon_sym_STAR, + ACTIONS(680), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1616), 2, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49055] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(534), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(532), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1610), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1618), 4, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49108] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(588), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(586), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(902), 11, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49161] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(686), 9, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(684), 32, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(904), 11, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [54078] = 4, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49214] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 19, + ACTIONS(544), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(542), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [49267] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1580), 1, + anon_sym_LPAREN, + STATE(590), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(383), 11, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, sym__decimal, + sym__discard_name, sym__name, - ACTIONS(734), 26, - anon_sym_LBRACE, + ACTIONS(381), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -51282,79 +47861,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54135] = 14, + [49322] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1606), 1, - anon_sym_PIPE_GT, - ACTIONS(1612), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1614), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(399), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1604), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1608), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1616), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1610), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1618), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1620), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(906), 11, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(397), 27, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(908), 11, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [54212] = 4, + [49372] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 10, - anon_sym_DOT, + ACTIONS(562), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51362,22 +47922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(607), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(560), 27, anon_sym_RBRACE, - anon_sym_AT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51393,19 +47947,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54267] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49422] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 10, - anon_sym_DOT, + ACTIONS(544), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51413,22 +47968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(611), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(542), 27, anon_sym_RBRACE, - anon_sym_AT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51444,19 +47993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54322] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49472] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 10, - anon_sym_DOT, + ACTIONS(574), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51464,22 +48014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(603), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(572), 27, anon_sym_RBRACE, - anon_sym_AT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51495,19 +48039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54377] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49522] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(571), 10, - anon_sym_DOT, + ACTIONS(389), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51515,22 +48064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(569), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(387), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51546,18 +48087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54432] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49576] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(706), 9, + ACTIONS(538), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51565,21 +48108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(704), 32, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(536), 27, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51595,18 +48133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54485] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49626] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(1582), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(858), 9, + ACTIONS(389), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -51614,21 +48158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(856), 32, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(387), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51644,17 +48181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54538] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49680] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 9, - anon_sym_DOT, + ACTIONS(507), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51663,21 +48202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(509), 32, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(505), 27, anon_sym_RBRACE, - anon_sym_AT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -51693,20 +48227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [54591] = 6, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49730] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1622), 1, - anon_sym_LPAREN, - STATE(627), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 11, + ACTIONS(584), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51718,8 +48251,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(381), 26, + ACTIONS(582), 27, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -51745,17 +48279,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54646] = 6, + [49780] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(625), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(592), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51767,8 +48297,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(619), 25, + ACTIONS(590), 27, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -51793,13 +48325,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54700] = 4, + [49830] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 11, + ACTIONS(596), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51811,7 +48343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(509), 27, + ACTIONS(594), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -51839,13 +48371,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54750] = 4, + [49880] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1586), 1, + anon_sym_LPAREN, + ACTIONS(1588), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 11, + ACTIONS(640), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51857,10 +48393,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(579), 27, + ACTIONS(638), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -51885,13 +48419,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54800] = 4, + [49934] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(601), 11, + ACTIONS(518), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51903,7 +48437,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(599), 27, + ACTIONS(516), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -51931,13 +48465,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54850] = 4, + [49984] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 11, + ACTIONS(570), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51949,7 +48483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(525), 27, + ACTIONS(568), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -51977,13 +48511,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54900] = 4, + [50034] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 11, + ACTIONS(526), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -51995,7 +48529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(611), 27, + ACTIONS(524), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52023,17 +48557,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [54950] = 6, + [50084] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1626), 1, + ACTIONS(1592), 1, anon_sym_LPAREN, - STATE(649), 1, + STATE(615), 1, sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1628), 8, + ACTIONS(1594), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52042,7 +48576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1624), 28, + ACTIONS(1590), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -52071,13 +48605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [55004] = 4, + [50138] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1596), 1, + anon_sym_LPAREN, + ACTIONS(1598), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 11, + ACTIONS(646), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52089,10 +48627,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(521), 27, + ACTIONS(644), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -52117,13 +48653,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55054] = 4, + [50192] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 11, + ACTIONS(548), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52135,7 +48671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(607), 27, + ACTIONS(546), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52163,13 +48699,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55104] = 4, + [50242] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 11, + ACTIONS(558), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52181,7 +48717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(603), 27, + ACTIONS(556), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52209,13 +48745,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55154] = 4, + [50292] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 11, + ACTIONS(534), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52227,7 +48763,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(545), 27, + ACTIONS(532), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52255,13 +48791,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55204] = 4, + [50342] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 11, + ACTIONS(552), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52273,7 +48809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(557), 27, + ACTIONS(550), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52301,13 +48837,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55254] = 4, + [50392] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(505), 11, + ACTIONS(588), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52319,7 +48855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(503), 27, + ACTIONS(586), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -52347,13 +48883,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55304] = 4, + [50442] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 11, + ACTIONS(630), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52365,9 +48901,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(563), 27, + ACTIONS(628), 26, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -52393,13 +48928,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55354] = 4, + [50491] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(597), 11, + ACTIONS(622), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52411,9 +48946,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(595), 27, + ACTIONS(620), 26, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -52439,13 +48973,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55404] = 4, + [50540] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(571), 11, + ACTIONS(626), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52457,9 +48991,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(569), 27, + ACTIONS(624), 26, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -52485,13 +49018,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55454] = 4, + [50589] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(587), 11, + ACTIONS(610), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52503,10 +49036,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(585), 27, + ACTIONS(608), 26, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -52531,17 +49063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55504] = 6, + [50638] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(1630), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(606), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52553,8 +49081,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(619), 25, + ACTIONS(604), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -52579,13 +49108,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55558] = 4, + [50687] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 11, + ACTIONS(602), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52597,9 +49126,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(387), 27, + ACTIONS(600), 26, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -52625,17 +49153,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55608] = 6, + [50736] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1636), 1, - anon_sym_as, + ACTIONS(598), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 11, + ACTIONS(389), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52647,7 +49173,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(660), 25, + ACTIONS(387), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -52673,17 +49199,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55662] = 6, + [50787] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1638), 1, - anon_sym_LPAREN, - ACTIONS(1640), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 11, + ACTIONS(614), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52695,8 +49217,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(682), 25, + ACTIONS(612), 26, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -52721,13 +49244,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55716] = 4, + [50836] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 11, + ACTIONS(634), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52739,7 +49262,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(642), 26, + ACTIONS(632), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -52766,15 +49289,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55765] = 5, + [50885] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(654), 1, + ACTIONS(636), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(389), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52786,7 +49309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(619), 25, + ACTIONS(387), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -52812,13 +49335,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55816] = 4, + [50936] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(648), 11, + ACTIONS(389), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52830,9 +49355,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(646), 26, + ACTIONS(387), 25, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -52857,58 +49381,119 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [55865] = 4, + [50987] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, + anon_sym_AMP_AMP, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 11, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1608), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(770), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(666), 26, + ACTIONS(1610), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1612), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1618), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(768), 10, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51055] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1600), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1610), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(756), 12, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [55914] = 4, + [51119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 11, + ACTIONS(1622), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52917,15 +49502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(670), 26, + ACTIONS(1620), 28, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -52934,26 +49524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [55963] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [51167] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 11, + ACTIONS(1626), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52962,15 +49546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(674), 26, + ACTIONS(1624), 28, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -52979,26 +49568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56012] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [51215] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(690), 11, + ACTIONS(1630), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53007,15 +49590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(688), 26, + ACTIONS(1628), 28, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53024,26 +49612,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56061] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [51263] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 11, + ACTIONS(1634), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53052,15 +49634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(656), 26, + ACTIONS(1632), 28, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53069,26 +49656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56110] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [51311] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 11, + ACTIONS(1638), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53097,15 +49678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(650), 26, + ACTIONS(1636), 28, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53114,28 +49700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56159] = 5, + sym_visibility_modifier, + sym_opacity_modifier, + [51359] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(1642), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53144,14 +49722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(619), 25, + ACTIONS(1640), 28, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53160,28 +49744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56210] = 5, + sym_visibility_modifier, + sym_opacity_modifier, + [51407] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(794), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53193,7 +49769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(619), 25, + ACTIONS(792), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53219,117 +49795,57 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56261] = 13, + [51455] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1646), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(798), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1648), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(736), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1650), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 11, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(796), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56327] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(736), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1650), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1652), 4, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 14, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [56389] = 4, + [51503] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1662), 8, + ACTIONS(1646), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53338,7 +49854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1660), 28, + ACTIONS(1644), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -53367,13 +49883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [56437] = 4, + [51551] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 11, + ACTIONS(803), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53385,7 +49901,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(852), 25, + ACTIONS(800), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53411,13 +49927,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56485] = 4, + [51599] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1666), 8, + ACTIONS(1650), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53426,7 +49942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1664), 28, + ACTIONS(1648), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -53455,13 +49971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [56533] = 4, + [51647] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(838), 11, + ACTIONS(808), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53473,7 +49989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(836), 25, + ACTIONS(806), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53499,50 +50015,50 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56581] = 14, + [51695] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1646), 1, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1614), 1, anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(1600), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1644), 2, + ACTIONS(1602), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1648), 2, + ACTIONS(1608), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 2, + ACTIONS(1616), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(816), 3, + ACTIONS(698), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1650), 4, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(814), 10, + ACTIONS(696), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53553,13 +50069,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56649] = 4, + [51763] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1672), 8, + ACTIONS(1654), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53568,7 +50084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1670), 28, + ACTIONS(1652), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -53597,57 +50113,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [56697] = 4, + [51811] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, + anon_sym_AMP_AMP, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1676), 8, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(812), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1674), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [56745] = 4, + anon_sym_LT_GT, + ACTIONS(810), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51879] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(788), 11, + ACTIONS(1658), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53656,14 +50182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(786), 25, + ACTIONS(1656), 28, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53672,26 +50204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [56793] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [51927] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 11, + ACTIONS(816), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53703,7 +50229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(782), 25, + ACTIONS(814), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53729,13 +50255,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56841] = 4, + [51975] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(780), 11, + ACTIONS(726), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53747,7 +50273,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(778), 25, + ACTIONS(724), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -53773,13 +50299,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [56889] = 4, + [52023] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1662), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53788,7 +50314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1678), 28, + ACTIONS(1660), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -53817,13 +50343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [56937] = 4, + [52071] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1684), 8, + ACTIONS(1666), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53832,7 +50358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1682), 28, + ACTIONS(1664), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -53861,111 +50387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [56985] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1646), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1648), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(752), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1650), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1652), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(750), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57053] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(744), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(742), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57101] = 4, + [52119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(740), 11, + ACTIONS(1670), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -53974,14 +50402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(738), 25, + ACTIONS(1668), 28, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -53990,26 +50424,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57149] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [52167] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(702), 11, + ACTIONS(730), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54021,7 +50449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(700), 25, + ACTIONS(728), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54047,13 +50475,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [57197] = 4, + [52215] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 11, + ACTIONS(734), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54065,7 +50493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(708), 25, + ACTIONS(732), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54091,57 +50519,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [57245] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1688), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1686), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [57293] = 4, + [52263] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 11, + ACTIONS(660), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54153,7 +50537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(734), 25, + ACTIONS(658), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54179,13 +50563,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [57341] = 4, + [52311] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1692), 8, + ACTIONS(1674), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54194,7 +50578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1690), 28, + ACTIONS(1672), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -54223,180 +50607,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [57389] = 8, + [52359] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(734), 19, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57445] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(734), 18, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + ACTIONS(1604), 1, anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57503] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1654), 1, + ACTIONS(1614), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(1600), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1644), 2, + ACTIONS(1602), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1648), 2, + ACTIONS(1608), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 2, + ACTIONS(1616), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(736), 3, + ACTIONS(738), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1650), 4, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 12, + ACTIONS(736), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [57567] = 6, + [52427] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(742), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(734), 21, + ACTIONS(740), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54412,19 +50695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [57619] = 4, + [52475] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 11, + ACTIONS(682), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54436,7 +50723,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(734), 25, + ACTIONS(680), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54462,13 +50749,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [57667] = 4, + [52523] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1696), 8, + ACTIONS(1678), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54477,7 +50764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1694), 28, + ACTIONS(1676), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -54506,13 +50793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [57715] = 4, + [52571] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1700), 8, + ACTIONS(786), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54521,20 +50808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1698), 28, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(784), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54543,20 +50824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [57763] = 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [52619] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(858), 11, + ACTIONS(782), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54568,7 +50855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(856), 25, + ACTIONS(780), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54594,212 +50881,94 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [57811] = 14, + [52667] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1646), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(690), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1648), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1704), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1650), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1702), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57879] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1646), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1648), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(826), 3, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1650), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1652), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(824), 10, + ACTIONS(688), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [57947] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1646), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_GT, - ACTIONS(1668), 1, anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1642), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1648), 2, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1708), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1650), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1652), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1706), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [58015] = 14, + [52715] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1646), 1, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1614), 1, anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(1600), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1644), 2, + ACTIONS(1602), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1648), 2, + ACTIONS(1608), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 2, + ACTIONS(1616), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(830), 3, + ACTIONS(766), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1650), 4, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(828), 10, + ACTIONS(764), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54810,13 +50979,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [58083] = 4, + [52783] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(706), 11, + ACTIONS(758), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54828,7 +50997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(704), 25, + ACTIONS(756), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54854,13 +51023,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [58131] = 4, + [52831] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(842), 11, + ACTIONS(1682), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -54869,14 +51038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(840), 25, + ACTIONS(1680), 28, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -54885,82 +51060,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [58179] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [52879] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(850), 11, + ACTIONS(1600), 2, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(848), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [58227] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(800), 11, - anon_sym_SLASH, + ACTIONS(758), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(798), 25, + ACTIONS(756), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -54976,77 +51107,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [58275] = 14, + [52931] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1646), 1, + ACTIONS(1606), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1614), 1, anon_sym_PIPE_GT, - ACTIONS(1668), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1642), 2, + ACTIONS(1600), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1644), 2, + ACTIONS(1602), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1648), 2, + ACTIONS(1608), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1656), 2, + ACTIONS(1616), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(812), 3, + ACTIONS(758), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1650), 4, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1652), 4, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1658), 4, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(810), 10, + ACTIONS(756), 11, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [58343] = 4, + [52997] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 11, + ACTIONS(750), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55058,7 +51184,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(794), 25, + ACTIONS(748), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -55084,13 +51210,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [58391] = 4, + [53045] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(821), 11, + ACTIONS(686), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55102,7 +51228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(818), 25, + ACTIONS(684), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -55128,57 +51254,64 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [58439] = 4, + [53093] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(846), 11, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(844), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1610), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(756), 14, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [58487] = 4, + [53155] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(804), 11, + ACTIONS(664), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55190,7 +51323,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(802), 25, + ACTIONS(662), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -55216,25 +51349,37 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [58535] = 4, + [53203] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(792), 11, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1618), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(790), 25, + ACTIONS(756), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -55247,48 +51392,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [58583] = 4, + [53261] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1712), 8, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1618), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1710), 28, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(756), 19, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55297,20 +51439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58631] = 4, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53317] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1716), 8, + ACTIONS(758), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55319,20 +51461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1714), 28, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(756), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55341,20 +51477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58679] = 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53365] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1720), 8, + ACTIONS(1686), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55363,7 +51505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1718), 28, + ACTIONS(1684), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -55392,101 +51534,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [58727] = 4, + [53413] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, + anon_sym_AMP_AMP, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1724), 8, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1690), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1722), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58775] = 4, + anon_sym_LT_GT, + ACTIONS(1688), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53481] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1606), 1, + anon_sym_AMP_AMP, + ACTIONS(1614), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1728), 8, + ACTIONS(1600), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1602), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1608), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1616), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1694), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1610), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1726), 28, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1612), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1618), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58823] = 4, + anon_sym_LT_GT, + ACTIONS(1692), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53549] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1732), 8, + ACTIONS(754), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55495,20 +51657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1730), 28, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(752), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55517,20 +51673,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58871] = 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53597] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1736), 8, + ACTIONS(790), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55539,20 +51701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1734), 28, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(788), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -55561,20 +51717,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_visibility_modifier, - sym_opacity_modifier, - [58919] = 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [53645] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1740), 8, + ACTIONS(1698), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -55583,7 +51745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1738), 28, + ACTIONS(1696), 28, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -55612,17 +51774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, sym_visibility_modifier, sym_opacity_modifier, - [58967] = 6, + [53693] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1746), 1, + ACTIONS(1704), 1, anon_sym_SLASH, - STATE(684), 1, + STATE(647), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1742), 14, + ACTIONS(1700), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -55637,7 +51799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1744), 19, + ACTIONS(1702), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -55657,17 +51819,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [59018] = 6, + [53744] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1752), 1, + ACTIONS(1704), 1, anon_sym_SLASH, - STATE(683), 1, + STATE(645), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1748), 14, + ACTIONS(1706), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -55682,7 +51844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1750), 19, + ACTIONS(1708), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -55702,58 +51864,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [59069] = 6, + [53795] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1746), 1, + ACTIONS(1714), 1, anon_sym_SLASH, - STATE(683), 1, + STATE(647), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1755), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1757), 19, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59120] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1748), 14, + ACTIONS(1710), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -55768,252 +51889,37 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1750), 20, + ACTIONS(1712), 19, anon_sym_if, anon_sym_import, anon_sym_as, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59166] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1759), 1, - anon_sym_LPAREN, - STATE(746), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(383), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(381), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [59216] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1765), 1, - anon_sym_LPAREN, - STATE(747), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1761), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1763), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59266] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1771), 1, - anon_sym_LPAREN, - STATE(786), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1767), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1769), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59315] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(559), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(557), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [59360] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(565), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(563), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [59405] = 4, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53846] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1773), 15, + ACTIONS(1710), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56024,9 +51930,11 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1775), 18, + ACTIONS(1712), 20, anon_sym_if, anon_sym_import, + anon_sym_as, + anon_sym_SLASH, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -56043,20 +51951,21 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [59450] = 6, + [53892] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1781), 1, - anon_sym_DOT, - ACTIONS(1783), 1, - anon_sym_as, + ACTIONS(1721), 1, + anon_sym_LPAREN, + STATE(676), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1777), 13, + ACTIONS(1717), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56067,7 +51976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1779), 18, + ACTIONS(1719), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -56086,13 +51995,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [59499] = 4, + [53942] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(710), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 9, + ACTIONS(383), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56102,10 +52015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(521), 24, + ACTIONS(381), 23, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -56127,14 +52039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59544] = 4, + [53992] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(1725), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 9, - anon_sym_DOT, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -56143,10 +52058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(525), 24, + ACTIONS(387), 23, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -56168,13 +52082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59589] = 4, + [54041] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(587), 9, + ACTIONS(574), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56184,7 +52098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(585), 24, + ACTIONS(572), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -56209,17 +52123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59634] = 6, + [54086] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(1785), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(570), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -56228,9 +52139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 23, + ACTIONS(568), 24, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -56252,97 +52164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59683] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1793), 1, - anon_sym_LPAREN, - STATE(780), 1, - sym__attribute_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1789), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1791), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59732] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1795), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1797), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [59777] = 4, + [54131] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 9, + ACTIONS(538), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56352,7 +52180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(545), 24, + ACTIONS(536), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -56377,14 +52205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59822] = 4, + [54176] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(1728), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(601), 9, - anon_sym_DOT, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -56393,10 +52224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(599), 24, + ACTIONS(387), 23, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -56418,13 +52248,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59867] = 4, + [54225] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(1736), 1, + anon_sym_DASH_GT, + STATE(792), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1732), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1734), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54276] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 9, + ACTIONS(596), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56434,7 +52308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(387), 24, + ACTIONS(594), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -56459,13 +52333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59912] = 4, + [54321] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(505), 9, + ACTIONS(592), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56475,7 +52349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(503), 24, + ACTIONS(590), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -56500,54 +52374,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [59957] = 4, + [54366] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 9, + ACTIONS(1738), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1740), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54411] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1746), 1, anon_sym_DOT, - anon_sym_SLASH, + ACTIONS(1748), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1742), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1744), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(579), 24, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54460] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [60002] = 4, + ACTIONS(1754), 1, + anon_sym_DASH_GT, + STATE(786), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1750), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1752), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54511] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(597), 9, + ACTIONS(518), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -56557,7 +52518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(595), 24, + ACTIONS(516), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -56582,17 +52543,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [60047] = 6, + [54556] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, + ACTIONS(1760), 1, anon_sym_LPAREN, - ACTIONS(1799), 1, - anon_sym_DOT, + STATE(728), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1756), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1758), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54605] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(584), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -56601,9 +52602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 23, + ACTIONS(582), 24, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -56625,17 +52627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [60096] = 6, + [54650] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1802), 1, + ACTIONS(1762), 1, anon_sym_LPAREN, - STATE(794), 1, + STATE(769), 1, sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1624), 13, + ACTIONS(1590), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -56649,7 +52651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1628), 18, + ACTIONS(1594), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -56668,16 +52670,18 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60145] = 4, + [54699] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1764), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56688,10 +52692,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1806), 19, + ACTIONS(1766), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -56708,17 +52711,102 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60189] = 4, + [54744] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(562), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(560), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54789] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(558), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(556), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54834] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1772), 1, + anon_sym_LPAREN, + STATE(760), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1808), 14, + ACTIONS(1768), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56729,7 +52817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1810), 18, + ACTIONS(1770), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -56748,15 +52836,156 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60233] = 5, + [54883] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(552), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(550), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54928] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1774), 1, + anon_sym_RBRACE, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1366), 1, + sym__pattern, + STATE(1393), 1, + sym_case_clause_pattern, + STATE(1472), 1, + sym_case_clause_patterns, + STATE(1865), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(795), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [55012] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(614), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(612), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55056] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(607), 1, + ACTIONS(1802), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1812), 13, + ACTIONS(1798), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -56770,7 +52999,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1814), 18, + ACTIONS(1800), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -56789,119 +53018,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60279] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1816), 1, - anon_sym_RBRACE, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1433), 1, - sym_case_clause_pattern, - STATE(1524), 1, - sym_case_clause_patterns, - STATE(1901), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(823), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [60363] = 24, + [55102] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(1840), 1, + ACTIONS(1804), 1, anon_sym_RBRACE, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1366), 1, sym__pattern, - STATE(1433), 1, + STATE(1393), 1, sym_case_clause_pattern, - STATE(1524), 1, + STATE(1472), 1, sym_case_clause_patterns, - STATE(1857), 1, + STATE(1914), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(823), 2, + STATE(795), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -56909,17 +53078,16 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [60447] = 4, + [55186] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1842), 14, + ACTIONS(1806), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56930,9 +53098,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1844), 18, + ACTIONS(1808), 19, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -56949,18 +53118,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60491] = 5, + [55230] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1850), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1846), 13, + ACTIONS(1810), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -56971,7 +53139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1848), 18, + ACTIONS(1812), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -56990,56 +53158,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60537] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(690), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(688), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [60581] = 4, + [55274] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1852), 13, + ACTIONS(1814), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -57050,10 +53179,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1854), 19, + ACTIONS(1816), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -57070,13 +53198,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60625] = 4, + [55318] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1856), 14, + ACTIONS(1818), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -57091,7 +53219,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1858), 18, + ACTIONS(1820), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57110,58 +53238,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60669] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(648), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(646), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [60713] = 6, + [55362] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1864), 1, - anon_sym_LBRACE, - ACTIONS(1866), 1, - anon_sym_DASH_GT, + ACTIONS(1826), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1860), 12, + ACTIONS(1822), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -57173,7 +53260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1862), 18, + ACTIONS(1824), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57192,175 +53279,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [60761] = 24, + [55408] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_float, ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - ACTIONS(1868), 1, - anon_sym_RBRACE, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1433), 1, - sym_case_clause_pattern, - STATE(1524), 1, - sym_case_clause_patterns, - STATE(1844), 1, - sym_case_clauses, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(823), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [60845] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1828), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1828), 1, sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - ACTIONS(1870), 1, - anon_sym_RBRACE, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1433), 1, - sym_case_clause_pattern, - STATE(1524), 1, - sym_case_clause_patterns, - STATE(1882), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(823), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [60929] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(668), 9, - anon_sym_DOT, - anon_sym_SLASH, + sym__upname, + ACTIONS(1830), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(666), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [60973] = 4, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55454] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(1840), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1872), 13, + ACTIONS(1834), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -57372,10 +53343,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1874), 19, + ACTIONS(1836), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -57392,13 +53362,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61017] = 4, + [55502] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1876), 13, + ACTIONS(1842), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -57412,7 +53382,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1878), 19, + ACTIONS(1844), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -57432,58 +53402,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61061] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(642), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [61105] = 5, + [55546] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1884), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1880), 13, + ACTIONS(1846), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -57494,7 +53423,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1882), 18, + ACTIONS(1848), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57513,104 +53442,21 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61151] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1886), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(682), 22, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [61199] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1890), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(660), 22, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [61247] = 4, + [55590] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(397), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1894), 14, + ACTIONS(1850), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -57618,7 +53464,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1896), 18, + ACTIONS(1852), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57637,59 +53483,119 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61291] = 24, + [55636] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(1898), 1, + ACTIONS(1854), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1366), 1, + sym__pattern, + STATE(1393), 1, + sym_case_clause_pattern, + STATE(1472), 1, + sym_case_clause_patterns, + STATE(1912), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(795), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [55720] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(1856), 1, anon_sym_RBRACE, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1366), 1, sym__pattern, - STATE(1433), 1, + STATE(1393), 1, sym_case_clause_pattern, - STATE(1524), 1, + STATE(1472), 1, sym_case_clause_patterns, - STATE(1943), 1, + STATE(1830), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(823), 2, + STATE(795), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -57697,60 +53603,59 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [61375] = 4, + [55804] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(670), 24, + ACTIONS(1858), 14, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [61419] = 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1860), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55848] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1900), 14, + ACTIONS(1862), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -57758,9 +53663,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1902), 18, + ACTIONS(1864), 19, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -57777,17 +53683,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61463] = 4, + [55892] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1904), 14, + ACTIONS(1866), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -57798,9 +53703,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1906), 18, + ACTIONS(1868), 19, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -57817,59 +53723,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61507] = 24, + [55936] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(1908), 1, + ACTIONS(1870), 1, anon_sym_RBRACE, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1366), 1, sym__pattern, - STATE(1433), 1, + STATE(1393), 1, sym_case_clause_pattern, - STATE(1524), 1, + STATE(1472), 1, sym_case_clause_patterns, - STATE(1944), 1, + STATE(1816), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(823), 2, + STATE(795), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -57877,22 +53783,20 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [61591] = 6, + [56020] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1914), 1, - anon_sym_LBRACE, - ACTIONS(1916), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1910), 12, + ACTIONS(1872), 14, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -57900,7 +53804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1912), 18, + ACTIONS(1874), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57919,13 +53823,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61639] = 4, + [56064] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1918), 14, + ACTIONS(1876), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -57940,7 +53844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1920), 18, + ACTIONS(1878), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -57959,17 +53863,18 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61683] = 5, + [56108] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1926), 1, - anon_sym_as, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(722), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1922), 13, + ACTIONS(1880), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -57981,7 +53886,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1924), 18, + ACTIONS(1882), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58000,14 +53905,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [61729] = 4, + [56156] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1884), 1, + anon_sym_LPAREN, + ACTIONS(1886), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 9, - anon_sym_DOT, + ACTIONS(646), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58016,8 +53924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(674), 23, - anon_sym_LBRACE, + ACTIONS(644), 22, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -58040,56 +53947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [61773] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1932), 1, - anon_sym_LBRACE, - ACTIONS(1934), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1928), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1930), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [61821] = 4, + [56204] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1890), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 9, - anon_sym_DOT, + ACTIONS(640), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58098,8 +53966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(656), 23, - anon_sym_LBRACE, + ACTIONS(638), 22, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -58122,15 +53989,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [61865] = 5, + [56252] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(1892), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1366), 1, + sym__pattern, + STATE(1393), 1, + sym_case_clause_pattern, + STATE(1472), 1, + sym_case_clause_patterns, + STATE(1788), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(795), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [56336] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1936), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(630), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58139,7 +54065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 23, + ACTIONS(628), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58163,59 +54089,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [61911] = 24, + [56380] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(1938), 1, + ACTIONS(1894), 1, anon_sym_RBRACE, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1366), 1, sym__pattern, - STATE(1433), 1, + STATE(1393), 1, sym_case_clause_pattern, - STATE(1524), 1, + STATE(1472), 1, sym_case_clause_patterns, - STATE(1960), 1, + STATE(1886), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(823), 2, + STATE(795), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -58223,55 +54149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [61995] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1940), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1942), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62039] = 5, + [56464] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1944), 1, + ACTIONS(1896), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58280,7 +54166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 23, + ACTIONS(387), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58304,15 +54190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62085] = 5, + [56510] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, + ACTIONS(1898), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58321,7 +54207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 23, + ACTIONS(387), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58345,55 +54231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62131] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1950), 1, - anon_sym_LBRACE, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1946), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1948), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62179] = 4, + [56556] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 9, + ACTIONS(622), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -58403,7 +54247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(650), 23, + ACTIONS(620), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58427,92 +54271,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62223] = 4, + [56600] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1954), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1956), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(389), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62267] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1660), 13, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(387), 23, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1662), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62310] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56646] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 8, + ACTIONS(610), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58521,9 +54327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(852), 23, + ACTIONS(608), 24, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -58545,15 +54352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62353] = 4, + [56690] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1958), 13, + ACTIONS(1900), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -58565,7 +54375,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1960), 18, + ACTIONS(1902), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58584,13 +54394,14 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62396] = 4, + [56738] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(792), 8, + ACTIONS(626), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58599,7 +54410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(790), 23, + ACTIONS(624), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58623,171 +54434,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62439] = 4, + [56782] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1962), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1964), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(602), 9, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62482] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1966), 13, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(600), 23, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1968), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62525] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56826] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1970), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1972), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(606), 9, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62568] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1974), 13, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(604), 23, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1976), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [62611] = 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56870] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1908), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1978), 13, + ACTIONS(1904), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -58799,7 +54537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1980), 18, + ACTIONS(1906), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58818,19 +54556,20 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62654] = 4, + [56918] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1982), 13, + ACTIONS(1912), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -58838,7 +54577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1984), 18, + ACTIONS(1914), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58857,16 +54596,57 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62697] = 4, + [56962] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(634), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(632), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57006] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1986), 13, + ACTIONS(1916), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -58877,7 +54657,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1988), 18, + ACTIONS(1918), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58896,13 +54676,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62740] = 4, + [57050] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(800), 8, + ACTIONS(790), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -58911,7 +54691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(798), 23, + ACTIONS(788), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -58935,13 +54715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62783] = 4, + [57093] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1990), 13, + ACTIONS(1920), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -58955,7 +54735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1992), 18, + ACTIONS(1922), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -58974,13 +54754,176 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62826] = 4, + [57136] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(732), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57179] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1926), 1, + anon_sym_DASH, + ACTIONS(1928), 1, + anon_sym_size, + ACTIONS(1934), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1924), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1932), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1504), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1930), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [57236] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(742), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(740), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57279] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(750), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(748), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57322] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1994), 13, + ACTIONS(1936), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -58994,7 +54937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1996), 18, + ACTIONS(1938), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59013,72 +54956,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [62869] = 24, + [57365] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1998), 1, - anon_sym_RPAREN, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2002), 1, - anon_sym_DOT_DOT, - ACTIONS(2004), 1, - sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1290), 1, - sym_identifier, - STATE(1316), 1, - sym_string, - STATE(1547), 1, - sym_record_pattern_argument, - STATE(1615), 1, - sym__pattern, - STATE(1847), 1, - sym_pattern_spread, - STATE(1897), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1309), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [62952] = 4, + ACTIONS(664), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(662), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57408] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 8, + ACTIONS(754), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -59087,7 +55010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(794), 23, + ACTIONS(752), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -59111,13 +55034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [62995] = 4, + [57451] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2006), 13, + ACTIONS(1940), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59131,7 +55054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2008), 18, + ACTIONS(1942), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59150,13 +55073,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63038] = 4, + [57494] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2010), 13, + ACTIONS(1944), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59170,7 +55093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2012), 18, + ACTIONS(1946), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59189,13 +55112,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63081] = 4, + [57537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2014), 13, + ACTIONS(1948), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59209,7 +55132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2016), 18, + ACTIONS(1950), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59228,13 +55151,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63124] = 4, + [57580] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1734), 13, + ACTIONS(1952), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59248,7 +55171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1736), 18, + ACTIONS(1954), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59267,13 +55190,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63167] = 4, + [57623] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1726), 13, + ACTIONS(1956), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59287,7 +55210,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1728), 18, + ACTIONS(1958), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59306,71 +55229,98 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63210] = 23, + [57666] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2018), 1, - anon_sym_RBRACE, - ACTIONS(2020), 1, - anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_LBRACK, - ACTIONS(2026), 1, - anon_sym_LT_LT, - ACTIONS(2029), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(758), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(2032), 1, - anon_sym_DQUOTE, - ACTIONS(2035), 1, - sym_float, - ACTIONS(2041), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(756), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57709] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, sym__decimal, - ACTIONS(2044), 1, - sym__discard_name, - ACTIONS(2047), 1, - sym__name, - ACTIONS(2050), 1, - sym__upname, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1433), 1, - sym_case_clause_pattern, - STATE(1524), 1, - sym_case_clause_patterns, + ACTIONS(1926), 1, + anon_sym_DASH, + ACTIONS(1934), 1, + anon_sym_unit, + ACTIONS(1962), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(769), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(2038), 3, + ACTIONS(1960), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + ACTIONS(1932), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1587), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, - sym_discard, - [63291] = 4, + sym__bit_string_segment_option, + ACTIONS(1930), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [57766] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1718), 13, + ACTIONS(1964), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59384,7 +55334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1720), 18, + ACTIONS(1966), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59403,13 +55353,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63334] = 4, + [57809] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2053), 13, + ACTIONS(1968), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59423,7 +55373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2055), 18, + ACTIONS(1970), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59442,13 +55392,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63377] = 4, + [57852] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1670), 13, + ACTIONS(1972), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59462,7 +55412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1672), 18, + ACTIONS(1974), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59481,91 +55431,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63420] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(821), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(818), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [63463] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(846), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(844), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [63506] = 4, + [57895] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1698), 13, + ACTIONS(1976), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59579,7 +55451,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1700), 18, + ACTIONS(1978), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59598,52 +55470,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63549] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(804), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(802), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [63592] = 4, + [57938] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2057), 13, + ACTIONS(1904), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59657,7 +55490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2059), 18, + ACTIONS(1906), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59676,52 +55509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63635] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(850), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(848), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [63678] = 4, + [57981] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2061), 13, + ACTIONS(1980), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59735,7 +55529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2063), 18, + ACTIONS(1982), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59754,13 +55548,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63721] = 4, + [58024] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(758), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(756), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [58067] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2065), 13, + ACTIONS(1984), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59774,7 +55607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2067), 18, + ACTIONS(1986), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59793,16 +55626,15 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63764] = 5, + [58110] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2073), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2069), 12, + ACTIONS(1988), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -59814,7 +55646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2071), 18, + ACTIONS(1990), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59833,52 +55665,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63809] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(842), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(840), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [63852] = 4, + [58153] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2075), 13, + ACTIONS(1992), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59892,7 +55685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2077), 18, + ACTIONS(1994), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59911,38 +55704,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63895] = 11, + [58196] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2083), 1, - anon_sym_size, - ACTIONS(2089), 1, + ACTIONS(1934), 1, anon_sym_unit, + ACTIONS(1998), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2079), 2, + ACTIONS(1996), 2, anon_sym_COMMA, anon_sym_GT_GT, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1562), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1529), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -59957,13 +55750,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [63952] = 4, + [58253] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2000), 1, + anon_sym_RPAREN, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(2006), 1, + sym_float, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, + sym_identifier, + STATE(1259), 1, + sym_string, + STATE(1491), 1, + sym__pattern, + STATE(1620), 1, + sym_record_pattern_argument, + STATE(1810), 1, + sym_pattern_spread, + STATE(1811), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1278), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [58336] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2091), 13, + ACTIONS(2008), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -59977,7 +55829,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2093), 18, + ACTIONS(2010), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -59996,13 +55848,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [63995] = 4, + [58379] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2095), 13, + ACTIONS(2012), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60016,7 +55868,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2097), 18, + ACTIONS(2014), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60035,13 +55887,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64038] = 4, + [58422] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 13, + ACTIONS(2016), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60055,7 +55907,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1948), 18, + ACTIONS(2018), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60074,13 +55926,91 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64081] = 4, + [58465] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(782), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(780), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [58508] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(786), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(784), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [58551] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2099), 13, + ACTIONS(2020), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60094,7 +56024,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2101), 18, + ACTIONS(2022), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60113,13 +56043,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64124] = 4, + [58594] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2103), 13, + ACTIONS(2024), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60133,7 +56063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2105), 18, + ACTIONS(2026), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60152,13 +56082,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64167] = 4, + [58637] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2107), 13, + ACTIONS(2028), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60172,7 +56102,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2109), 18, + ACTIONS(2030), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60191,13 +56121,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64210] = 4, + [58680] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 13, + ACTIONS(2032), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60211,7 +56141,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2113), 18, + ACTIONS(2034), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60230,13 +56160,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64253] = 4, + [58723] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2115), 13, + ACTIONS(2036), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60250,7 +56180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2117), 18, + ACTIONS(2038), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60269,7 +56199,53 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64296] = 24, + [58766] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1926), 1, + anon_sym_DASH, + ACTIONS(1928), 1, + anon_sym_size, + ACTIONS(1934), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2040), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1932), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1504), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1930), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [58823] = 24, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -60278,49 +56254,49 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, - anon_sym_DASH, ACTIONS(2002), 1, - anon_sym_DOT_DOT, + anon_sym_DASH, ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(2006), 1, sym_float, - ACTIONS(2119), 1, + ACTIONS(2042), 1, anon_sym_RPAREN, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1404), 1, - sym_record_pattern_argument, - STATE(1615), 1, + STATE(1491), 1, sym__pattern, - STATE(1894), 1, - sym_pattern_spread, - STATE(1897), 1, + STATE(1620), 1, + sym_record_pattern_argument, + STATE(1811), 1, sym_label, + STATE(1838), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -60328,13 +56304,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [64379] = 4, + [58906] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1686), 13, + ACTIONS(1676), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60348,7 +56324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1688), 18, + ACTIONS(1678), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60367,52 +56343,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64422] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(736), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(734), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [64465] = 4, + [58949] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1682), 13, + ACTIONS(2044), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60426,7 +56363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1684), 18, + ACTIONS(2046), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60445,13 +56382,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64508] = 4, + [58992] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1678), 13, + ACTIONS(2048), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60465,7 +56402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1680), 18, + ACTIONS(2050), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60484,13 +56421,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64551] = 4, + [59035] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(816), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(814), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59078] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2121), 13, + ACTIONS(2052), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60504,7 +56480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2123), 18, + ACTIONS(2054), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60523,59 +56499,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64594] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(2081), 1, - anon_sym_DASH, - ACTIONS(2089), 1, - anon_sym_unit, - ACTIONS(2127), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2125), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(2087), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1633), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(2085), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [64651] = 4, + [59121] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1710), 13, + ACTIONS(2056), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60589,7 +56519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1712), 18, + ACTIONS(2058), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60608,13 +56538,91 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64694] = 4, + [59164] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2129), 13, + ACTIONS(808), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(806), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59207] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(803), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(800), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59250] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2060), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60628,7 +56636,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2131), 18, + ACTIONS(2062), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60647,13 +56655,91 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64737] = 4, + [59293] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(798), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(796), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59336] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(794), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(792), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59379] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2133), 13, + ACTIONS(2064), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60667,7 +56753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2135), 18, + ACTIONS(2066), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60686,13 +56772,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64780] = 4, + [59422] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2137), 13, + ACTIONS(2068), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60706,7 +56792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2139), 18, + ACTIONS(2070), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60725,52 +56811,130 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64823] = 4, + [59465] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1694), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2072), 1, + anon_sym_RBRACE, + ACTIONS(2074), 1, anon_sym_POUND, + ACTIONS(2077), 1, anon_sym_LBRACK, + ACTIONS(2080), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(2083), 1, + anon_sym_DASH, + ACTIONS(2086), 1, anon_sym_DQUOTE, + ACTIONS(2089), 1, sym_float, + ACTIONS(2095), 1, + sym__decimal, + ACTIONS(2098), 1, + sym__discard_name, + ACTIONS(2101), 1, + sym__name, + ACTIONS(2104), 1, + sym__upname, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1366), 1, + sym__pattern, + STATE(1393), 1, + sym_case_clause_pattern, + STATE(1472), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(765), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(2092), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1696), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [59546] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(678), 1, sym__name, - [64866] = 4, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(2006), 1, + sym_float, + ACTIONS(2107), 1, + anon_sym_RPAREN, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, + sym_identifier, + STATE(1259), 1, + sym_string, + STATE(1368), 1, + sym_record_pattern_argument, + STATE(1491), 1, + sym__pattern, + STATE(1811), 1, + sym_label, + STATE(1812), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1278), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [59629] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 13, + ACTIONS(1656), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60784,7 +56948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2143), 18, + ACTIONS(1658), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60803,13 +56967,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64909] = 4, + [59672] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2145), 13, + ACTIONS(726), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(724), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59715] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1668), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60823,7 +57026,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2147), 18, + ACTIONS(1670), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60842,13 +57045,91 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64952] = 4, + [59758] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(660), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(658), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59801] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(730), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(728), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59844] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1690), 13, + ACTIONS(2109), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60862,7 +57143,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1692), 18, + ACTIONS(2111), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60881,13 +57162,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [64995] = 4, + [59887] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(690), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(688), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [59930] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2149), 13, + ACTIONS(2113), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60901,7 +57221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2151), 18, + ACTIONS(2115), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60920,13 +57240,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65038] = 4, + [59973] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1926), 1, + anon_sym_DASH, + ACTIONS(1934), 1, + anon_sym_unit, + ACTIONS(1962), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2117), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1932), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1587), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1930), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [60030] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2153), 13, + ACTIONS(2119), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -60940,7 +57306,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2155), 18, + ACTIONS(2121), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -60959,38 +57325,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65081] = 11, + [60073] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2089), 1, + ACTIONS(1934), 1, anon_sym_unit, - ACTIONS(2159), 1, + ACTIONS(1998), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2123), 2, anon_sym_COMMA, anon_sym_GT_GT, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1542), 5, + STATE(1529), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -61005,13 +57371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [65138] = 4, + [60130] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1680), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61025,7 +57391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1676), 18, + ACTIONS(1682), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61044,13 +57410,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65181] = 4, + [60173] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2161), 13, + ACTIONS(1684), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61064,7 +57430,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2163), 18, + ACTIONS(1686), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61083,59 +57449,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65224] = 11, + [60216] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(2081), 1, - anon_sym_DASH, - ACTIONS(2089), 1, - anon_sym_unit, - ACTIONS(2127), 1, - anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2165), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, + ACTIONS(1652), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1633), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(2085), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [65281] = 4, + sym__upname, + ACTIONS(1654), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [60259] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2167), 13, + ACTIONS(2125), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61149,7 +57508,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2169), 18, + ACTIONS(2127), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61168,13 +57527,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65324] = 4, + [60302] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2171), 13, + ACTIONS(2129), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61188,7 +57547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2173), 18, + ACTIONS(2131), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61207,13 +57566,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65367] = 4, + [60345] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2175), 13, + ACTIONS(1672), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61227,7 +57586,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2177), 18, + ACTIONS(1674), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61246,150 +57605,91 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65410] = 24, + [60388] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(101), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(1818), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1628), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2002), 1, - anon_sym_DOT_DOT, - ACTIONS(2004), 1, + anon_sym_BANG, + anon_sym_DQUOTE, sym_float, - ACTIONS(2179), 1, - anon_sym_RPAREN, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1290), 1, - sym_identifier, - STATE(1316), 1, - sym_string, - STATE(1547), 1, - sym_record_pattern_argument, - STATE(1615), 1, - sym__pattern, - STATE(1897), 1, - sym_label, - STATE(1962), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [65493] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(736), 8, - anon_sym_SLASH, + sym__upname, + ACTIONS(1630), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(734), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [65536] = 4, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [60431] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(708), 23, + ACTIONS(1640), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [65579] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1642), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [60474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 13, + ACTIONS(2133), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61403,7 +57703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2183), 18, + ACTIONS(2135), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61422,13 +57722,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65622] = 4, + [60517] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2185), 13, + ACTIONS(2137), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61442,7 +57742,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2187), 18, + ACTIONS(2139), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61461,156 +57761,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65665] = 11, + [60560] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(2081), 1, - anon_sym_DASH, - ACTIONS(2089), 1, - anon_sym_unit, - ACTIONS(2159), 1, - anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2189), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(2087), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1542), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(2085), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [65722] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(2141), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1828), 1, sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - ACTIONS(2191), 1, - anon_sym_RBRACE, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1433), 1, - sym_case_clause_pattern, - STATE(1524), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(769), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [65803] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(702), 8, - anon_sym_SLASH, + sym__upname, + ACTIONS(2143), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(700), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [65846] = 4, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [60603] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1664), 13, + ACTIONS(1696), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61624,7 +57820,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1666), 18, + ACTIONS(1698), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61643,91 +57839,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [65889] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(740), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(738), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [65932] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(744), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(742), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [65975] = 4, + [60646] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 13, + ACTIONS(1620), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61741,7 +57859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2195), 18, + ACTIONS(1622), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61760,52 +57878,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66018] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(780), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(778), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [66061] = 4, + [60689] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2197), 13, + ACTIONS(1632), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61819,7 +57898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2199), 18, + ACTIONS(1634), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61838,91 +57917,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66104] = 4, + [60732] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(782), 23, + ACTIONS(2145), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [66147] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(788), 8, - anon_sym_SLASH, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2147), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(786), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [66190] = 4, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [60775] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2201), 13, + ACTIONS(1624), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61936,7 +57976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2203), 18, + ACTIONS(1626), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61955,13 +57995,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66233] = 4, + [60818] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2205), 13, + ACTIONS(1636), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -61975,7 +58015,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2207), 18, + ACTIONS(1638), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -61994,98 +58034,71 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66276] = 4, + [60861] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(838), 8, - anon_sym_SLASH, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(836), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [66319] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(97), 1, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(2081), 1, - anon_sym_DASH, - ACTIONS(2083), 1, - anon_sym_size, - ACTIONS(2089), 1, - anon_sym_unit, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(2149), 1, + anon_sym_RBRACE, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1366), 1, + sym__pattern, + STATE(1393), 1, + sym_case_clause_pattern, + STATE(1472), 1, + sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2209), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(95), 3, + STATE(765), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1562), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - sym__bit_string_segment_option, - ACTIONS(2085), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [66376] = 4, + sym_discard, + [60942] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 13, + ACTIONS(1644), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -62099,7 +58112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2213), 18, + ACTIONS(1646), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -62118,13 +58131,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66419] = 4, + [60985] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1714), 13, + ACTIONS(1648), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -62138,7 +58151,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1716), 18, + ACTIONS(1650), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -62157,13 +58170,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66462] = 4, + [61028] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 13, + ACTIONS(2151), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -62177,7 +58190,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(2217), 18, + ACTIONS(2153), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -62196,13 +58209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66505] = 4, + [61071] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1722), 13, + ACTIONS(1664), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -62216,7 +58229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1724), 18, + ACTIONS(1666), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -62235,13 +58248,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66548] = 4, + [61114] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1738), 13, + ACTIONS(1660), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -62255,7 +58268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1740), 18, + ACTIONS(1662), 18, anon_sym_if, anon_sym_import, anon_sym_type, @@ -62274,97 +58287,218 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [66591] = 4, + [61157] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1730), 13, - ts_builtin_sym_end, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(768), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [61217] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(810), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [61277] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(2175), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2177), 1, anon_sym_POUND, + ACTIONS(2179), 1, anon_sym_LBRACK, + ACTIONS(2181), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2183), 1, + anon_sym_DASH, + ACTIONS(2185), 1, sym_float, + STATE(1059), 1, + sym_identifier, + STATE(1073), 1, + sym__case_clause_guard_binary_expression, + STATE(1074), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1028), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1732), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [66634] = 5, + STATE(1082), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [61349] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2223), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2219), 12, - ts_builtin_sym_end, - anon_sym_AT, + ACTIONS(2177), 1, anon_sym_POUND, + ACTIONS(2179), 1, anon_sym_LBRACK, + ACTIONS(2181), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2183), 1, + anon_sym_DASH, + ACTIONS(2187), 1, sym_float, + STATE(1059), 1, + sym_identifier, + STATE(1073), 1, + sym__case_clause_guard_binary_expression, + STATE(1074), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1028), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(2221), 18, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [66679] = 11, + STATE(1083), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [61421] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2089), 1, - anon_sym_unit, - ACTIONS(2127), 1, + ACTIONS(1928), 1, anon_sym_size, - STATE(1665), 1, + ACTIONS(1934), 1, + anon_sym_unit, + STATE(1769), 1, sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, @@ -62373,17 +58507,17 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1429), 5, + STATE(1422), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -62398,48 +58532,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [66735] = 19, + [61477] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2177), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2181), 1, anon_sym_LT_LT, - ACTIONS(2233), 1, + ACTIONS(2183), 1, + anon_sym_DASH, + ACTIONS(2189), 1, sym_float, - STATE(1102), 1, + STATE(1059), 1, sym_identifier, - STATE(1136), 1, - sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1073), 1, sym__case_clause_guard_binary_expression, + STATE(1074), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(1028), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1105), 11, + STATE(1085), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62451,48 +58585,48 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [66807] = 19, + [61549] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(241), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(249), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(251), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2177), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2181), 1, anon_sym_LT_LT, - ACTIONS(2235), 1, + ACTIONS(2183), 1, + anon_sym_DASH, + ACTIONS(2191), 1, sym_float, - STATE(1102), 1, + STATE(1059), 1, sym_identifier, - STATE(1136), 1, - sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1073), 1, sym__case_clause_guard_binary_expression, + STATE(1074), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(1028), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(245), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1113), 11, + STATE(1086), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62504,7 +58638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [66879] = 19, + [61621] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(241), 1, @@ -62515,37 +58649,37 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(251), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2193), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2237), 1, + ACTIONS(2201), 1, sym_float, - STATE(1102), 1, + STATE(1052), 1, sym_identifier, - STATE(1136), 1, + STATE(1090), 1, sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1091), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(1108), 11, + STATE(1092), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62557,7 +58691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [66951] = 19, + [61693] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -62568,37 +58702,37 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(2239), 1, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2177), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, + ACTIONS(2181), 1, anon_sym_LT_LT, - ACTIONS(2247), 1, + ACTIONS(2183), 1, anon_sym_DASH, - ACTIONS(2249), 1, + ACTIONS(2203), 1, sym_float, - STATE(1098), 1, + STATE(1059), 1, sym_identifier, - STATE(1116), 1, + STATE(1073), 1, sym__case_clause_guard_binary_expression, - STATE(1117), 1, + STATE(1074), 1, sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1046), 2, + STATE(1028), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1126), 11, + STATE(1101), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62610,46 +58744,46 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [67023] = 13, + [61765] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(750), 7, + ACTIONS(696), 7, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -62657,7 +58791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_DOT_DOT, - [67083] = 19, + [61825] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -62668,37 +58802,37 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(2239), 1, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2177), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, + ACTIONS(2181), 1, anon_sym_LT_LT, - ACTIONS(2247), 1, + ACTIONS(2183), 1, anon_sym_DASH, - ACTIONS(2271), 1, + ACTIONS(2205), 1, sym_float, - STATE(1098), 1, + STATE(1059), 1, sym_identifier, - STATE(1116), 1, + STATE(1073), 1, sym__case_clause_guard_binary_expression, - STATE(1117), 1, + STATE(1074), 1, sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1046), 2, + STATE(1028), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1131), 11, + STATE(1088), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62710,7 +58844,54 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [67155] = 19, + [61897] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(764), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [61957] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(241), 1, @@ -62721,37 +58902,37 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(251), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2193), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2273), 1, + ACTIONS(2207), 1, sym_float, - STATE(1102), 1, + STATE(1052), 1, sym_identifier, - STATE(1136), 1, + STATE(1090), 1, sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1091), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(1109), 11, + STATE(1094), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -62763,13 +58944,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [67227] = 4, + [62029] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(586), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 9, + ACTIONS(399), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -62778,14 +58962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE, - ACTIONS(579), 21, - anon_sym_if, + ACTIONS(397), 20, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOT, + anon_sym_RPAREN, anon_sym_as, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62801,372 +58982,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [67269] = 13, + anon_sym_DOT_DOT, + [62073] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(828), 7, + ACTIONS(736), 7, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [67329] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(241), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - sym__decimal, - ACTIONS(249), 1, - sym__name, - ACTIONS(251), 1, - sym__upname, - ACTIONS(1122), 1, - anon_sym_BANG, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(2225), 1, - anon_sym_LBRACE, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2275), 1, - sym_float, - STATE(1102), 1, - sym_identifier, - STATE(1136), 1, - sym__case_clause_tuple_access, - STATE(1137), 1, - sym__case_clause_guard_binary_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(245), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1110), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67401] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_LT_LT, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2277), 1, - sym_float, - STATE(1098), 1, - sym_identifier, - STATE(1116), 1, - sym__case_clause_guard_binary_expression, - STATE(1117), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1046), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1119), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67473] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_LT_LT, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2279), 1, - sym_float, - STATE(1098), 1, - sym_identifier, - STATE(1116), 1, - sym__case_clause_guard_binary_expression, - STATE(1117), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1046), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1124), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67545] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_LT_LT, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2281), 1, - sym_float, - STATE(1098), 1, - sym_identifier, - STATE(1116), 1, - sym__case_clause_guard_binary_expression, - STATE(1117), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1046), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1125), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67617] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_LT_LT, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2283), 1, - sym_float, - STATE(1098), 1, - sym_identifier, - STATE(1116), 1, - sym__case_clause_guard_binary_expression, - STATE(1117), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1046), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1127), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67689] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(718), 1, - anon_sym_BANG, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - anon_sym_LBRACK, - ACTIONS(2245), 1, - anon_sym_LT_LT, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2285), 1, - sym_float, - STATE(1098), 1, - sym_identifier, - STATE(1116), 1, - sym__case_clause_guard_binary_expression, - STATE(1117), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1046), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1128), 11, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_boolean_negation, - sym_string, - sym_integer, - [67761] = 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [62133] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -63177,37 +59041,37 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(718), 1, + ACTIONS(672), 1, anon_sym_BANG, - ACTIONS(2239), 1, + ACTIONS(2175), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2177), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2245), 1, + ACTIONS(2181), 1, anon_sym_LT_LT, - ACTIONS(2247), 1, + ACTIONS(2183), 1, anon_sym_DASH, - ACTIONS(2287), 1, + ACTIONS(2209), 1, sym_float, - STATE(1098), 1, + STATE(1059), 1, sym_identifier, - STATE(1116), 1, + STATE(1073), 1, sym__case_clause_guard_binary_expression, - STATE(1117), 1, + STATE(1074), 1, sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1046), 2, + STATE(1028), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1129), 11, + STATE(1063), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -63219,79 +59083,166 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [67833] = 13, + [62205] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 9, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(572), 21, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [62247] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 6, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(756), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DOT_DOT, + [62293] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(810), 7, + ACTIONS(756), 8, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT_GT, + anon_sym_PIPE_PIPE, anon_sym_DOT_DOT, - [67893] = 8, + [62351] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2267), 2, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(736), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2269), 4, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 16, + ACTIONS(756), 9, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -63300,89 +59251,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DOT_DOT, - [67943] = 13, + [62407] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(814), 7, + ACTIONS(756), 11, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DOT_DOT, - [68003] = 9, + [62461] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(736), 4, + ACTIONS(758), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 15, + ACTIONS(756), 15, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -63398,7 +59339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_DOT_DOT, - [68055] = 19, + [62513] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(241), 1, @@ -63409,37 +59350,132 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(251), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2193), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2289), 1, + ACTIONS(2211), 1, + sym_float, + STATE(1052), 1, + sym_identifier, + STATE(1090), 1, + sym__case_clause_tuple_access, + STATE(1091), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1098), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [62585] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 16, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DOT_DOT, + [62635] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(249), 1, + sym__name, + ACTIONS(251), 1, + sym__upname, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(2193), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2213), 1, sym_float, - STATE(1102), 1, + STATE(1052), 1, sym_identifier, - STATE(1136), 1, + STATE(1090), 1, sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1091), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(1114), 11, + STATE(1099), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -63451,7 +59487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [68127] = 19, + [62707] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(241), 1, @@ -63462,37 +59498,90 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(251), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1164), 1, anon_sym_BANG, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(2225), 1, + ACTIONS(2193), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2291), 1, + ACTIONS(2215), 1, + sym_float, + STATE(1052), 1, + sym_identifier, + STATE(1090), 1, + sym__case_clause_tuple_access, + STATE(1091), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1100), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [62779] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(249), 1, + sym__name, + ACTIONS(251), 1, + sym__upname, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(2193), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2217), 1, sym_float, - STATE(1102), 1, + STATE(1052), 1, sym_identifier, - STATE(1136), 1, + STATE(1090), 1, sym__case_clause_tuple_access, - STATE(1137), 1, + STATE(1091), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(245), 3, sym__hex, sym__octal, sym__binary, - STATE(1115), 11, + STATE(1102), 11, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -63504,19 +59593,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_negation, sym_string, sym_integer, - [68199] = 11, + [62851] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2083), 1, - anon_sym_size, - ACTIONS(2089), 1, + ACTIONS(1934), 1, anon_sym_unit, - STATE(1735), 1, - sym_expression_bit_string_segment_options, + ACTIONS(1998), 1, + anon_sym_size, + STATE(1734), 1, + sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -63524,17 +59613,17 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1474), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1411), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -63549,19 +59638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [68255] = 11, + [62907] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2089), 1, + ACTIONS(1934), 1, anon_sym_unit, - ACTIONS(2159), 1, + ACTIONS(1962), 1, anon_sym_size, - STATE(1751), 1, - sym_constant_bit_string_segment_options, + STATE(1719), 1, + sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -63569,17 +59658,17 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1443), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(1421), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -63594,311 +59683,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [68311] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(824), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [68371] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(509), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(609), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(607), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [68415] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(734), 18, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DOT_DOT, - [68461] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 11, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DOT_DOT, - [68515] = 11, + [62963] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(249), 1, + sym__name, + ACTIONS(251), 1, + sym__upname, + ACTIONS(1164), 1, + anon_sym_BANG, + ACTIONS(1782), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 9, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - [68571] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, + ACTIONS(2193), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2219), 1, + sym_float, + STATE(1052), 1, + sym_identifier, + STATE(1090), 1, + sym__case_clause_tuple_access, + STATE(1091), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_DOT_DOT, - [68629] = 10, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1103), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [63035] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(672), 1, + anon_sym_BANG, + ACTIONS(2175), 1, + anon_sym_LBRACE, + ACTIONS(2177), 1, + anon_sym_POUND, + ACTIONS(2179), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_LT_LT, + ACTIONS(2183), 1, anon_sym_DASH, - ACTIONS(2083), 1, - anon_sym_size, - ACTIONS(2089), 1, - anon_sym_unit, + ACTIONS(2221), 1, + sym_float, + STATE(1059), 1, + sym_identifier, + STATE(1073), 1, + sym__case_clause_guard_binary_expression, + STATE(1074), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, + STATE(1028), 2, + sym_constructor_name, + sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1562), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1078), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(2085), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [68682] = 22, + [63107] = 22, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -63909,43 +59800,43 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2293), 1, + ACTIONS(2223), 1, anon_sym_RBRACK, - ACTIONS(2295), 1, + ACTIONS(2225), 1, anon_sym_DOT_DOT, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1396), 1, + STATE(1302), 1, sym__pattern, - STATE(1938), 1, + STATE(1806), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -63953,17 +59844,17 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [68759] = 10, + [63184] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2089), 1, - anon_sym_unit, - ACTIONS(2127), 1, + ACTIONS(1928), 1, anon_sym_size, + ACTIONS(1934), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -63971,17 +59862,17 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1633), 5, + STATE(1504), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -63996,16 +59887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [68812] = 10, + [63237] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(2089), 1, + ACTIONS(1934), 1, anon_sym_unit, - ACTIONS(2159), 1, + ACTIONS(1962), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, @@ -64014,17 +59905,17 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - ACTIONS(2087), 3, + ACTIONS(1932), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1542), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(1587), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(2085), 14, + ACTIONS(1930), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -64039,7 +59930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [68865] = 22, + [63290] = 22, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64050,43 +59941,43 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2295), 1, + ACTIONS(2225), 1, anon_sym_DOT_DOT, - ACTIONS(2297), 1, + ACTIONS(2227), 1, anon_sym_RBRACK, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1351), 1, + STATE(1350), 1, sym__pattern, - STATE(1833), 1, + STATE(1877), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64094,53 +59985,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [68942] = 21, + [63367] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2299), 1, + ACTIONS(2229), 1, anon_sym_if, - STATE(1256), 1, + ACTIONS(2231), 1, + anon_sym_DASH_GT, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1351), 1, + STATE(1366), 1, sym__pattern, + STATE(1618), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2301), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64148,54 +60040,53 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69017] = 22, + [63444] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2303), 1, + ACTIONS(2233), 1, anon_sym_if, - ACTIONS(2305), 1, - anon_sym_DASH_GT, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1302), 1, sym__pattern, - STATE(1554), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + ACTIONS(2235), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64203,53 +60094,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69094] = 21, + [63519] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - ACTIONS(2307), 1, - anon_sym_if, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1255), 1, sym_identifier, - STATE(1342), 1, + STATE(1259), 1, sym_string, - STATE(1351), 1, + STATE(1585), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2309), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + ACTIONS(2237), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64257,7 +60147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69169] = 20, + [63592] = 22, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64268,41 +60158,43 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(1256), 1, + ACTIONS(2225), 1, + anon_sym_DOT_DOT, + ACTIONS(2239), 1, + anon_sym_RBRACK, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1544), 1, + STATE(1302), 1, sym__pattern, + STATE(1786), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(2311), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64310,54 +60202,97 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69242] = 22, + [63669] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1818), 1, + ACTIONS(1926), 1, + anon_sym_DASH, + ACTIONS(1934), 1, + anon_sym_unit, + ACTIONS(1998), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1932), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1529), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1930), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [63722] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2241), 1, + anon_sym_LT_DASH, + ACTIONS(2243), 1, sym_float, - ACTIONS(2295), 1, - anon_sym_DOT_DOT, - ACTIONS(2313), 1, - anon_sym_RBRACK, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1281), 1, sym_identifier, - STATE(1316), 1, + STATE(1296), 1, sym_string, - STATE(1351), 1, + STATE(1430), 1, sym__pattern, - STATE(1932), 1, - sym_list_pattern_tail, + STATE(1435), 1, + sym_use_assignment, + STATE(1867), 1, + sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(95), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1353), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64365,54 +60300,53 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69319] = 22, + [63799] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1826), 1, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2315), 1, - anon_sym_LT_DASH, - ACTIONS(2317), 1, - sym_float, - STATE(1256), 1, + ACTIONS(2245), 1, + anon_sym_if, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1454), 1, + STATE(1302), 1, sym__pattern, - STATE(1552), 1, - sym_use_assignment, - STATE(1835), 1, - sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + ACTIONS(2247), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1415), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64420,54 +60354,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69396] = 22, + [63874] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1824), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(1786), 1, sym_float, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2319), 1, + ACTIONS(2249), 1, anon_sym_if, - ACTIONS(2321), 1, + ACTIONS(2251), 1, anon_sym_DASH_GT, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1410), 1, + STATE(1366), 1, sym__pattern, - STATE(1554), 1, + STATE(1618), 1, sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1386), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64475,54 +60409,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69473] = 22, + [63951] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2317), 1, + ACTIONS(2243), 1, sym_float, - ACTIONS(2323), 1, + ACTIONS(2253), 1, anon_sym_LT_DASH, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1454), 1, + STATE(1430), 1, sym__pattern, - STATE(1552), 1, + STATE(1435), 1, sym_use_assignment, - STATE(1875), 1, + STATE(1894), 1, sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1415), 7, + STATE(1353), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64530,52 +60464,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69550] = 21, + [64028] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2317), 1, + ACTIONS(2243), 1, sym_float, - ACTIONS(2325), 1, + ACTIONS(2255), 1, anon_sym_LT_DASH, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1454), 1, + STATE(1430), 1, sym__pattern, - STATE(1690), 1, + STATE(1740), 1, sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1415), 7, + STATE(1353), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64583,52 +60517,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69624] = 21, + [64102] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, anon_sym_DQUOTE, ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, + sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(1256), 1, + ACTIONS(2257), 1, + anon_sym_GT_GT, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1547), 1, - sym_record_pattern_argument, - STATE(1615), 1, + STATE(1560), 1, sym__pattern, - STATE(1897), 1, - sym_label, + STATE(1768), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64636,7 +60570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69698] = 21, + [64176] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64647,41 +60581,41 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2327), 1, + ACTIONS(2259), 1, anon_sym_GT_GT, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1582), 1, - sym__pattern, - STATE(1723), 1, + STATE(1549), 1, sym_pattern_bit_string_segment, + STATE(1560), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64689,52 +60623,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69772] = 21, + [64250] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1826), 1, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(1794), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2317), 1, + ACTIONS(2243), 1, sym_float, - ACTIONS(2329), 1, + ACTIONS(2261), 1, anon_sym_LT_DASH, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1304), 1, + STATE(1281), 1, sym_identifier, - STATE(1342), 1, + STATE(1296), 1, sym_string, - STATE(1454), 1, + STATE(1430), 1, sym__pattern, - STATE(1690), 1, + STATE(1740), 1, sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1415), 7, + STATE(1353), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64742,7 +60676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69846] = 21, + [64324] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64753,41 +60687,41 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2331), 1, - anon_sym_GT_GT, - STATE(1256), 1, + ACTIONS(2263), 1, + anon_sym_assert, + STATE(781), 1, + sym__assignment, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1582), 1, + STATE(1460), 1, sym__pattern, - STATE(1645), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64795,7 +60729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69920] = 21, + [64398] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64806,41 +60740,94 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2333), 1, + ACTIONS(2265), 1, anon_sym_GT_GT, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1582), 1, + STATE(1560), 1, sym__pattern, - STATE(1723), 1, + STATE(1768), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1278), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [64472] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2006), 1, + sym_float, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, + sym_identifier, + STATE(1259), 1, + sym_string, + STATE(1491), 1, + sym__pattern, + STATE(1620), 1, + sym_record_pattern_argument, + STATE(1811), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64848,7 +60835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [69994] = 21, + [64546] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -64859,41 +60846,41 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2335), 1, + ACTIONS(2267), 1, anon_sym_assert, - STATE(1103), 1, + STATE(1054), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1553), 1, + STATE(1445), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64901,52 +60888,232 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70068] = 21, + [64620] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN, + STATE(926), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(383), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(381), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64663] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2271), 1, + anon_sym_COMMA, + ACTIONS(2273), 1, + anon_sym_RBRACK, + ACTIONS(2275), 1, + anon_sym_DOT_DOT, + STATE(1374), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64726] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2006), 1, + sym_float, + STATE(169), 1, + sym__assignment, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, + sym_identifier, + STATE(1259), 1, + sym_string, + STATE(1460), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1278), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [64797] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2277), 1, + anon_sym_COMMA, + ACTIONS(2279), 1, + anon_sym_RBRACK, + ACTIONS(2281), 1, + anon_sym_DOT_DOT, + STATE(1429), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64860] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(1782), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, sym_float, - ACTIONS(2337), 1, - anon_sym_assert, - STATE(771), 1, - sym__assignment, - STATE(1256), 1, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1281), 1, sym_identifier, - STATE(1316), 1, + STATE(1296), 1, sym_string, - STATE(1545), 1, + STATE(1366), 1, sym__pattern, + STATE(1618), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(95), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1312), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -64954,50 +61121,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70142] = 20, + [64931] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2243), 1, sym_float, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1281), 1, sym_identifier, - STATE(1316), 1, + STATE(1296), 1, sym_string, - STATE(1582), 1, + STATE(1430), 1, sym__pattern, - STATE(1723), 1, - sym_pattern_bit_string_segment, + STATE(1740), 1, + sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(95), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1353), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65005,7 +61172,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70213] = 20, + [65002] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2283), 1, + anon_sym_COMMA, + ACTIONS(2285), 1, + anon_sym_RBRACK, + ACTIONS(2287), 1, + anon_sym_DOT_DOT, + STATE(1384), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [65065] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65016,39 +61230,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(1053), 1, + STATE(407), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1593), 1, + STATE(1548), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65056,101 +61270,98 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70284] = 16, + [65136] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2339), 1, + ACTIONS(2289), 1, anon_sym_COMMA, - ACTIONS(2341), 1, + ACTIONS(2291), 1, anon_sym_RBRACK, - ACTIONS(2343), 1, + ACTIONS(2293), 1, anon_sym_DOT_DOT, - STATE(1422), 1, + STATE(1424), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [70347] = 16, + [65199] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2345), 1, - anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_RBRACK, - ACTIONS(2349), 1, - anon_sym_DOT_DOT, - STATE(1430), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [70410] = 20, + ACTIONS(2295), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [65256] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65161,90 +61372,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2351), 1, + ACTIONS(2297), 1, anon_sym_RPAREN, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1595), 1, + STATE(1482), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [70481] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1410), 1, - sym__pattern, - STATE(1554), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1386), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65252,7 +61412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70552] = 20, + [65327] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65263,39 +61423,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(667), 1, + STATE(679), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1627), 1, + STATE(1604), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65303,7 +61463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70623] = 20, + [65398] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65314,39 +61474,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(352), 1, - sym__assignment, - STATE(1256), 1, + ACTIONS(2299), 1, + anon_sym_RPAREN, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1570), 1, + STATE(1302), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65354,7 +61514,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70694] = 20, + [65469] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2301), 1, + anon_sym_COMMA, + ACTIONS(2303), 1, + anon_sym_RBRACK, + ACTIONS(2305), 1, + anon_sym_DOT_DOT, + STATE(1391), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [65532] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(2307), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(640), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(638), 17, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [65575] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65365,39 +61609,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(725), 1, + STATE(755), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1634), 1, + STATE(1548), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65405,7 +61649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70765] = 20, + [65646] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65416,39 +61660,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(1088), 1, + STATE(1039), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1656), 1, + STATE(1592), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65456,54 +61700,44 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70836] = 16, + [65717] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2353), 1, - anon_sym_COMMA, - ACTIONS(2355), 1, - anon_sym_RBRACK, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - STATE(1468), 1, - aux_sym_tuple_repeat1, + ACTIONS(1884), 1, + anon_sym_LPAREN, + ACTIONS(2309), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(646), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(644), 17, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [70899] = 20, + [65760] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65514,39 +61748,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(527), 1, + STATE(511), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1656), 1, + STATE(1444), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65554,7 +61788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [70970] = 20, + [65831] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65565,39 +61799,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2359), 1, - anon_sym_RPAREN, - STATE(1256), 1, + STATE(1024), 1, + sym__assignment, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1351), 1, + STATE(1444), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65605,138 +61839,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71041] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2361), 1, - anon_sym_LPAREN, - STATE(994), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(383), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(381), 17, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71084] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2363), 1, - anon_sym_COMMA, - ACTIONS(2365), 1, - anon_sym_RBRACK, - ACTIONS(2367), 1, - anon_sym_DOT_DOT, - STATE(1431), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71147] = 16, + [65902] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2369), 1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2371), 1, + ACTIONS(2313), 1, anon_sym_RBRACK, - ACTIONS(2373), 1, + ACTIONS(2315), 1, anon_sym_DOT_DOT, - STATE(1459), 1, + STATE(1427), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [71210] = 20, + [65965] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65747,39 +61897,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(158), 1, + STATE(755), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1634), 1, + STATE(1453), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65787,58 +61937,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71281] = 20, + [66036] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, ACTIONS(2317), 1, - sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1454), 1, - sym__pattern, - STATE(1690), 1, - sym_use_assignment, + anon_sym_COMMA, + ACTIONS(2319), 1, + anon_sym_RBRACK, + ACTIONS(2321), 1, + anon_sym_DOT_DOT, + STATE(1399), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1415), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [71352] = 20, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [66099] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65849,39 +61995,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - ACTIONS(2375), 1, - anon_sym_RPAREN, - STATE(1256), 1, + STATE(407), 1, + sym__assignment, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1351), 1, + STATE(1445), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65889,54 +62035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71423] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2377), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_RBRACK, - ACTIONS(2381), 1, - anon_sym_DOT_DOT, - STATE(1420), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71486] = 20, + [66170] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65947,39 +62046,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(759), 1, + STATE(133), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1570), 1, + STATE(1604), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -65987,7 +62086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71557] = 20, + [66241] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -65998,39 +62097,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(759), 1, + STATE(611), 1, sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1548), 1, + STATE(1509), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -66038,125 +62137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71628] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(2383), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [71685] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1886), 1, - anon_sym_LPAREN, - ACTIONS(2385), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(682), 17, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71728] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1890), 1, - anon_sym_LPAREN, - ACTIONS(2387), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(660), 17, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [71771] = 20, + [66312] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -66167,39 +62148,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(352), 1, - sym__assignment, - STATE(1256), 1, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1553), 1, + STATE(1560), 1, sym__pattern, + STATE(1768), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -66207,7 +62188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71842] = 20, + [66383] = 20, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -66218,39 +62199,39 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(1818), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(1834), 1, + ACTIONS(1792), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym_float, - STATE(188), 1, - sym__assignment, - STATE(1256), 1, + ACTIONS(2323), 1, + anon_sym_RPAREN, + STATE(1191), 1, sym__pattern_binary_expression, - STATE(1290), 1, + STATE(1255), 1, sym_identifier, - STATE(1316), 1, + STATE(1259), 1, sym_string, - STATE(1545), 1, + STATE(1302), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1309), 7, + STATE(1278), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -66258,93 +62239,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [71913] = 16, + [66454] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2325), 1, + anon_sym_LBRACE, + ACTIONS(2327), 1, + anon_sym_COMMA, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, - ACTIONS(2389), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, - anon_sym_RBRACK, - ACTIONS(2393), 1, - anon_sym_DOT_DOT, - STATE(1448), 1, + STATE(1617), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2337), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [71976] = 18, + [66514] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2395), 1, + ACTIONS(2349), 1, anon_sym_RPAREN, - ACTIONS(2397), 1, + ACTIONS(2351), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1609), 1, - sym_constant_record_argument, - STATE(1881), 1, + STATE(1763), 1, + sym_attribute_value, + STATE(1845), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -66353,94 +62332,95 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [72042] = 18, + [66580] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(2397), 1, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2006), 1, sym_float, - ACTIONS(2399), 1, - anon_sym_RPAREN, - STATE(1380), 1, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, sym_identifier, - STATE(1515), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, + STATE(1259), 1, + sym_string, + STATE(1302), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(1278), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [72108] = 18, + sym_discard, + [66648] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2397), 1, + ACTIONS(2351), 1, sym_float, - ACTIONS(2401), 1, + ACTIONS(2353), 1, anon_sym_RPAREN, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1594), 1, - sym_constant_record_argument, - STATE(1881), 1, + STATE(1763), 1, + sym_attribute_value, + STATE(1845), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -66449,13 +62429,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [72174] = 4, + [66714] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(511), 8, + ACTIONS(534), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -66464,7 +62444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(509), 18, + ACTIONS(532), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -66483,13 +62463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72212] = 4, + [66752] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 8, + ACTIONS(588), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -66498,7 +62478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(611), 18, + ACTIONS(586), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -66517,58 +62497,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72250] = 15, + [66790] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2403), 1, - anon_sym_LBRACE, - ACTIONS(2405), 1, - anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, - STATE(1625), 1, - aux_sym_tuple_repeat1, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(501), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2355), 1, + anon_sym_RPAREN, + ACTIONS(2357), 1, + sym_float, + STATE(1323), 1, + sym_identifier, + STATE(1716), 1, + sym_constant_record_argument, + STATE(1783), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2407), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2417), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2419), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72310] = 4, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1625), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66856] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2359), 1, + anon_sym_LPAREN, + ACTIONS(2361), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 8, + ACTIONS(646), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -66577,9 +62564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(607), 18, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(644), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66596,206 +62581,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72348] = 15, + [66898] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2427), 1, - anon_sym_COMMA, - ACTIONS(2429), 1, - anon_sym_RPAREN, - STATE(1583), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(501), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72408] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2357), 1, + sym_float, + ACTIONS(2363), 1, + anon_sym_RPAREN, + STATE(1323), 1, + sym_identifier, + STATE(1494), 1, + sym_constant_record_argument, + STATE(1783), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(603), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72446] = 15, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1625), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66964] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2431), 1, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(2433), 1, + ACTIONS(2367), 1, anon_sym_RPAREN, - STATE(1559), 1, + STATE(1505), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72506] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2435), 1, - anon_sym_LPAREN, - ACTIONS(2437), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 8, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(660), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72548] = 18, + [67024] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2439), 1, - anon_sym_RPAREN, - ACTIONS(2441), 1, + ACTIONS(2357), 1, sym_float, - STATE(1380), 1, + ACTIONS(2369), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, - STATE(1803), 1, - sym_attribute_value, - STATE(1912), 1, + STATE(1567), 1, + sym_constant_record_argument, + STATE(1783), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1717), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -66804,89 +62722,65 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [72614] = 6, + [67090] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2443), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(684), 8, - anon_sym_SLASH, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(501), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(682), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72656] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_DOT, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2357), 1, + sym_float, + ACTIONS(2371), 1, + anon_sym_RPAREN, + STATE(1323), 1, + sym_identifier, + STATE(1716), 1, + sym_constant_record_argument, + STATE(1783), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(619), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [72698] = 6, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1625), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67156] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, + ACTIONS(2373), 1, anon_sym_LPAREN, - ACTIONS(625), 1, - anon_sym_DOT, + ACTIONS(2375), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(640), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -66895,7 +62789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 16, + ACTIONS(638), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -66912,230 +62806,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72740] = 15, + [67198] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2451), 1, + ACTIONS(2377), 1, anon_sym_COMMA, - ACTIONS(2453), 1, + ACTIONS(2379), 1, anon_sym_RPAREN, - STATE(1622), 1, + STATE(1616), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72800] = 18, + [67258] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2441), 1, - sym_float, - ACTIONS(2455), 1, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2381), 1, + anon_sym_COMMA, + ACTIONS(2383), 1, anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1803), 1, - sym_attribute_value, - STATE(1912), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1717), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [72866] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(1465), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(601), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(599), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72904] = 15, + [67318] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2457), 1, + ACTIONS(2385), 1, anon_sym_COMMA, - ACTIONS(2459), 1, + ACTIONS(2387), 1, anon_sym_RPAREN, - STATE(1640), 1, + STATE(1566), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [72964] = 15, + [67378] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2461), 1, + ACTIONS(2389), 1, anon_sym_COMMA, - ACTIONS(2463), 1, + ACTIONS(2391), 1, anon_sym_RPAREN, - STATE(1650), 1, + STATE(1563), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73024] = 4, + [67438] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(597), 8, + ACTIONS(548), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67144,7 +63001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(595), 18, + ACTIONS(546), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67163,46 +63020,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73062] = 18, + [67476] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2397), 1, + ACTIONS(2357), 1, sym_float, - ACTIONS(2465), 1, + ACTIONS(2393), 1, anon_sym_RPAREN, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1800), 1, + STATE(1716), 1, sym_constant_record_argument, - STATE(1881), 1, + STATE(1783), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -67211,13 +63068,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [73128] = 4, + [67542] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 8, + ACTIONS(399), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67226,7 +63083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(521), 18, + ACTIONS(397), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67245,81 +63102,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73166] = 4, + [67580] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_RPAREN, + STATE(1438), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(505), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(503), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [73204] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(527), 8, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(525), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73242] = 4, + [67640] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(571), 8, + ACTIONS(544), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67328,7 +63162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(569), 18, + ACTIONS(542), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67347,95 +63181,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73280] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2004), 1, - sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1290), 1, - sym_identifier, - STATE(1316), 1, - sym_string, - STATE(1351), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1309), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [73348] = 18, + [67678] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2397), 1, + ACTIONS(2357), 1, sym_float, - ACTIONS(2467), 1, + ACTIONS(2399), 1, anon_sym_RPAREN, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1800), 1, + STATE(1716), 1, sym_constant_record_argument, - STATE(1881), 1, + STATE(1783), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -67444,13 +63229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [73414] = 4, + [67744] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 8, + ACTIONS(552), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67459,7 +63244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(545), 18, + ACTIONS(550), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67478,140 +63263,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73452] = 4, + [67782] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1786), 1, + sym_float, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, + STATE(1302), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(557), 18, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [73490] = 15, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1312), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [67850] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2469), 1, + ACTIONS(2401), 1, anon_sym_COMMA, - ACTIONS(2471), 1, + ACTIONS(2403), 1, anon_sym_RPAREN, - STATE(1589), 1, + STATE(1458), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73550] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2397), 1, - sym_float, - ACTIONS(2473), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1800), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1758), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73616] = 4, + [67910] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 8, + ACTIONS(526), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67620,7 +63372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(563), 18, + ACTIONS(524), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67639,13 +63391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73654] = 4, + [67948] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(587), 8, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67654,9 +63410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(585), 18, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(387), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -67673,61 +63427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73692] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2397), 1, - sym_float, - ACTIONS(2475), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1800), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1758), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73758] = 4, + [67990] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 8, + ACTIONS(558), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -67736,7 +63442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(387), 18, + ACTIONS(556), 18, anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, @@ -67755,347 +63461,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [73796] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2397), 1, - sym_float, - ACTIONS(2477), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1800), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1758), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73862] = 19, + [68028] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_float, - ACTIONS(1832), 1, - sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, - sym__upname, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, - sym_identifier, - STATE(1342), 1, - sym_string, - STATE(1351), 1, - sym__pattern, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(2405), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1830), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1386), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [73930] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, + ACTIONS(389), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2397), 1, - sym_float, - ACTIONS(2479), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1800), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1758), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [73996] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(387), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - ACTIONS(2481), 1, - anon_sym_COMMA, - ACTIONS(2483), 1, - anon_sym_RPAREN, - STATE(1487), 1, - aux_sym_tuple_repeat1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68070] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(562), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(560), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74056] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2441), 1, - sym_float, - ACTIONS(2485), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1803), 1, - sym_attribute_value, - STATE(1912), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1717), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [74122] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, - sym__name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2441), 1, - sym_float, - ACTIONS(2487), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - STATE(1803), 1, - sym_attribute_value, - STATE(1912), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1717), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [74188] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2489), 1, - anon_sym_GT_GT, - ACTIONS(2491), 1, - sym_float, - STATE(1380), 1, - sym_identifier, - STATE(1498), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1638), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [74251] = 5, + [68108] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(654), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(570), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68104,7 +63546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 16, + ACTIONS(568), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68121,44 +63565,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74290] = 17, + [68146] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2351), 1, sym_float, - ACTIONS(2493), 1, - anon_sym_GT_GT, - STATE(1380), 1, + ACTIONS(2409), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, + STATE(1763), 1, + sym_attribute_value, + STATE(1845), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -68167,60 +63613,61 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [74353] = 18, + [68212] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1826), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, - sym__name, - ACTIONS(1838), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2495), 1, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2357), 1, sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, + ACTIONS(2411), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, - STATE(1342), 1, - sym_string, + STATE(1716), 1, + sym_constant_record_argument, + STATE(1783), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1246), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1625), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [74418] = 4, + [68278] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 8, + ACTIONS(584), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68229,7 +63676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(642), 17, + ACTIONS(582), 18, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -68247,44 +63695,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74455] = 17, + [68316] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2357), 1, sym_float, - ACTIONS(2497), 1, - anon_sym_GT_GT, - STATE(1380), 1, + ACTIONS(2413), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, + STATE(1581), 1, + sym_constant_record_argument, + STATE(1783), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -68293,13 +63743,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [74518] = 4, + [68382] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(648), 8, + ACTIONS(538), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68308,8 +63758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(646), 17, + ACTIONS(536), 18, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68326,44 +63777,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74555] = 17, + [68420] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2441), 1, + ACTIONS(2357), 1, sym_float, - STATE(1380), 1, + ACTIONS(2415), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, - STATE(1803), 1, - sym_attribute_value, - STATE(1912), 1, + STATE(1716), 1, + sym_constant_record_argument, + STATE(1783), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1717), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -68372,13 +63825,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [74618] = 4, + [68486] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 8, + ACTIONS(507), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68387,7 +63840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(666), 17, + ACTIONS(505), 18, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -68405,97 +63859,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74655] = 13, + [68524] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2411), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(828), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2407), 2, + ACTIONS(592), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2417), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [74710] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2411), 1, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(590), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, anon_sym_AMP_AMP, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(824), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2407), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2417), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2419), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74765] = 4, + [68562] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 8, + ACTIONS(596), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68504,8 +63908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(670), 17, + ACTIONS(594), 18, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -68522,43 +63927,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74802] = 16, + [68600] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2501), 1, + ACTIONS(2351), 1, sym_float, - STATE(1380), 1, + ACTIONS(2417), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, + STATE(1763), 1, + sym_attribute_value, + STATE(1845), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2499), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1749), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -68567,156 +63975,96 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [74863] = 12, + [68666] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(518), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(734), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - ACTIONS(2417), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [74916] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2407), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(734), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(516), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2417), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2419), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [74967] = 10, + [68704] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2421), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2423), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2417), 4, + ACTIONS(758), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 6, + ACTIONS(756), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [75016] = 9, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [68751] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(614), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2425), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 10, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(612), 17, + anon_sym_LPAREN, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -68725,97 +64073,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [75063] = 13, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68788] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2411), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(750), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2407), 2, + ACTIONS(634), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2417), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(632), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75118] = 13, + [68825] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2411), 1, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - ACTIONS(2421), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(814), 2, + ACTIONS(810), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2407), 2, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2415), 2, + ACTIONS(2337), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2423), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2417), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75173] = 4, + [68880] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2419), 1, + anon_sym_GT_GT, + ACTIONS(2421), 1, + sym_float, + STATE(1323), 1, + sym_identifier, + STATE(1733), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [68943] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 8, + ACTIONS(626), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -68824,7 +64216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(674), 17, + ACTIONS(624), 17, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -68842,137 +64234,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75210] = 18, + [68980] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(1826), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(1832), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(1836), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(1838), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2495), 1, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2421), 1, sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1304), 1, + ACTIONS(2423), 1, + anon_sym_GT_GT, + STATE(1323), 1, sym_identifier, - STATE(1342), 1, - sym_string, + STATE(1733), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1180), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1830), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1246), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [75275] = 17, + [69043] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(387), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69082] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(1776), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(1778), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(1780), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2425), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_GT_GT, - STATE(1380), 1, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1255), 1, sym_identifier, - STATE(1599), 1, - sym_constant_bit_string_segment, + STATE(1259), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(1197), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [75338] = 17, + sym_discard, + [69147] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2421), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(2427), 1, anon_sym_GT_GT, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1748), 1, + STATE(1733), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1562), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -68981,44 +64407,43 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [75401] = 17, + [69210] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2431), 1, sym_float, - ACTIONS(2507), 1, - anon_sym_GT_GT, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + ACTIONS(2429), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1714), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -69027,13 +64452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [75464] = 4, + [69271] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(598), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(690), 8, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -69042,8 +64469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(688), 17, - anon_sym_DOT, + ACTIONS(387), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69060,13 +64486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75501] = 4, + [69310] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 8, + ACTIONS(602), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -69075,7 +64501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(656), 17, + ACTIONS(600), 17, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -69093,44 +64519,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75538] = 17, + [69347] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2421), 1, sym_float, - ACTIONS(2509), 1, + ACTIONS(2433), 1, anon_sym_GT_GT, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1641), 1, + STATE(1471), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1562), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -69139,70 +64565,115 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [75601] = 17, + [69410] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(636), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(387), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69449] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1784), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(1790), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(1796), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2425), 1, sym_float, - ACTIONS(2511), 1, - anon_sym_GT_GT, - STATE(1380), 1, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, + STATE(1296), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(1133), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(1788), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(1197), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [75664] = 4, + sym_discard, + [69514] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 8, + ACTIONS(2329), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2331), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2345), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(650), 17, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(2347), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 11, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -69212,92 +64683,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [75701] = 13, + [69559] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2295), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2337), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2261), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75756] = 17, + [69614] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, - sym__upname, - ACTIONS(724), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2397), 1, + ACTIONS(2421), 1, sym_float, - STATE(1380), 1, + ACTIONS(2435), 1, + anon_sym_GT_GT, + STATE(1323), 1, sym_identifier, - STATE(1800), 1, - sym_constant_record_argument, - STATE(1881), 1, - sym_label, + STATE(1733), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1758), 8, + STATE(1562), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -69306,72 +64771,30 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [75819] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(99), 1, - sym__name, - ACTIONS(101), 1, - sym__upname, - ACTIONS(1818), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_LBRACK, - ACTIONS(1822), 1, - anon_sym_LT_LT, - ACTIONS(1834), 1, - sym__discard_name, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2495), 1, - sym_float, - STATE(1256), 1, - sym__pattern_binary_expression, - STATE(1290), 1, - sym_identifier, - STATE(1316), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1180), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1246), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [75884] = 5, + [69677] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(623), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(2329), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2347), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(619), 16, - anon_sym_DASH_GT, + ACTIONS(756), 13, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -69383,136 +64806,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + [69718] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [75923] = 17, + [69773] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2491), 1, - sym_float, - ACTIONS(2515), 1, - anon_sym_GT_GT, - STATE(1380), 1, - sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, + ACTIONS(2333), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2335), 1, + anon_sym_AMP_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1638), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [75986] = 13, + ACTIONS(768), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2329), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2331), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2337), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2345), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2339), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2341), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2347), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69828] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(764), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2337), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2517), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2261), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76041] = 17, + [69883] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2441), 1, + ACTIONS(2351), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1630), 1, + STATE(1452), 1, sym_attribute_value, - STATE(1912), 1, + STATE(1845), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1717), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -69521,44 +64978,85 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [76104] = 17, + [69946] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2335), 1, + anon_sym_AMP_AMP, + ACTIONS(2343), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2329), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2331), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2337), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2345), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(756), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + ACTIONS(2339), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2341), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2347), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69999] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(724), 1, + ACTIONS(678), 1, sym__name, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2441), 1, + ACTIONS(2357), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1483), 1, - sym_attribute_value, - STATE(1912), 1, + STATE(1716), 1, + sym_constant_record_argument, + STATE(1783), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1717), 8, + STATE(1625), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -69567,277 +65065,222 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [76167] = 13, + [70062] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2411), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2383), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2407), 2, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2415), 2, + ACTIONS(2337), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2423), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2417), 4, + ACTIONS(756), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76222] = 13, + [70113] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2411), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2413), 1, - anon_sym_AMP_AMP, - ACTIONS(2421), 1, + ACTIONS(2343), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(810), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2407), 2, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2415), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2423), 2, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2417), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2419), 4, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2425), 4, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76277] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(756), 6, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2519), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [76332] = 5, + [70162] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(640), 1, - anon_sym_DOT, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2421), 1, + sym_float, + ACTIONS(2439), 1, + anon_sym_GT_GT, + STATE(1323), 1, + sym_identifier, + STATE(1733), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(619), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [76371] = 6, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70225] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2407), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2425), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(734), 13, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2343), 1, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [76412] = 8, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(736), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2329), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2423), 2, + ACTIONS(2337), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2345), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(736), 4, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2425), 4, + ACTIONS(2341), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + [70280] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2333), 1, anon_sym_PIPE_PIPE, + ACTIONS(2335), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2343), 1, anon_sym_PIPE_GT, - [76457] = 4, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(850), 8, + ACTIONS(696), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2329), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2331), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2337), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2345), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2339), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(848), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2341), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2347), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76493] = 4, + [70335] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(858), 8, + ACTIONS(606), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -69846,7 +65289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(856), 16, + ACTIONS(604), 17, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69863,13 +65307,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76529] = 4, + [70372] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2421), 1, + sym_float, + ACTIONS(2441), 1, + anon_sym_GT_GT, + STATE(1323), 1, + sym_identifier, + STATE(1574), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70435] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(501), 1, + sym__upname, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2351), 1, + sym_float, + STATE(1323), 1, + sym_identifier, + STATE(1763), 1, + sym_attribute_value, + STATE(1845), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1626), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70498] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2421), 1, + sym_float, + ACTIONS(2443), 1, + anon_sym_GT_GT, + STATE(1323), 1, + sym_identifier, + STATE(1733), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70561] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2421), 1, + sym_float, + ACTIONS(2445), 1, + anon_sym_GT_GT, + STATE(1323), 1, + sym_identifier, + STATE(1571), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1562), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70624] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(792), 8, + ACTIONS(610), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -69878,7 +65506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(790), 16, + ACTIONS(608), 17, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -69895,206 +65524,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76565] = 13, + [70661] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2521), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76619] = 13, + [70716] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2523), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(630), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [76673] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(814), 1, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(628), 17, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2529), 1, anon_sym_PIPE_PIPE, - ACTIONS(2531), 1, anon_sym_AMP_AMP, - ACTIONS(2539), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2525), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2527), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2533), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2535), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2537), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [76727] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, anon_sym_PIPE_GT, - ACTIONS(2545), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76781] = 16, + [70753] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(678), 1, + sym__name, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2547), 1, - anon_sym_RBRACK, - ACTIONS(2549), 1, + ACTIONS(2351), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, + STATE(1502), 1, + sym_attribute_value, + STATE(1845), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1598), 8, + STATE(1626), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -70103,218 +65645,217 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [76841] = 13, + [70816] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2551), 1, - anon_sym_RBRACK, + ACTIONS(1776), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1780), 1, + anon_sym_LT_LT, + ACTIONS(1782), 1, + anon_sym_DASH, + ACTIONS(1784), 1, + anon_sym_DQUOTE, + ACTIONS(1790), 1, + sym__decimal, + ACTIONS(1792), 1, + sym__discard_name, + ACTIONS(1794), 1, + sym__name, + ACTIONS(1796), 1, + sym__upname, + ACTIONS(2425), 1, + sym_float, + STATE(1191), 1, + sym__pattern_binary_expression, + STATE(1281), 1, + sym_identifier, + STATE(1296), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2263), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [76895] = 13, + STATE(1133), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1788), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1197), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [70881] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2553), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [76949] = 13, + [70936] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2555), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(622), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(620), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77003] = 13, + [70973] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2557), 1, - anon_sym_RBRACK, + ACTIONS(2451), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77057] = 13, + [71027] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2559), 1, + ACTIONS(2453), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77111] = 4, + [71081] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(838), 8, + ACTIONS(734), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -70323,7 +65864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(836), 16, + ACTIONS(732), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -70340,376 +65881,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77147] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2561), 1, - anon_sym_RBRACK, - ACTIONS(2563), 1, - sym_float, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1635), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [77207] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2565), 1, - anon_sym_RPAREN, - ACTIONS(2567), 1, - sym_float, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1607), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [77267] = 13, + [71117] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2569), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(730), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(728), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77321] = 13, + [71153] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2571), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(726), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(724), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77375] = 13, + [71189] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2573), 1, + ACTIONS(2455), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77429] = 13, + [71243] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2575), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(758), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(756), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77483] = 13, + [71279] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(696), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2463), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2577), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77537] = 13, + [71333] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(750), 1, - anon_sym_DASH_GT, - ACTIONS(2529), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2531), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2539), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, + ACTIONS(2477), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2527), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2533), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2535), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77591] = 16, + [71387] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2491), 1, + ACTIONS(2479), 1, + anon_sym_RBRACK, + ACTIONS(2481), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, - STATE(1748), 1, - sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1638), 8, + STATE(1544), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -70718,83 +66144,156 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [77651] = 13, + [71447] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2483), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71501] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(682), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(680), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71537] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(764), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2463), 1, + anon_sym_AMP_AMP, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2579), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77705] = 16, + [71591] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2581), 1, - anon_sym_RPAREN, - ACTIONS(2583), 1, + ACTIONS(2485), 1, + anon_sym_RBRACK, + ACTIONS(2487), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1570), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -70803,206 +66302,290 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [77765] = 13, + [71651] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2585), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(660), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(658), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77819] = 13, + [71687] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(768), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2463), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2587), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77873] = 13, + [71741] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(690), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(688), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71777] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2589), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2469), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2475), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [71825] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(782), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(780), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77927] = 13, + [71861] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2591), 1, + ACTIONS(2489), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71915] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(786), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(784), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [77981] = 16, + [71951] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2593), 1, + ACTIONS(2491), 1, anon_sym_RPAREN, - ACTIONS(2595), 1, + ACTIONS(2493), 1, sym_float, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1511), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71011,42 +66594,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78041] = 16, + [72011] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - ACTIONS(2597), 1, + ACTIONS(2495), 1, anon_sym_RBRACK, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71055,42 +66638,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78101] = 16, + [72071] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2599), 1, - anon_sym_RBRACK, - ACTIONS(2601), 1, + ACTIONS(2493), 1, sym_float, - STATE(1380), 1, + ACTIONS(2497), 1, + anon_sym_RBRACK, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1497), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71099,42 +66682,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78161] = 16, + [72131] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - ACTIONS(2603), 1, - anon_sym_RBRACK, - STATE(1380), 1, + ACTIONS(2499), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71143,22 +66726,34 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78221] = 4, + [72191] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2471), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(788), 8, + ACTIONS(2457), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2459), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2473), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(786), 16, + ACTIONS(2475), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 9, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71168,93 +66763,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + [72237] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2471), 1, anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2457), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2459), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2465), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(756), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2467), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2469), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78257] = 16, + [72287] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, - sym_float, - ACTIONS(2605), 1, + ACTIONS(2501), 1, anon_sym_RPAREN, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1531), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [78317] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2503), 1, sym_float, - ACTIONS(2607), 1, - anon_sym_RBRACK, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1622), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71263,13 +66846,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78377] = 4, + [72347] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 8, + ACTIONS(790), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -71278,7 +66861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(852), 16, + ACTIONS(788), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71295,269 +66878,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78413] = 6, + [72383] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2609), 1, - anon_sym_LPAREN, - STATE(1123), 1, - sym_constant_record_arguments, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2505), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1628), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1624), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [78453] = 4, + anon_sym_LT_GT, + [72437] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2507), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(804), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(802), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78489] = 4, + [72491] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2509), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(846), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(844), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78525] = 4, + [72545] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2511), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(821), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(818), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78561] = 4, + [72599] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2513), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(794), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78597] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2583), 1, - sym_float, - ACTIONS(2611), 1, - anon_sym_RBRACK, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1531), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [78657] = 13, + [72653] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(810), 1, - anon_sym_DASH_GT, - ACTIONS(2529), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2531), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2539), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, + ACTIONS(2515), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2527), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2533), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2535), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78711] = 4, + [72707] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(800), 8, + ACTIONS(2457), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2475), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(758), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(798), 16, + ACTIONS(756), 12, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -71570,46 +67158,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + [72747] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2517), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78747] = 16, + [72801] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - ACTIONS(2613), 1, + ACTIONS(2519), 1, anon_sym_RPAREN, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71618,83 +67243,82 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78807] = 13, + [72861] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2463), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2615), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(756), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78861] = 16, + [72913] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2421), 1, sym_float, - ACTIONS(2617), 1, - anon_sym_RPAREN, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, + STATE(1733), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1562), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71703,238 +67327,247 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [78921] = 4, + [72973] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2521), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(782), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [78957] = 13, + [73027] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2619), 1, - anon_sym_RBRACK, + ACTIONS(2523), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79011] = 13, + [73081] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2621), 1, + ACTIONS(2525), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79065] = 13, + [73135] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(736), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2463), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2623), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79119] = 13, + [73189] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2625), 1, + ACTIONS(2527), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79173] = 16, + [73243] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2529), 1, + anon_sym_RPAREN, + ACTIONS(2531), 1, sym_float, - ACTIONS(2627), 1, - anon_sym_RBRACK, - STATE(1380), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1576), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -71943,54 +67576,95 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [79233] = 13, + [73303] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2533), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [73357] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2629), 1, + ACTIONS(2535), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79287] = 4, + [73411] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(842), 8, + ACTIONS(742), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -71999,7 +67673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(840), 16, + ACTIONS(740), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72016,83 +67690,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79323] = 13, + [73447] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2537), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [73501] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(828), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2457), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2459), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2473), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(758), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2475), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(756), 10, anon_sym_DASH_GT, - ACTIONS(2529), 1, anon_sym_PIPE_PIPE, - ACTIONS(2531), 1, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + [73545] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, ACTIONS(2539), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [73599] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_GT, + ACTIONS(2541), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2527), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2533), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2535), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79377] = 16, + [73653] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - ACTIONS(2631), 1, - anon_sym_RPAREN, - STATE(1380), 1, + ACTIONS(2543), 1, + anon_sym_RBRACK, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -72101,86 +67893,95 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [79437] = 13, + [73713] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(824), 1, - anon_sym_DASH_GT, - ACTIONS(2529), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2531), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2539), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, + ACTIONS(2545), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2527), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2533), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2535), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79491] = 4, + [73767] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2547), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(706), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(704), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79527] = 4, + [73821] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 8, + ACTIONS(686), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72189,7 +67990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(734), 16, + ACTIONS(684), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72206,267 +68007,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79563] = 6, + [73857] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2549), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2543), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(736), 6, + ACTIONS(1824), 11, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(734), 12, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [79603] = 12, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym__decimal, + sym__name, + ACTIONS(1822), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [73895] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2531), 1, - anon_sym_AMP_AMP, - ACTIONS(2539), 1, - anon_sym_PIPE_GT, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2493), 1, + sym_float, + ACTIONS(2551), 1, + anon_sym_RPAREN, + STATE(1323), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(734), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(2525), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2527), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2533), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2541), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2535), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2537), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [79655] = 13, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1615), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [73955] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2633), 1, + ACTIONS(2553), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79709] = 13, + [74009] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2635), 1, - anon_sym_RPAREN, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2493), 1, + sym_float, + ACTIONS(2555), 1, + anon_sym_RBRACK, + STATE(1323), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1615), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [74069] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2557), 1, + anon_sym_LPAREN, + STATE(1089), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(1594), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1590), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_LT_GT, - [79763] = 11, + [74109] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2539), 1, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_GT, + ACTIONS(2559), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2527), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2533), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2541), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(734), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2535), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79813] = 10, + [74163] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2539), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(750), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2527), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2541), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2535), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2537), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(748), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2543), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(734), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [79861] = 9, + [74199] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2561), 1, + anon_sym_RBRACK, + ACTIONS(2563), 1, + sym_float, + STATE(1323), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1470), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [74259] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2493), 1, + sym_float, + ACTIONS(2565), 1, + anon_sym_RPAREN, + STATE(1323), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1615), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [74319] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2539), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(664), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2527), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2541), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2543), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 9, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(662), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72476,32 +68389,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [79907] = 8, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [74355] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2493), 1, + sym_float, + ACTIONS(2567), 1, + anon_sym_RPAREN, + STATE(1323), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1615), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [74415] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + ACTIONS(754), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2527), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2541), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2543), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(734), 10, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(752), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72512,74 +68466,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - [79951] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [74451] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2569), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(736), 8, + ACTIONS(2155), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(734), 16, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [79987] = 16, + [74505] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - ACTIONS(2637), 1, - anon_sym_RPAREN, - STATE(1380), 1, + ACTIONS(2571), 1, + anon_sym_RBRACK, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -72588,95 +68557,130 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80047] = 13, + [74565] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(2159), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2161), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2169), 1, anon_sym_PIPE_GT, - ACTIONS(2639), 1, + ACTIONS(2573), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2155), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2157), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2171), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2173), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80101] = 13, + [74619] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, - anon_sym_AMP_AMP, - ACTIONS(2265), 1, - anon_sym_PIPE_GT, - ACTIONS(2641), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(816), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2253), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2259), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2267), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2261), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(814), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80155] = 4, + [74655] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(499), 1, + sym__name, + ACTIONS(501), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_LBRACK, + ACTIONS(2199), 1, + anon_sym_LT_LT, + ACTIONS(2575), 1, + anon_sym_RPAREN, + ACTIONS(2577), 1, + sym_float, + STATE(1323), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(575), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1488), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [74715] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 8, + ACTIONS(794), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72685,7 +68689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(708), 16, + ACTIONS(792), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72702,13 +68706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80191] = 4, + [74751] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(702), 8, + ACTIONS(798), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72717,7 +68721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(700), 16, + ACTIONS(796), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72734,13 +68738,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80227] = 4, + [74787] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2159), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2161), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_GT, + ACTIONS(2579), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2157), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2173), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [74841] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(740), 8, + ACTIONS(803), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72749,7 +68794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(738), 16, + ACTIONS(800), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72766,13 +68811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80263] = 4, + [74877] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(744), 8, + ACTIONS(808), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72781,7 +68826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(742), 16, + ACTIONS(806), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72798,131 +68843,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80299] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2643), 1, - anon_sym_RPAREN, - ACTIONS(2645), 1, - sym_float, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1604), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [80359] = 13, + [74913] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, + ACTIONS(810), 1, + anon_sym_DASH_GT, + ACTIONS(2461), 1, anon_sym_PIPE_PIPE, - ACTIONS(2257), 1, + ACTIONS(2463), 1, anon_sym_AMP_AMP, - ACTIONS(2265), 1, + ACTIONS(2471), 1, anon_sym_PIPE_GT, - ACTIONS(2647), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2251), 2, + ACTIONS(2457), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2253), 2, + ACTIONS(2459), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2259), 2, + ACTIONS(2465), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2267), 2, + ACTIONS(2473), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2261), 4, + ACTIONS(2467), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2263), 4, + ACTIONS(2469), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2269), 4, + ACTIONS(2475), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [80413] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2649), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1882), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym__decimal, - sym__name, - ACTIONS(1880), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [80451] = 4, + [74967] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(780), 8, + ACTIONS(758), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -72931,7 +68899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(778), 16, + ACTIONS(756), 16, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72939,124 +68907,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [80487] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(429), 1, - sym__name, - ACTIONS(431), 1, - sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LT_LT, - ACTIONS(2583), 1, - sym_float, - ACTIONS(2651), 1, - anon_sym_RBRACK, - STATE(1380), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(604), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1531), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [80547] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1996), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym__decimal, - sym__name, - ACTIONS(1994), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [80582] = 15, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [75003] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2583), 1, + ACTIONS(2493), 1, sym_float, - STATE(1380), 1, + ACTIONS(2581), 1, + anon_sym_RBRACK, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1531), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73065,7 +68960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80639] = 15, + [75063] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -73076,29 +68971,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2653), 1, + ACTIONS(2583), 1, sym_float, - STATE(1299), 1, + STATE(1252), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1315), 8, + STATE(1261), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73107,40 +69002,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80696] = 15, + [75120] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(2000), 1, - anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2585), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2587), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2589), 1, anon_sym_LT_LT, - ACTIONS(2655), 1, + ACTIONS(2591), 1, + anon_sym_DASH, + ACTIONS(2593), 1, sym_float, - STATE(1299), 1, + STATE(673), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(665), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(95), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(1333), 8, + STATE(757), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73149,40 +69044,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80753] = 15, + [75177] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(2657), 1, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2659), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2661), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2663), 1, - anon_sym_DASH, - ACTIONS(2665), 1, + ACTIONS(2595), 1, sym_float, - STATE(713), 1, + STATE(1252), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(706), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(57), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(785), 8, + STATE(1286), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73191,7 +69086,39 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80810] = 15, + [75234] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2597), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2599), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2602), 14, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [75271] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(53), 1, @@ -73202,29 +69129,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(63), 1, sym__upname, - ACTIONS(2657), 1, + ACTIONS(2585), 1, anon_sym_POUND, - ACTIONS(2659), 1, + ACTIONS(2587), 1, anon_sym_LBRACK, - ACTIONS(2661), 1, + ACTIONS(2589), 1, anon_sym_LT_LT, - ACTIONS(2663), 1, + ACTIONS(2591), 1, anon_sym_DASH, - ACTIONS(2667), 1, + ACTIONS(2605), 1, sym_float, - STATE(713), 1, + STATE(673), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(706), 2, + STATE(665), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(821), 8, + STATE(724), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73233,7 +69160,38 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80867] = 15, + [75328] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2127), 11, + anon_sym_DASH, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym__decimal, + sym__name, + ACTIONS(2125), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [75363] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(91), 1, @@ -73244,29 +69202,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(101), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2669), 1, + ACTIONS(2607), 1, sym_float, - STATE(1299), 1, + STATE(1252), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1337), 8, + STATE(1288), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73275,39 +69233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [80924] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2674), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2676), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2671), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [80961] = 15, + [75420] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(53), 1, @@ -73318,29 +69244,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(63), 1, sym__upname, - ACTIONS(2657), 1, + ACTIONS(2585), 1, anon_sym_POUND, - ACTIONS(2659), 1, + ACTIONS(2587), 1, anon_sym_LBRACK, - ACTIONS(2661), 1, + ACTIONS(2589), 1, anon_sym_LT_LT, - ACTIONS(2663), 1, + ACTIONS(2591), 1, anon_sym_DASH, - ACTIONS(2679), 1, + ACTIONS(2609), 1, sym_float, - STATE(713), 1, + STATE(673), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(706), 2, + STATE(665), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(758), 8, + STATE(764), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73349,40 +69275,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [81018] = 15, + [75477] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(63), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2657), 1, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2659), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2661), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2663), 1, - anon_sym_DASH, - ACTIONS(2681), 1, + ACTIONS(2493), 1, sym_float, - STATE(713), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(706), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(828), 8, + STATE(1615), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73391,40 +69317,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [81075] = 15, + [75534] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(429), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(431), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2683), 1, + ACTIONS(2611), 1, sym_float, - STATE(1380), 1, + STATE(1252), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(1757), 8, + STATE(1279), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73433,15 +69359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [81132] = 5, + [75591] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2685), 1, + ACTIONS(2613), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2676), 8, + ACTIONS(2599), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73450,8 +69376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2671), 14, - anon_sym_DASH_GT, + ACTIONS(2602), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73465,71 +69391,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81169] = 4, + [75628] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2055), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_echo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, sym__decimal, + ACTIONS(61), 1, sym__name, - ACTIONS(2053), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(63), 1, + sym__upname, + ACTIONS(2585), 1, anon_sym_POUND, + ACTIONS(2587), 1, anon_sym_LBRACK, + ACTIONS(2589), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2591), 1, + anon_sym_DASH, + ACTIONS(2615), 1, sym_float, + STATE(673), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(665), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [81204] = 15, + STATE(788), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [75685] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(99), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(101), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_DASH, - ACTIONS(2227), 1, + ACTIONS(2195), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2197), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2199), 1, anon_sym_LT_LT, - ACTIONS(2687), 1, + ACTIONS(2617), 1, sym_float, - STATE(1299), 1, + STATE(1323), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(604), 2, + STATE(575), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(95), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1336), 8, + STATE(1762), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -73538,51 +69475,75 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [81261] = 12, + [75742] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2693), 1, - anon_sym_DASH_GT, - ACTIONS(2695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2697), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1682), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2691), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(2699), 2, + anon_sym_STAR, + ACTIONS(1680), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2707), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2701), 4, + [75776] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2621), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2625), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2623), 6, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2703), 4, + anon_sym_PLUS, + ACTIONS(2619), 11, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [81311] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + [75814] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1680), 8, + ACTIONS(1630), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73591,7 +69552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1678), 14, + ACTIONS(1628), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73606,13 +69567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81345] = 4, + [75848] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2709), 8, + ACTIONS(1674), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73621,8 +69582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2711), 14, - anon_sym_DASH_GT, + ACTIONS(1672), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73636,13 +69597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81379] = 4, + [75882] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2713), 8, + ACTIONS(1654), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73651,8 +69612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2715), 14, - anon_sym_DASH_GT, + ACTIONS(1652), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73666,28 +69627,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81413] = 6, + [75916] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1686), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2707), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2713), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(2715), 11, - anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(1684), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73698,199 +69654,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - [81451] = 11, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [75950] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2697), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1662), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2691), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2715), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(2707), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2701), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2703), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1660), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [81499] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(581), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(579), 21, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [81533] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2121), 22, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [81565] = 10, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [75984] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1666), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2691), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(2699), 2, + anon_sym_STAR, + ACTIONS(1664), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2707), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2715), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2701), 4, + [76018] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1642), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2703), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1640), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [81611] = 9, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [76052] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1622), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2691), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2705), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2707), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2701), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2703), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2715), 5, - anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1620), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [81655] = 8, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [76086] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(1658), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2691), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2705), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2707), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2713), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2715), 9, - anon_sym_DASH_GT, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1656), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -73899,13 +69802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [81697] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [76120] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2719), 8, + ACTIONS(2629), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73914,7 +69822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2717), 14, + ACTIONS(2627), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73929,13 +69837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81731] = 4, + [76154] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2723), 8, + ACTIONS(2633), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73944,7 +69852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2721), 14, + ACTIONS(2631), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73959,13 +69867,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81765] = 4, + [76188] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(574), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(572), 21, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [76222] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2727), 8, + ACTIONS(2637), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -73974,7 +69912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2725), 14, + ACTIONS(2635), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73989,31 +69927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81799] = 8, + [76256] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, + ACTIONS(1634), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2731), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2735), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2713), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2715), 9, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1632), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74023,13 +69952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [81841] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [76290] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1662), 8, + ACTIONS(2623), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74038,7 +69972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1660), 14, + ACTIONS(2619), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74053,13 +69987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81875] = 4, + [76324] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2727), 8, + ACTIONS(1650), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74068,8 +70002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2725), 14, - anon_sym_DASH_GT, + ACTIONS(1648), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74083,13 +70017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81909] = 4, + [76358] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1684), 8, + ACTIONS(1646), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74098,7 +70032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1682), 14, + ACTIONS(1644), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74113,13 +70047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81943] = 4, + [76392] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1688), 8, + ACTIONS(1638), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74128,7 +70062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1686), 14, + ACTIONS(1636), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74143,200 +70077,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [81977] = 9, + [76426] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2641), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, + ACTIONS(2619), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(2621), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2731), 2, + ACTIONS(2639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, + ACTIONS(2643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2649), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2735), 3, + ACTIONS(2625), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2737), 4, + ACTIONS(2645), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2739), 4, + ACTIONS(2647), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2715), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [82021] = 10, + [76474] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, + ACTIONS(2621), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2731), 2, + ACTIONS(2639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2741), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 3, + ACTIONS(2649), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2619), 3, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2735), 3, + ACTIONS(2625), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2737), 4, + ACTIONS(2645), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2739), 4, + ACTIONS(2647), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [82067] = 12, + [76520] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2743), 1, - anon_sym_RBRACE, - ACTIONS(2745), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2747), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, + ACTIONS(1626), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2731), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2741), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2737), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2739), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1624), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [82117] = 11, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [76554] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2747), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2715), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(2729), 2, + ACTIONS(2621), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2731), 2, + ACTIONS(2639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, + ACTIONS(2649), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(2741), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 3, + ACTIONS(2625), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2737), 4, + ACTIONS(2645), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2739), 4, + ACTIONS(2647), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [82165] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2729), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2735), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(2713), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(2715), 11, + ACTIONS(2619), 5, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [82203] = 4, + [76598] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2713), 8, + ACTIONS(2621), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2639), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2649), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2625), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2623), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2715), 14, + ACTIONS(2619), 9, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74346,18 +70249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [82237] = 4, + [76640] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2709), 8, + ACTIONS(2651), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74366,8 +70264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2711), 14, - anon_sym_RBRACE, + ACTIONS(2653), 14, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74381,51 +70279,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82271] = 12, + [76674] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2745), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2747), 1, + ACTIONS(2641), 1, anon_sym_AMP_AMP, - ACTIONS(2749), 1, + ACTIONS(2655), 1, anon_sym_RBRACE, + ACTIONS(2657), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, + ACTIONS(2621), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2731), 2, + ACTIONS(2639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(2741), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2735), 3, + ACTIONS(2649), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2625), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(2737), 4, + ACTIONS(2645), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2739), 4, + ACTIONS(2647), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [82321] = 4, + [76724] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1700), 8, + ACTIONS(1670), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74434,7 +70332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1698), 14, + ACTIONS(1668), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74449,13 +70347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82355] = 4, + [76758] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1672), 8, + ACTIONS(2633), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74464,8 +70362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1670), 14, - anon_sym_RBRACE, + ACTIONS(2631), 14, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74479,13 +70377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82389] = 4, + [76792] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1720), 8, + ACTIONS(2629), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74494,8 +70392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1718), 14, - anon_sym_RBRACE, + ACTIONS(2627), 14, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74509,43 +70407,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82423] = 4, + [76826] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2663), 1, + anon_sym_DASH_GT, + ACTIONS(2665), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2667), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1728), 8, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2661), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1726), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2675), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2677), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82457] = 4, + ACTIONS(2671), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2673), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [76876] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2723), 8, + ACTIONS(2651), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74554,8 +70460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2721), 14, - anon_sym_DASH_GT, + ACTIONS(2653), 14, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74569,22 +70475,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82491] = 4, + [76910] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2719), 8, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2661), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2675), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2677), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2623), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(2717), 14, + ACTIONS(2619), 9, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74594,18 +70509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [82525] = 4, + [76952] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1736), 8, + ACTIONS(1698), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74614,7 +70524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1734), 14, + ACTIONS(1696), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74629,13 +70539,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82559] = 4, + [76986] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2129), 22, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77018] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1712), 8, + ACTIONS(1678), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74644,7 +70583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1710), 14, + ACTIONS(1676), 14, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -74659,13 +70598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82593] = 4, + [77052] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1696), 8, + ACTIONS(2623), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74674,8 +70613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1694), 14, - anon_sym_RBRACE, + ACTIONS(2619), 14, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74689,23 +70628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82627] = 4, + [77086] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1692), 8, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2677), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2623), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1690), 14, - anon_sym_RBRACE, + ACTIONS(2619), 11, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74716,166 +70660,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [82661] = 4, + [77124] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2667), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1666), 8, + ACTIONS(2619), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2661), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1664), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2675), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2677), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82695] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1716), 8, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(2671), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1714), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2673), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [82729] = 4, + [77172] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2641), 1, + anon_sym_AMP_AMP, + ACTIONS(2657), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2679), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1676), 8, + ACTIONS(2621), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2639), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1674), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2649), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2625), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82763] = 4, + ACTIONS(2645), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2647), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [77222] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1724), 8, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2661), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1722), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2669), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(2675), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2619), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2677), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82797] = 4, + ACTIONS(2671), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2673), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [77268] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1740), 8, + ACTIONS(2659), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2661), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2675), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2677), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2671), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(1738), 14, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2673), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [82831] = 4, + ACTIONS(2619), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [77312] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1732), 8, + ACTIONS(2637), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -74884,8 +70821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1730), 14, - anon_sym_RBRACE, + ACTIONS(2635), 14, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -74899,31 +70836,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [82865] = 12, + [77346] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2751), 1, + ACTIONS(2681), 1, anon_sym_RBRACE, - ACTIONS(2753), 1, + ACTIONS(2683), 1, anon_sym_AT, - ACTIONS(2756), 1, + ACTIONS(2686), 1, anon_sym_import, - ACTIONS(2759), 1, + ACTIONS(2689), 1, anon_sym_type, - ACTIONS(2762), 1, + ACTIONS(2692), 1, anon_sym_const, - ACTIONS(2765), 1, + ACTIONS(2695), 1, anon_sym_fn, - ACTIONS(2768), 1, + ACTIONS(2698), 1, anon_sym_external, - ACTIONS(2771), 1, + ACTIONS(2701), 1, sym_visibility_modifier, - ACTIONS(2774), 1, + ACTIONS(2704), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1148), 10, + STATE(1105), 10, sym__module_statement, sym_attribute, sym_import, @@ -74934,31 +70871,31 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [82912] = 12, + [77393] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2777), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(2779), 1, + ACTIONS(2709), 1, anon_sym_AT, - ACTIONS(2781), 1, + ACTIONS(2711), 1, anon_sym_import, - ACTIONS(2783), 1, + ACTIONS(2713), 1, anon_sym_type, - ACTIONS(2785), 1, + ACTIONS(2715), 1, anon_sym_const, - ACTIONS(2787), 1, + ACTIONS(2717), 1, anon_sym_fn, - ACTIONS(2789), 1, + ACTIONS(2719), 1, anon_sym_external, - ACTIONS(2791), 1, + ACTIONS(2721), 1, sym_visibility_modifier, - ACTIONS(2793), 1, + ACTIONS(2723), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1150), 10, + STATE(1105), 10, sym__module_statement, sym_attribute, sym_import, @@ -74969,31 +70906,31 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [82959] = 12, + [77440] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2779), 1, + ACTIONS(2709), 1, anon_sym_AT, - ACTIONS(2781), 1, + ACTIONS(2711), 1, anon_sym_import, - ACTIONS(2783), 1, + ACTIONS(2713), 1, anon_sym_type, - ACTIONS(2785), 1, + ACTIONS(2715), 1, anon_sym_const, - ACTIONS(2787), 1, + ACTIONS(2717), 1, anon_sym_fn, - ACTIONS(2789), 1, + ACTIONS(2719), 1, anon_sym_external, - ACTIONS(2791), 1, + ACTIONS(2721), 1, sym_visibility_modifier, - ACTIONS(2793), 1, + ACTIONS(2723), 1, sym_opacity_modifier, - ACTIONS(2795), 1, + ACTIONS(2725), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1148), 10, + STATE(1106), 10, sym__module_statement, sym_attribute, sym_import, @@ -75004,396 +70941,460 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [83006] = 13, + [77487] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2797), 1, + ACTIONS(2727), 1, anon_sym_RPAREN, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2805), 1, + ACTIONS(2735), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - STATE(1581), 1, + STATE(1709), 1, sym_data_constructor_argument, - STATE(1826), 1, - sym_identifier, - STATE(1858), 1, + STATE(1797), 1, sym_label, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1780), 6, + STATE(1757), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83053] = 13, + [77534] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2805), 1, + ACTIONS(2735), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2809), 1, + ACTIONS(2739), 1, anon_sym_RPAREN, - STATE(1673), 1, + STATE(1441), 1, sym_data_constructor_argument, - STATE(1826), 1, - sym_identifier, - STATE(1858), 1, + STATE(1797), 1, sym_label, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1780), 6, + STATE(1757), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83100] = 13, + [77581] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2805), 1, + ACTIONS(2735), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2811), 1, + ACTIONS(2741), 1, anon_sym_RPAREN, - STATE(1673), 1, + STATE(1709), 1, sym_data_constructor_argument, - STATE(1826), 1, - sym_identifier, - STATE(1858), 1, + STATE(1797), 1, sym_label, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1780), 6, + STATE(1757), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83147] = 12, + [77628] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2805), 1, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2743), 1, + anon_sym_RPAREN, + ACTIONS(2745), 1, sym__name, - ACTIONS(2807), 1, + STATE(1705), 1, + sym_type_argument, + STATE(1884), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1122), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1752), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77672] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(397), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(1850), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77700] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2729), 1, + anon_sym_POUND, + ACTIONS(2731), 1, + anon_sym_fn, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2735), 1, + sym__name, + ACTIONS(2737), 1, sym__upname, - STATE(1673), 1, + STATE(1709), 1, sym_data_constructor_argument, - STATE(1826), 1, - sym_identifier, - STATE(1858), 1, + STATE(1797), 1, sym_label, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1780), 6, + STATE(1757), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83191] = 12, + [77744] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2813), 1, - anon_sym_RPAREN, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1747), 1, + ACTIONS(2747), 1, + anon_sym_RPAREN, + STATE(1705), 1, sym_type_argument, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83235] = 12, + [77788] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2817), 1, + ACTIONS(2749), 1, anon_sym_RPAREN, - STATE(1747), 1, + STATE(1721), 1, + sym_external_function_parameter, + STATE(1748), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1122), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1758), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77832] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2729), 1, + anon_sym_POUND, + ACTIONS(2731), 1, + anon_sym_fn, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + ACTIONS(2751), 1, + anon_sym_RPAREN, + STATE(1475), 1, sym_type_argument, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83279] = 12, + [77876] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2819), 1, + ACTIONS(2753), 1, anon_sym_RPAREN, - STATE(1711), 1, + STATE(1705), 1, + sym_type_argument, + STATE(1884), 1, sym_identifier, - STATE(1720), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1710), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83323] = 12, + [77920] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1738), 16, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77946] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2821), 1, + ACTIONS(2755), 1, anon_sym_RPAREN, - STATE(1747), 1, + STATE(1705), 1, sym_type_argument, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83367] = 12, + [77990] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2823), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, STATE(1573), 1, - sym_type_argument, - STATE(1826), 1, + sym_external_function_parameter, + STATE(1748), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1758), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83411] = 12, + [78034] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2825), 1, + ACTIONS(2759), 1, anon_sym_RPAREN, - STATE(1747), 1, + STATE(1498), 1, sym_type_argument, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83455] = 5, + [78078] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2827), 1, + ACTIONS(2761), 1, anon_sym_LPAREN, - STATE(1205), 1, + STATE(1183), 1, sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1767), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [83485] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(607), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(1812), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [83513] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1773), 16, + ACTIONS(1756), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_EQ, @@ -75402,109 +71403,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [83539] = 12, + [78108] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2829), 1, + ACTIONS(2763), 1, anon_sym_RPAREN, - STATE(1711), 1, - sym_identifier, - STATE(1720), 1, + STATE(1721), 1, sym_external_function_parameter, + STATE(1748), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1710), 6, + STATE(1758), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83583] = 12, + [78152] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2765), 1, + anon_sym_RPAREN, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2769), 1, anon_sym_fn, - ACTIONS(2803), 1, + STATE(1701), 1, + sym_constant_type_argument, + STATE(1884), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1370), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1749), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [78195] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - ACTIONS(2831), 1, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2771), 1, anon_sym_RPAREN, - STATE(1518), 1, - sym_type_argument, - STATE(1826), 1, + STATE(1701), 1, + sym_constant_type_argument, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, - sym__type, + STATE(1749), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [83627] = 12, + [78238] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2833), 1, + ACTIONS(2773), 1, anon_sym_RPAREN, - STATE(1636), 1, - sym_external_function_parameter, - STATE(1711), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1710), 6, + STATE(1474), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83671] = 3, + [78279] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1795), 15, + ACTIONS(1764), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -75520,723 +71549,644 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [83696] = 11, + [78304] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2835), 1, + ACTIONS(2775), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83737] = 11, + [78345] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2837), 1, + ACTIONS(2777), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1517), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83778] = 12, + [78386] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2839), 1, - anon_sym_RPAREN, - ACTIONS(2841), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2731), 1, anon_sym_fn, - STATE(1728), 1, - sym_constant_type_argument, - STATE(1826), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1721), 1, + sym_external_function_parameter, + STATE(1748), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1807), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1758), 6, + sym__type, sym_type_hole, - [83821] = 11, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [78427] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2845), 1, + ACTIONS(2779), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83862] = 11, + [78468] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1711), 1, + STATE(1705), 1, + sym_type_argument, + STATE(1884), 1, sym_identifier, - STATE(1720), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1710), 6, + STATE(1752), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83903] = 12, + [78509] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_fn, - ACTIONS(2847), 1, - anon_sym_RPAREN, - STATE(1728), 1, - sym_constant_type_argument, - STATE(1826), 1, - sym_identifier, + ACTIONS(2783), 1, + anon_sym_LPAREN, + STATE(1196), 1, + sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1807), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [83946] = 11, + ACTIONS(2781), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78538] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2849), 1, + ACTIONS(2785), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [83987] = 11, + [78579] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1747), 1, - sym_type_argument, - STATE(1826), 1, + ACTIONS(2787), 1, + anon_sym_RPAREN, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1791), 6, + STATE(1443), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84028] = 12, + [78620] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - ACTIONS(2851), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - STATE(1563), 1, + STATE(1606), 1, sym_constant_type_argument, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1807), 5, + STATE(1749), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [84071] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_fn, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2815), 1, - sym__name, - ACTIONS(2853), 1, - anon_sym_RPAREN, - STATE(1826), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1161), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1738), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [84112] = 11, + [78663] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2855), 1, + ACTIONS(2791), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1577), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84153] = 11, + [78704] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2857), 1, + ACTIONS(2793), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84194] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2861), 1, - anon_sym_LPAREN, - STATE(1262), 1, - sym_record_pattern_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2859), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [84223] = 11, + [78745] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2863), 1, + ACTIONS(2795), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1575), 6, + STATE(1497), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84264] = 11, + [78786] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - ACTIONS(2865), 1, - anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1373), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84305] = 10, + [78824] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1955), 6, + STATE(1708), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84343] = 11, + [78862] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - ACTIONS(2867), 1, + ACTIONS(2797), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1566), 5, + STATE(1703), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [84383] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2197), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [84407] = 10, + [78902] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2871), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2873), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2875), 1, - sym__name, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(816), 6, + STATE(1839), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84445] = 10, + [78940] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1782), 6, + STATE(1707), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84483] = 10, + [78978] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1941), 6, + STATE(1737), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84521] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2171), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [84545] = 10, + [79016] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1937), 6, + STATE(1629), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84583] = 11, + [79054] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - ACTIONS(2879), 1, - anon_sym_RPAREN, - STATE(1826), 1, + STATE(1701), 1, + sym_constant_type_argument, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1523), 5, + STATE(1749), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [84623] = 11, + [79094] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, + ACTIONS(2799), 1, + anon_sym_POUND, + ACTIONS(2801), 1, + anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, + ACTIONS(2805), 1, + sym__name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2841), 1, + STATE(1901), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(663), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(713), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79132] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2881), 1, - anon_sym_RPAREN, - STATE(1826), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1766), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1275), 6, + sym__type, sym_type_hole, - [84663] = 10, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79170] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2799), 1, @@ -76245,55 +72195,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, + ACTIONS(2805), 1, + sym__name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1477), 6, + STATE(704), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84701] = 11, + [79208] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2731), 1, anon_sym_fn, - STATE(1728), 1, - sym_constant_type_argument, - STATE(1826), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1807), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1240), 6, + sym__type, sym_type_hole, - [84741] = 10, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79246] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2799), 1, @@ -76302,47 +72251,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, + ACTIONS(2805), 1, + sym__name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1825), 6, + STATE(733), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84779] = 3, + [79284] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2729), 1, + anon_sym_POUND, + ACTIONS(2731), 1, + anon_sym_fn, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2115), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, + STATE(1122), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1273), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79322] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2729), 1, + anon_sym_POUND, + ACTIONS(2731), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [84803] = 10, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1122), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1290), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79360] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2799), 1, @@ -76351,32 +72335,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, + ACTIONS(2805), 1, + sym__name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1827), 6, + STATE(740), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84841] = 3, + [79398] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1970), 14, + ACTIONS(2064), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -76391,13 +72375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [84865] = 3, + [79422] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1982), 14, + ACTIONS(2052), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -76412,92 +72396,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [84889] = 10, + [79446] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1311), 6, + STATE(1180), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [84927] = 11, + [79484] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2883), 1, - anon_sym_RPAREN, - STATE(1826), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1766), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1720), 6, + sym__type, sym_type_hole, - [84967] = 10, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [79522] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2044), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - ACTIONS(2803), 1, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [79546] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2809), 1, + anon_sym_RPAREN, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1335), 6, - sym__type, + STATE(1436), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85005] = 10, + [79586] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2799), 1, @@ -76506,61 +72511,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, + ACTIONS(2805), 1, + sym__name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1225), 6, + STATE(787), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85043] = 11, + [79624] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_fn, - ACTIONS(2885), 1, - anon_sym_RPAREN, - STATE(1826), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1766), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [85083] = 3, + ACTIONS(2020), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [79648] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2095), 14, + ACTIONS(2016), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -76575,343 +72572,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85107] = 10, + [79672] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, - anon_sym_POUND, - ACTIONS(2871), 1, - anon_sym_fn, - ACTIONS(2873), 1, - sym__discard_name, - ACTIONS(2875), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2877), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2811), 1, + anon_sym_RPAREN, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(752), 6, - sym__type, + STATE(1493), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85145] = 10, + [79712] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2871), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2873), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2875), 1, - sym__name, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(781), 6, + STATE(1637), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85183] = 10, + [79750] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1933), 6, + STATE(1805), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85221] = 10, + [79788] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, - anon_sym_POUND, - ACTIONS(2871), 1, - anon_sym_fn, - ACTIONS(2873), 1, - sym__discard_name, - ACTIONS(2875), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2877), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2813), 1, + anon_sym_RPAREN, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(837), 6, - sym__type, + STATE(1703), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85259] = 10, + [79828] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2871), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2873), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2875), 1, - sym__name, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(760), 6, + STATE(1764), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85297] = 10, + [79866] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1738), 6, + STATE(1679), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85335] = 10, + [79904] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(2799), 1, anon_sym_POUND, - ACTIONS(2871), 1, + ACTIONS(2801), 1, anon_sym_fn, - ACTIONS(2873), 1, + ACTIONS(2803), 1, sym__discard_name, - ACTIONS(2875), 1, + ACTIONS(2805), 1, sym__name, - ACTIONS(2877), 1, + ACTIONS(2807), 1, sym__upname, - STATE(1896), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(843), 6, + STATE(693), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85373] = 10, + [79942] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1731), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85411] = 11, + [79980] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - ACTIONS(2887), 1, + ACTIONS(2815), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1766), 5, + STATE(1703), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [85451] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2215), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [85475] = 10, + [80020] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1939), 6, + STATE(1809), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85513] = 10, + [80058] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2871), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2873), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2875), 1, - sym__name, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - STATE(1896), 1, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(688), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(777), 6, + STATE(1807), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85551] = 3, + [80096] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1958), 14, + ACTIONS(2012), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -76926,69 +72904,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85575] = 10, + [80120] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1292), 6, - sym__type, + STATE(1703), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85613] = 10, + [80160] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1907), 6, + STATE(1722), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85651] = 3, + [80198] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2057), 14, + ACTIONS(1968), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -77003,35 +72982,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85675] = 10, + [80222] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1980), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [80246] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2731), 1, anon_sym_fn, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2815), 1, + ACTIONS(2745), 1, sym__name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1221), 6, + STATE(1227), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85713] = 10, + [80284] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2799), 1, @@ -77040,60 +73040,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(2803), 1, sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2815), 1, + ACTIONS(2805), 1, sym__name, - STATE(1826), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1161), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1325), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85751] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_fn, - ACTIONS(2803), 1, - sym__discard_name, ACTIONS(2807), 1, sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, + STATE(663), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1889), 6, + STATE(756), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [85789] = 3, + [80322] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1962), 14, + ACTIONS(1964), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -77108,13 +73080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85813] = 3, + [80346] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1966), 14, + ACTIONS(2024), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -77129,97 +73101,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85837] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_fn, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1161), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1295), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85875] = 10, + [80370] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, - anon_sym_fn, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1161), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1923), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85913] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2799), 1, - anon_sym_POUND, - ACTIONS(2801), 1, + ACTIONS(2109), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2815), 1, - sym__name, - STATE(1826), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1161), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1929), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [85951] = 3, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [80394] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2167), 14, + ACTIONS(2119), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -77234,40 +73143,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [85975] = 10, + [80418] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, + ACTIONS(2729), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2731), 1, anon_sym_fn, - STATE(1826), 1, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2745), 1, + sym__name, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1122), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1766), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1655), 6, + sym__type, sym_type_hole, - [86012] = 3, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [80456] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2889), 13, + ACTIONS(2819), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77281,13 +73191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86035] = 3, + [80479] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2891), 13, + ACTIONS(2821), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77301,13 +73211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86058] = 3, + [80502] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2893), 13, + ACTIONS(2823), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77321,13 +73231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86081] = 3, + [80525] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2895), 13, + ACTIONS(2825), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77341,13 +73251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86104] = 3, + [80548] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2897), 13, + ACTIONS(2827), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77361,13 +73271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86127] = 3, + [80571] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2899), 13, + ACTIONS(2829), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77381,13 +73291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86150] = 3, + [80594] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2895), 13, + ACTIONS(2831), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77401,13 +73311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86173] = 3, + [80617] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2901), 13, + ACTIONS(2833), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77421,13 +73331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86196] = 3, + [80640] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2903), 13, + ACTIONS(2835), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77441,13 +73351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86219] = 3, + [80663] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2905), 13, + ACTIONS(2833), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77461,33 +73371,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86242] = 3, + [80686] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2907), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [86265] = 3, + STATE(1370), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1534), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [80723] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2909), 13, + ACTIONS(2837), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77501,13 +73418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86288] = 3, + [80746] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2911), 13, + ACTIONS(2839), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77521,40 +73438,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86311] = 10, + [80769] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1493), 5, + STATE(1834), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [86348] = 3, + [80806] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2913), 13, + ACTIONS(2841), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77568,35 +73485,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86371] = 5, + [80829] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2915), 1, - anon_sym_LPAREN, - STATE(1274), 1, - sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1761), 11, - anon_sym_LBRACE, + ACTIONS(2843), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80852] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2845), 1, + anon_sym_SLASH, + STATE(1204), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1710), 11, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86398] = 3, + [80879] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2917), 13, + ACTIONS(2848), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77610,13 +73547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86421] = 3, + [80902] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2919), 13, + ACTIONS(2850), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77630,35 +73567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86444] = 5, + [80925] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, - anon_sym_SLASH, - STATE(1261), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1755), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, + ACTIONS(2852), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [86471] = 3, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80948] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2923), 13, + ACTIONS(2854), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77672,40 +73607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86494] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2803), 1, - sym__discard_name, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(2841), 1, - anon_sym_POUND, - ACTIONS(2843), 1, - anon_sym_fn, - STATE(1826), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1419), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1820), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [86531] = 3, + [80971] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2925), 13, + ACTIONS(2856), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77719,13 +73627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86554] = 3, + [80994] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2925), 13, + ACTIONS(2858), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77739,13 +73647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86577] = 3, + [81017] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2860), 1, + anon_sym_LPAREN, + STATE(1243), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2927), 13, + ACTIONS(1717), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [81044] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2862), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77759,13 +73689,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86600] = 3, + [81067] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2864), 1, + anon_sym_SLASH, + STATE(1216), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1706), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [81094] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2929), 13, + ACTIONS(2866), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77779,13 +73731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86623] = 3, + [81117] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2931), 13, + ACTIONS(2868), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77799,17 +73751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86646] = 5, + [81140] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, + ACTIONS(2864), 1, anon_sym_SLASH, - STATE(1250), 1, + STATE(1204), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1742), 11, + ACTIONS(1700), 11, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -77821,13 +73773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86673] = 3, + [81167] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2933), 13, + ACTIONS(2850), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77841,13 +73793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86696] = 3, + [81190] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2913), 13, + ACTIONS(2870), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77861,35 +73813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86719] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2935), 1, - anon_sym_SLASH, - STATE(1261), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1748), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [86746] = 3, + [81213] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2938), 13, + ACTIONS(2872), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77903,40 +73833,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86769] = 10, + [81236] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2803), 1, + ACTIONS(2733), 1, sym__discard_name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(2841), 1, + ACTIONS(2767), 1, anon_sym_POUND, - ACTIONS(2843), 1, + ACTIONS(2769), 1, anon_sym_fn, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1419), 2, + STATE(1370), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1565), 5, + STATE(1577), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [86806] = 3, + [81273] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2940), 13, + ACTIONS(2841), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77950,33 +73880,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86829] = 3, + [81296] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(499), 1, + sym__name, + ACTIONS(2733), 1, + sym__discard_name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2767), 1, + anon_sym_POUND, + ACTIONS(2769), 1, + anon_sym_fn, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2942), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [86852] = 3, + STATE(1370), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1703), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [81333] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2944), 13, + ACTIONS(2874), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -77990,55 +73927,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86875] = 4, + [81356] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, - anon_sym_SLASH, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(2876), 1, + anon_sym_DASH_GT, + STATE(1283), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1748), 11, + ACTIONS(1732), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86899] = 3, + [81384] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(2878), 1, + anon_sym_DASH_GT, + STATE(1271), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1904), 11, - anon_sym_LBRACE, + ACTIONS(1750), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86920] = 5, + [81412] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2946), 1, + ACTIONS(1712), 1, + anon_sym_SLASH, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1710), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [81436] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(2948), 1, - anon_sym_EQ, + STATE(1287), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 9, + ACTIONS(1880), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78048,13 +74011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86945] = 3, + [81461] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1918), 11, + ACTIONS(1876), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -78066,13 +74029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [86966] = 3, + [81482] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2950), 11, + ACTIONS(2880), 11, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -78084,41 +74047,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [86987] = 13, + [81503] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2952), 1, + ACTIONS(2882), 1, anon_sym_RPAREN, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, + STATE(1398), 1, + sym__name_param, + STATE(1413), 1, + sym__labeled_name_param, + STATE(1415), 1, sym__discard_param, - STATE(1447), 1, + STATE(1416), 1, + sym__labeled_discard_param, + STATE(1595), 1, + sym_identifier, + STATE(1600), 1, + sym_discard, + STATE(1745), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [81544] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1912), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [81565] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2884), 1, + sym__discard_name, + ACTIONS(2886), 1, + sym__name, + ACTIONS(2888), 1, + anon_sym_RPAREN, + STATE(1397), 1, + sym_label, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, + STATE(1415), 1, + sym__discard_param, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1811), 1, + STATE(1745), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87028] = 3, + [81606] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1940), 11, + ACTIONS(1858), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -78130,63 +74139,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87049] = 3, + [81627] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1954), 11, + ACTIONS(1872), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87070] = 13, + [81648] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - ACTIONS(2958), 1, + ACTIONS(2890), 1, anon_sym_RPAREN, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, - sym__discard_param, - STATE(1447), 1, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, + STATE(1415), 1, + sym__discard_param, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1613), 1, + STATE(1463), 1, + sym_function_parameter, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1811), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87111] = 5, + [81689] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2960), 1, + ACTIONS(2892), 1, anon_sym_LPAREN, - STATE(1313), 1, + STATE(1289), 1, sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1789), 9, + ACTIONS(1768), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78196,109 +74205,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87136] = 3, + [81714] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2894), 1, + anon_sym_DOT, + ACTIONS(2896), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1808), 11, - anon_sym_LBRACE, + ACTIONS(1742), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87157] = 13, + [81739] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - ACTIONS(2962), 1, + ACTIONS(2898), 1, anon_sym_RPAREN, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, - sym__discard_param, - STATE(1447), 1, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, - sym__labeled_discard_param, - STATE(1613), 1, - sym_identifier, - STATE(1619), 1, - sym_discard, - STATE(1811), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [87198] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2954), 1, - sym__discard_name, - ACTIONS(2956), 1, - sym__name, - ACTIONS(2964), 1, - anon_sym_RPAREN, - STATE(1441), 1, - sym_label, - STATE(1442), 1, + STATE(1415), 1, sym__discard_param, - STATE(1447), 1, - sym__name_param, - STATE(1449), 1, - sym__labeled_name_param, - STATE(1470), 1, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1811), 1, + STATE(1745), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87239] = 3, + [81780] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2900), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1856), 11, - anon_sym_LBRACE, + ACTIONS(1834), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, anon_sym_fn, - anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87260] = 5, + [81805] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2966), 1, - anon_sym_DOT, - ACTIONS(2968), 1, - anon_sym_as, + ACTIONS(69), 1, + anon_sym_LBRACE, + STATE(1284), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1777), 9, + ACTIONS(1900), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78308,17 +74293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87285] = 5, + [81830] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2970), 1, + ACTIONS(2904), 1, anon_sym_LBRACE, - ACTIONS(2972), 1, + ACTIONS(2906), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1910), 9, + ACTIONS(1904), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78328,71 +74313,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87310] = 3, + [81855] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1894), 11, + ACTIONS(1846), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, - anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87331] = 5, + [81876] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2974), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1928), 9, + ACTIONS(1810), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87356] = 5, + [81897] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2978), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1860), 9, + ACTIONS(1818), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87381] = 3, + [81918] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1842), 11, + ACTIONS(1916), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -78404,177 +74385,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87402] = 13, + [81939] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - ACTIONS(2982), 1, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, - sym__discard_param, - STATE(1447), 1, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, + STATE(1415), 1, + sym__discard_param, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1491), 1, + STATE(1551), 1, sym_function_parameter, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87443] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1900), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [87464] = 13, + [81980] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - ACTIONS(2984), 1, + ACTIONS(2910), 1, anon_sym_RPAREN, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, - sym__discard_param, - STATE(1447), 1, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, + STATE(1415), 1, + sym__discard_param, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1488), 1, - sym_function_parameter, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, + STATE(1745), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87505] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2988), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2986), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [87527] = 3, + [82021] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1852), 10, + ACTIONS(1814), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87547] = 4, + [82042] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2990), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2219), 9, + ACTIONS(1806), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87569] = 4, + [82062] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2992), 1, - anon_sym_as, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(251), 1, + sym__upname, + ACTIONS(2912), 1, + anon_sym_DASH, + ACTIONS(2914), 1, + sym__name, + STATE(613), 1, + sym_label, + STATE(919), 1, + sym_constructor_name, + STATE(1087), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1922), 9, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + [82096] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1862), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87591] = 3, + [82116] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2916), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1872), 10, + ACTIONS(1798), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87611] = 4, + [82138] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2994), 1, - anon_sym_LBRACE, + ACTIONS(2918), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2069), 9, + ACTIONS(1828), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78584,23 +74553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87633] = 10, + [82160] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(97), 1, sym__decimal, ACTIONS(101), 1, sym__upname, - ACTIONS(2996), 1, + ACTIONS(2920), 1, anon_sym_DASH, - ACTIONS(2998), 1, + ACTIONS(2922), 1, sym__name, - STATE(593), 1, + STATE(550), 1, sym_constructor_name, - STATE(1118), 1, - sym_integer, - STATE(1135), 1, + STATE(1068), 1, sym_label, + STATE(1093), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -78608,13 +74577,31 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - [87667] = 3, + [82194] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2926), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2924), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [82216] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1876), 10, + ACTIONS(1866), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78625,81 +74612,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87687] = 12, + [82236] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(2956), 1, + ACTIONS(2886), 1, sym__name, - STATE(1441), 1, + STATE(1397), 1, sym_label, - STATE(1442), 1, - sym__discard_param, - STATE(1447), 1, + STATE(1398), 1, sym__name_param, - STATE(1449), 1, + STATE(1413), 1, sym__labeled_name_param, - STATE(1470), 1, + STATE(1415), 1, + sym__discard_param, + STATE(1416), 1, sym__labeled_discard_param, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1811), 1, + STATE(1745), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [87725] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3000), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1846), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [87747] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(247), 1, - sym__decimal, - ACTIONS(251), 1, - sym__upname, - ACTIONS(3002), 1, - anon_sym_DASH, - ACTIONS(3004), 1, - sym__name, - STATE(678), 1, - sym_label, - STATE(949), 1, - sym_constructor_name, - STATE(1121), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(245), 3, - sym__hex, - sym__octal, - sym__binary, - [87781] = 3, + [82274] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1804), 10, + ACTIONS(1842), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78710,94 +74655,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87801] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2061), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [87820] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2161), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [87839] = 4, + [82294] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3006), 1, - anon_sym_DOT, + ACTIONS(2928), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2986), 8, - anon_sym_if, + ACTIONS(2924), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [87860] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2006), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [87879] = 3, + anon_sym_DOT_DOT, + [82315] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 9, + ACTIONS(505), 9, anon_sym_if, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DOT, anon_sym_as, anon_sym_DASH_GT, anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [87898] = 3, + [82334] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 9, + ACTIONS(2056), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78807,47 +74704,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87917] = 3, + [82353] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(611), 9, + ACTIONS(397), 9, anon_sym_if, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_DASH_GT, anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [87936] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3010), 1, - anon_sym_as, - ACTIONS(3012), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3008), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [87959] = 3, + [82372] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2149), 9, + ACTIONS(1956), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78857,13 +74736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87978] = 3, + [82391] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1990), 9, + ACTIONS(1936), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78873,13 +74752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [87997] = 3, + [82410] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2145), 9, + ACTIONS(1988), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78889,13 +74768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88016] = 3, + [82429] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2065), 9, + ACTIONS(2151), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78905,29 +74784,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88035] = 3, + [82448] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2201), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [88054] = 3, + ACTIONS(524), 9, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [82467] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2091), 9, + ACTIONS(2032), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78937,30 +74816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88073] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3014), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2986), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [88094] = 3, + [82486] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2153), 9, + ACTIONS(2036), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78970,13 +74832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88113] = 3, + [82505] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 9, + ACTIONS(2048), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -78986,13 +74848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88132] = 3, + [82524] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2014), 9, + ACTIONS(2133), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79002,13 +74864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88151] = 3, + [82543] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2137), 9, + ACTIONS(2113), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79018,29 +74880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88170] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(569), 9, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [88189] = 3, + [82562] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1974), 9, + ACTIONS(2008), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79050,13 +74896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88208] = 3, + [82581] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2075), 9, + ACTIONS(1904), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79066,13 +74912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88227] = 3, + [82600] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2129), 9, + ACTIONS(1920), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79082,13 +74928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88246] = 3, + [82619] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 9, + ACTIONS(1992), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79098,13 +74944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88265] = 3, + [82638] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2099), 9, + ACTIONS(1940), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79114,13 +74960,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88284] = 3, + [82657] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2932), 1, + anon_sym_as, + ACTIONS(2934), 1, + anon_sym_LT_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2930), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [82680] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2205), 9, + ACTIONS(2068), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79130,13 +74994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88303] = 3, + [82699] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1978), 9, + ACTIONS(1976), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79146,33 +75010,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88322] = 7, + [82718] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(427), 1, + ACTIONS(2936), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2924), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [82739] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(497), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - STATE(1966), 3, + STATE(1863), 3, sym__pattern_bit_string_segment_argument, sym_integer, sym_identifier, - [88349] = 3, + [82766] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2103), 9, + ACTIONS(2145), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79182,13 +75063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88368] = 3, + [82785] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 9, + ACTIONS(1948), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79198,13 +75079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88387] = 3, + [82804] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2010), 9, + ACTIONS(1972), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79214,13 +75095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88406] = 3, + [82823] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2185), 9, + ACTIONS(1952), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79230,13 +75111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88425] = 3, + [82842] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 9, + ACTIONS(1944), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79246,13 +75127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88444] = 3, + [82861] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2175), 9, + ACTIONS(2141), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79262,13 +75143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88463] = 3, + [82880] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 9, + ACTIONS(2060), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79278,13 +75159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88482] = 3, + [82899] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1986), 9, + ACTIONS(2137), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -79294,57 +75175,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [88501] = 10, + [82918] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(3018), 1, + ACTIONS(2940), 1, anon_sym_RPAREN, - STATE(1444), 1, + STATE(1406), 1, sym__name_param, - STATE(1455), 1, + STATE(1408), 1, sym__discard_param, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1756), 1, + STATE(1750), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88533] = 10, + [82950] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(680), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [82968] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(499), 1, sym__name, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(3020), 1, + ACTIONS(2942), 1, anon_sym_RPAREN, - STATE(1444), 1, + STATE(1406), 1, sym__name_param, - STATE(1455), 1, + STATE(1408), 1, sym__discard_param, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, - STATE(1756), 1, + STATE(1610), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88565] = 3, + [83000] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(704), 8, + ACTIONS(684), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -79353,37 +75249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [88583] = 10, + [83018] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(3022), 1, + ACTIONS(2944), 1, anon_sym_RPAREN, - STATE(1444), 1, + STATE(1406), 1, sym__name_param, - STATE(1455), 1, + STATE(1408), 1, sym__discard_param, - STATE(1610), 1, - sym_anonymous_function_parameter, - STATE(1613), 1, + STATE(1595), 1, sym_identifier, - STATE(1619), 1, + STATE(1600), 1, sym_discard, + STATE(1750), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88615] = 4, + [83050] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3024), 1, + ACTIONS(2946), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2986), 7, + ACTIONS(2924), 7, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -79391,13 +75287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [88635] = 3, + [83070] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(856), 8, + ACTIONS(546), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -79406,6835 +75302,6848 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [88653] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(603), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [88671] = 9, + [83088] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3026), 1, + ACTIONS(2948), 1, anon_sym_RBRACE, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - STATE(1661), 1, - sym_identifier, - STATE(1662), 1, - sym_type_identifier, - STATE(1732), 1, + STATE(1476), 1, sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [88700] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(429), 1, - sym__name, - ACTIONS(2954), 1, - sym__discard_name, - STATE(1444), 1, - sym__name_param, - STATE(1455), 1, - sym__discard_param, - STATE(1613), 1, + STATE(1598), 1, sym_identifier, - STATE(1619), 1, - sym_discard, - STATE(1756), 1, - sym_anonymous_function_parameter, + STATE(1599), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88729] = 9, + [83117] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - ACTIONS(3030), 1, + ACTIONS(2952), 1, anon_sym_RBRACE, - STATE(1661), 1, + STATE(1598), 1, sym_identifier, - STATE(1662), 1, + STATE(1599), 1, sym_type_identifier, - STATE(1732), 1, + STATE(1731), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88758] = 9, + [83146] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - ACTIONS(3032), 1, + ACTIONS(2954), 1, anon_sym_RBRACE, - STATE(1661), 1, + STATE(1598), 1, sym_identifier, - STATE(1662), 1, + STATE(1599), 1, sym_type_identifier, - STATE(1732), 1, + STATE(1731), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88787] = 9, + [83175] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - ACTIONS(3034), 1, + ACTIONS(2956), 1, anon_sym_RBRACE, - STATE(1501), 1, + STATE(1596), 1, sym_unqualified_import, - STATE(1661), 1, + STATE(1598), 1, sym_identifier, - STATE(1662), 1, + STATE(1599), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88816] = 9, + [83204] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2958), 7, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [83221] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - ACTIONS(3036), 1, + ACTIONS(2960), 1, anon_sym_RBRACE, - STATE(1661), 1, + STATE(1598), 1, sym_identifier, - STATE(1662), 1, + STATE(1599), 1, sym_type_identifier, - STATE(1732), 1, + STATE(1731), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88845] = 3, + [83250] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(499), 1, + sym__name, + ACTIONS(2884), 1, + sym__discard_name, + STATE(1406), 1, + sym__name_param, + STATE(1408), 1, + sym__discard_param, + STATE(1595), 1, + sym_identifier, + STATE(1600), 1, + sym_discard, + STATE(1750), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3038), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [88862] = 9, + [83279] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(99), 1, sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, + ACTIONS(2950), 1, anon_sym_type, - ACTIONS(3040), 1, + ACTIONS(2962), 1, anon_sym_RBRACE, - STATE(1659), 1, - sym_unqualified_import, - STATE(1661), 1, + STATE(1598), 1, sym_identifier, - STATE(1662), 1, + STATE(1599), 1, sym_type_identifier, + STATE(1731), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [88891] = 6, + [83308] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3042), 1, - anon_sym_DQUOTE2, - ACTIONS(3046), 1, - sym_quoted_content, + ACTIONS(2807), 1, + sym__upname, + ACTIONS(2938), 1, + sym__name, + STATE(708), 1, + sym_type_name, + STATE(1901), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1361), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [88913] = 6, + STATE(649), 2, + sym_type_identifier, + sym_remote_type_identifier, + [83332] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(427), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(1926), 1, anon_sym_DASH, - STATE(1852), 1, + STATE(215), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(425), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - [88935] = 7, + [83354] = 7, ACTIONS(3), 1, sym_module_comment, ACTIONS(2807), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1331), 1, + STATE(681), 1, sym_type_name, - STATE(1826), 1, + STATE(1901), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, + STATE(649), 2, sym_type_identifier, sym_remote_type_identifier, - [88959] = 6, + [83378] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3048), 1, + ACTIONS(99), 1, + sym__name, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2950), 1, + anon_sym_type, + STATE(1598), 1, + sym_identifier, + STATE(1599), 1, + sym_type_identifier, + STATE(1731), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [83404] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2964), 1, anon_sym_DQUOTE2, - ACTIONS(3050), 1, + ACTIONS(2968), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1388), 2, + STATE(1326), 2, sym_escape_sequence, aux_sym_string_repeat1, - [88981] = 6, + [83426] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3052), 1, - anon_sym_DQUOTE2, - ACTIONS(3054), 1, + ACTIONS(2968), 1, sym_quoted_content, + ACTIONS(2970), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1385), 2, + STATE(1326), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89003] = 6, + [83448] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(97), 1, - sym__decimal, - ACTIONS(2996), 1, - anon_sym_DASH, - STATE(693), 1, - sym_integer, + ACTIONS(2972), 1, + anon_sym_as, + ACTIONS(2974), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(95), 3, - sym__hex, - sym__octal, - sym__binary, - [89025] = 7, + ACTIONS(2930), 4, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE, + [83468] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(791), 1, + STATE(1680), 1, sym_type_name, - STATE(1896), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(687), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89049] = 6, + [83492] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3056), 1, - anon_sym_DQUOTE2, - ACTIONS(3058), 1, - sym_quoted_content, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1362), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89071] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3050), 1, - sym_quoted_content, - ACTIONS(3060), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1388), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89093] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3050), 1, + ACTIONS(2968), 1, sym_quoted_content, - ACTIONS(3062), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1388), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89115] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(427), 1, - sym__decimal, - ACTIONS(3064), 1, - anon_sym_DASH, - STATE(242), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(425), 3, - sym__hex, - sym__octal, - sym__binary, - [89137] = 7, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1326), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [83514] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(3016), 1, - sym__name, - STATE(1793), 1, - sym_type_name, - STATE(1826), 1, - sym_identifier, + ACTIONS(2978), 1, + anon_sym_DQUOTE2, + ACTIONS(2980), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, - sym_type_identifier, - sym_remote_type_identifier, - [89161] = 6, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1310), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [83536] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3066), 1, + ACTIONS(2982), 1, anon_sym_DQUOTE2, - ACTIONS(3068), 1, + ACTIONS(2984), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1356), 2, + STATE(1311), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89183] = 6, + [83558] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1182), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(3070), 1, + ACTIONS(2986), 1, anon_sym_DASH, - STATE(451), 1, + STATE(70), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1180), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - [89205] = 6, + [83580] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(497), 1, sym__decimal, - ACTIONS(3072), 1, + ACTIONS(1926), 1, anon_sym_DASH, - STATE(86), 1, + STATE(1856), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, + ACTIONS(495), 3, sym__hex, sym__octal, sym__binary, - [89227] = 7, + [83602] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1707), 1, + STATE(1239), 1, sym_type_name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89251] = 6, + [83626] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3050), 1, - sym_quoted_content, - ACTIONS(3074), 1, - anon_sym_DQUOTE2, + ACTIONS(1150), 1, + sym__decimal, + ACTIONS(2988), 1, + anon_sym_DASH, + STATE(46), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1388), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89273] = 7, + ACTIONS(1148), 3, + sym__hex, + sym__octal, + sym__binary, + [83648] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1282), 1, + STATE(1274), 1, sym_type_name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89297] = 7, + [83672] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(3016), 1, - sym__name, - STATE(1307), 1, - sym_type_name, - STATE(1826), 1, - sym_identifier, + ACTIONS(2990), 1, + anon_sym_DQUOTE2, + ACTIONS(2992), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, - sym_type_identifier, - sym_remote_type_identifier, - [89321] = 7, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1314), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [83694] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - ACTIONS(3016), 1, - sym__name, - STATE(1725), 1, - sym_type_name, - STATE(1826), 1, - sym_identifier, + ACTIONS(2994), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, - sym_type_identifier, - sym_remote_type_identifier, - [89345] = 6, + ACTIONS(1798), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + [83712] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3076), 1, - anon_sym_DQUOTE2, - ACTIONS(3078), 1, + ACTIONS(2968), 1, sym_quoted_content, + ACTIONS(2996), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1369), 2, + STATE(1326), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89367] = 6, + [83734] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3080), 1, - anon_sym_DQUOTE2, - ACTIONS(3082), 1, + ACTIONS(2968), 1, sym_quoted_content, + ACTIONS(2998), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1379), 2, + STATE(1326), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89389] = 6, + [83756] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(247), 1, - sym__decimal, - ACTIONS(3002), 1, - anon_sym_DASH, - STATE(946), 1, - sym_integer, + ACTIONS(3000), 1, + anon_sym_DQUOTE2, + ACTIONS(3005), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(245), 3, - sym__hex, - sym__octal, - sym__binary, - [89411] = 7, + ACTIONS(3002), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1326), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [83778] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1682), 1, + STATE(1742), 1, sym_type_name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89435] = 6, + [83802] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3050), 1, - sym_quoted_content, - ACTIONS(3084), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE2, + ACTIONS(3010), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1388), 2, + STATE(1324), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89457] = 6, + [83824] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3086), 1, - anon_sym_DQUOTE2, - ACTIONS(3088), 1, - sym_quoted_content, + ACTIONS(2807), 1, + sym__upname, + ACTIONS(2938), 1, + sym__name, + STATE(737), 1, + sym_type_name, + STATE(1901), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1382), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89479] = 6, + STATE(649), 2, + sym_type_identifier, + sym_remote_type_identifier, + [83848] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3050), 1, - sym_quoted_content, - ACTIONS(3090), 1, + ACTIONS(247), 1, + sym__decimal, + ACTIONS(2912), 1, + anon_sym_DASH, + STATE(915), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(245), 3, + sym__hex, + sym__octal, + sym__binary, + [83870] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3012), 1, anon_sym_DQUOTE2, + ACTIONS(3014), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1388), 2, + STATE(1346), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89501] = 4, + [83892] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3092), 1, - anon_sym_DOT, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(1926), 1, + anon_sym_DASH, + STATE(1837), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1846), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - [89519] = 6, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + [83914] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1018), 1, + ACTIONS(1106), 1, sym__decimal, - ACTIONS(3094), 1, + ACTIONS(3016), 1, anon_sym_DASH, - STATE(605), 1, + STATE(568), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1104), 3, sym__hex, sym__octal, sym__binary, - [89541] = 6, + [83936] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3050), 1, - sym_quoted_content, - ACTIONS(3096), 1, + ACTIONS(3018), 1, anon_sym_DQUOTE2, + ACTIONS(3020), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1388), 2, + STATE(1325), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89563] = 7, + [83958] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, - sym__upname, - ACTIONS(3016), 1, - sym__name, - STATE(734), 1, - sym_type_name, - STATE(1896), 1, - sym_identifier, + ACTIONS(497), 1, + sym__decimal, + ACTIONS(3022), 1, + anon_sym_DASH, + STATE(215), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(687), 2, - sym_type_identifier, - sym_remote_type_identifier, - [89587] = 7, + ACTIONS(495), 3, + sym__hex, + sym__octal, + sym__binary, + [83980] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(787), 1, + STATE(1650), 1, sym_type_name, - STATE(1896), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(687), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89611] = 6, + [84004] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3050), 1, + ACTIONS(2968), 1, sym_quoted_content, - ACTIONS(3098), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3044), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(1388), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [89633] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3100), 1, - anon_sym_as, - ACTIONS(3102), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3008), 4, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [89653] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3104), 1, + ACTIONS(3024), 1, anon_sym_DQUOTE2, - ACTIONS(3106), 1, - sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1377), 2, + STATE(1326), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89675] = 6, + [84026] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3108), 1, + ACTIONS(3026), 1, anon_sym_DQUOTE2, - ACTIONS(3113), 1, + ACTIONS(3028), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3110), 2, + ACTIONS(2966), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(1388), 2, + STATE(1337), 2, sym_escape_sequence, aux_sym_string_repeat1, - [89697] = 6, + [84048] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(427), 1, + ACTIONS(1064), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(3030), 1, anon_sym_DASH, - STATE(1818), 1, + STATE(422), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(425), 3, + ACTIONS(1062), 3, sym__hex, sym__octal, sym__binary, - [89719] = 7, + [84070] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, - sym__upname, - ACTIONS(3016), 1, - sym__name, - STATE(745), 1, - sym_type_name, - STATE(1896), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(687), 2, - sym_type_identifier, - sym_remote_type_identifier, - [89743] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(427), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(2081), 1, + ACTIONS(2920), 1, anon_sym_DASH, - STATE(242), 1, + STATE(664), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(425), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - [89765] = 6, + [84092] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1102), 1, - sym__decimal, - ACTIONS(3116), 1, - anon_sym_DASH, - STATE(30), 1, - sym_integer, + ACTIONS(3032), 1, + anon_sym_DQUOTE2, + ACTIONS(3034), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1100), 3, - sym__hex, - sym__octal, - sym__binary, - [89787] = 7, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1347), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [84114] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1269), 1, + STATE(1241), 1, sym_type_name, - STATE(1826), 1, + STATE(1884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1247), 2, + STATE(1211), 2, sym_type_identifier, sym_remote_type_identifier, - [89811] = 8, + [84138] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(2807), 1, + ACTIONS(2737), 1, sym__upname, - ACTIONS(3028), 1, - anon_sym_type, - STATE(1661), 1, + ACTIONS(2938), 1, + sym__name, + STATE(1657), 1, + sym_type_name, + STATE(1884), 1, sym_identifier, - STATE(1662), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1211), 2, sym_type_identifier, - STATE(1732), 1, - sym_unqualified_import, + sym_remote_type_identifier, + [84162] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2737), 1, + sym__upname, + ACTIONS(2938), 1, + sym__name, + STATE(1276), 1, + sym_type_name, + STATE(1884), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [89837] = 5, + STATE(1211), 2, + sym_type_identifier, + sym_remote_type_identifier, + [84186] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(509), 1, - sym__discard_name, - ACTIONS(511), 1, + ACTIONS(2807), 1, + sym__upname, + ACTIONS(2938), 1, sym__name, + STATE(732), 1, + sym_type_name, + STATE(1901), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [89856] = 7, + STATE(649), 2, + sym_type_identifier, + sym_remote_type_identifier, + [84210] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2295), 1, - anon_sym_DOT_DOT, - ACTIONS(3118), 1, - anon_sym_COMMA, - ACTIONS(3120), 1, - anon_sym_RBRACK, - STATE(1400), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1860), 1, - sym_list_pattern_tail, + ACTIONS(2968), 1, + sym_quoted_content, + ACTIONS(3036), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [89879] = 5, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1326), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [84232] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3122), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(2968), 1, + sym_quoted_content, + ACTIONS(3038), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2383), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [89898] = 5, + ACTIONS(2966), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1326), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [84254] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3125), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(501), 1, + sym__upname, + STATE(1404), 1, + sym_constructor_name, + STATE(1779), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3128), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [89917] = 6, + STATE(1362), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [84275] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(499), 1, sym__name, - ACTIONS(2954), 1, + ACTIONS(2884), 1, sym__discard_name, - ACTIONS(3130), 1, + ACTIONS(3040), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1884), 2, + STATE(1815), 2, sym_identifier, sym_discard, - [89938] = 7, + [84296] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2295), 1, + ACTIONS(2225), 1, anon_sym_DOT_DOT, - ACTIONS(3132), 1, + ACTIONS(3042), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3044), 1, anon_sym_RBRACK, - STATE(1398), 1, + STATE(1372), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1930), 1, + STATE(1814), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [89961] = 5, + [84319] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1522), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_as, + ACTIONS(3048), 1, + anon_sym_COMMA, + STATE(1354), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(682), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT_GT, - [89980] = 6, + ACTIONS(3046), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [84338] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, - sym__upname, - STATE(1464), 1, - sym_constructor_name, - STATE(1853), 1, - sym_data_constructors, + ACTIONS(2000), 1, + anon_sym_RPAREN, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(3050), 1, + anon_sym_COMMA, + STATE(1405), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1810), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [90001] = 6, + [84361] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, - sym__upname, - STATE(1464), 1, - sym_constructor_name, - STATE(1908), 1, - sym_data_constructors, + ACTIONS(2972), 1, + anon_sym_as, + ACTIONS(3052), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [90022] = 7, + ACTIONS(2930), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, + [84380] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2002), 1, - anon_sym_DOT_DOT, - ACTIONS(3136), 1, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(3138), 1, - anon_sym_RPAREN, - STATE(1412), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1911), 1, - sym_pattern_spread, + STATE(1354), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90045] = 6, + ACTIONS(3054), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [84399] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - STATE(1464), 1, + STATE(1404), 1, sym_constructor_name, - STATE(1910), 1, + STATE(1885), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, + STATE(1362), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [90066] = 5, + [84420] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3142), 1, - anon_sym_COMMA, - STATE(1408), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(501), 1, + sym__upname, + STATE(1404), 1, + sym_constructor_name, + STATE(1893), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3140), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [90085] = 6, + STATE(1362), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [84441] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3144), 1, - anon_sym_RBRACE, - ACTIONS(3146), 1, - sym__upname, - STATE(1464), 1, - sym_constructor_name, + ACTIONS(586), 1, + sym__discard_name, + ACTIONS(588), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1407), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [90106] = 5, + ACTIONS(397), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [84460] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3149), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - STATE(1408), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3128), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [90125] = 6, + ACTIONS(2295), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [84479] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, + ACTIONS(501), 1, sym__upname, - ACTIONS(3152), 1, - anon_sym_RBRACE, - STATE(1464), 1, + STATE(1404), 1, sym_constructor_name, + STATE(1892), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1407), 2, + STATE(1362), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [90146] = 5, + [84500] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3156), 1, - anon_sym_COMMA, - STATE(1406), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(3062), 1, + anon_sym_type, + ACTIONS(3064), 1, + anon_sym_const, + ACTIONS(3066), 1, + anon_sym_fn, + ACTIONS(3068), 1, + anon_sym_external, + ACTIONS(3070), 1, + sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3154), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [90165] = 5, + [84523] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1518), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_as, + ACTIONS(501), 1, + sym__upname, + STATE(1404), 1, + sym_constructor_name, + STATE(1813), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(660), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT_GT, - [90184] = 7, + STATE(1362), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [84544] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1998), 1, - anon_sym_RPAREN, - ACTIONS(2002), 1, - anon_sym_DOT_DOT, - ACTIONS(3158), 1, - anon_sym_COMMA, - STATE(1438), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1847), 1, - sym_pattern_spread, + ACTIONS(501), 1, + sym__upname, + ACTIONS(3072), 1, + anon_sym_RBRACE, + STATE(1404), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90207] = 6, + STATE(1363), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [84565] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, + ACTIONS(3074), 1, + anon_sym_RBRACE, + ACTIONS(3076), 1, sym__upname, - STATE(1464), 1, + STATE(1404), 1, sym_constructor_name, - STATE(1920), 1, - sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, + STATE(1363), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [90228] = 6, + [84586] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, - sym__upname, - STATE(1464), 1, - sym_constructor_name, - STATE(1956), 1, - sym_data_constructors, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(1890), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [90249] = 5, + ACTIONS(638), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT_GT, + [84605] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3100), 1, + ACTIONS(1478), 1, + anon_sym_LPAREN, + ACTIONS(1886), 1, anon_sym_as, - ACTIONS(3160), 1, - anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3008), 3, + ACTIONS(644), 3, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LT_DASH, - [90268] = 7, + anon_sym_GT_GT, + [84624] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3162), 1, - anon_sym_type, - ACTIONS(3164), 1, - anon_sym_const, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_external, - ACTIONS(3170), 1, - sym_opacity_modifier, + ACTIONS(3081), 1, + anon_sym_COMMA, + STATE(1351), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90291] = 7, + ACTIONS(3079), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [84643] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3172), 1, + ACTIONS(3083), 1, anon_sym_type, - ACTIONS(3174), 1, + ACTIONS(3085), 1, anon_sym_const, - ACTIONS(3176), 1, + ACTIONS(3087), 1, anon_sym_fn, - ACTIONS(3178), 1, + ACTIONS(3089), 1, anon_sym_external, - ACTIONS(3180), 1, + ACTIONS(3091), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90314] = 6, + [84666] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, + ACTIONS(2004), 1, + anon_sym_DOT_DOT, + ACTIONS(3093), 1, + anon_sym_COMMA, + ACTIONS(3095), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1782), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84689] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(501), 1, sym__upname, - STATE(1464), 1, + STATE(1404), 1, sym_constructor_name, - STATE(1888), 1, + STATE(1844), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1409), 2, + STATE(1362), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [90335] = 5, + [84710] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3182), 1, + ACTIONS(3097), 1, anon_sym_LPAREN, - STATE(1652), 1, + STATE(1613), 1, sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3184), 3, + ACTIONS(3099), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [90354] = 6, + [84729] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(940), 1, + ACTIONS(3101), 1, + anon_sym_COMMA, + STATE(1371), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3054), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(942), 1, anon_sym_DOT_DOT, - ACTIONS(3186), 1, + [84748] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2225), 1, + anon_sym_DOT_DOT, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3106), 1, + anon_sym_RBRACK, + STATE(1371), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1778), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90374] = 5, + [84771] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(2954), 1, - sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1303), 2, - sym_identifier, - sym_discard, - [90392] = 6, + ACTIONS(3108), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_DASH, + [84785] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(988), 1, + ACTIONS(946), 1, anon_sym_RBRACK, - ACTIONS(990), 1, + ACTIONS(948), 1, anon_sym_DOT_DOT, - ACTIONS(3188), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(1397), 1, + STATE(1358), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90412] = 4, + [84805] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3112), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + sym__name, + STATE(1698), 1, + sym_record_update_argument, + STATE(1820), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84825] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(2884), 1, + sym__discard_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1280), 2, + sym_identifier, + sym_discard, + [84843] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3192), 1, + ACTIONS(3118), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3190), 3, + ACTIONS(3116), 3, sym__hex, sym__octal, sym__binary, - [90428] = 5, + [84859] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3114), 1, + sym__name, + STATE(1608), 1, + sym_record_update_argument, + STATE(1820), 1, + sym_label, + STATE(1897), 1, + sym_record_update_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84879] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3194), 1, + ACTIONS(3120), 1, anon_sym_DASH, - STATE(1465), 1, + STATE(1401), 1, aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2079), 2, + ACTIONS(2117), 2, anon_sym_COMMA, anon_sym_GT_GT, - [90446] = 4, + [84897] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3198), 1, - sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(2884), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3196), 3, - sym__hex, - sym__octal, - sym__binary, - [90462] = 4, + STATE(1272), 2, + sym_identifier, + sym_discard, + [84915] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3202), 1, + ACTIONS(3124), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3200), 3, + ACTIONS(3122), 3, sym__hex, sym__octal, sym__binary, - [90478] = 6, + [84931] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(3114), 1, sym__name, - STATE(1539), 1, + STATE(1608), 1, sym_record_update_argument, - STATE(1865), 1, + STATE(1820), 1, sym_label, - STATE(1959), 1, + STATE(1864), 1, sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90498] = 6, + [84951] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3128), 1, + sym__decimal, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3126), 3, + sym__hex, + sym__octal, + sym__binary, + [84967] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(914), 1, + anon_sym_RBRACK, + ACTIONS(916), 1, + anon_sym_DOT_DOT, + ACTIONS(3130), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84987] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(3114), 1, sym__name, - STATE(1539), 1, + STATE(1608), 1, sym_record_update_argument, - STATE(1865), 1, - sym_label, - STATE(1893), 1, + STATE(1818), 1, sym_record_update_arguments, + STATE(1820), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90518] = 5, + [85007] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3208), 1, + ACTIONS(3134), 1, anon_sym_DASH, - STATE(1451), 1, + STATE(1386), 1, aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3206), 2, + ACTIONS(3132), 2, anon_sym_COMMA, anon_sym_GT_GT, - [90536] = 6, + [85025] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(930), 1, - anon_sym_RBRACK, - ACTIONS(932), 1, - anon_sym_DOT_DOT, - ACTIONS(3210), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3114), 1, + sym__name, + STATE(1608), 1, + sym_record_update_argument, + STATE(1820), 1, + sym_label, + STATE(1899), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90556] = 6, + [85045] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(936), 1, - anon_sym_RBRACK, - ACTIONS(938), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(3137), 1, + sym__name, + STATE(65), 1, + sym_constructor_name, + STATE(800), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90576] = 4, + [85065] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3216), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(3139), 1, + sym__discard_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(774), 2, + sym_identifier, + sym_discard, + [85083] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3143), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3214), 3, + ACTIONS(3141), 3, sym__hex, sym__octal, sym__binary, - [90592] = 5, + [85099] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(950), 1, + anon_sym_RBRACK, + ACTIONS(952), 1, + anon_sym_DOT_DOT, + ACTIONS(3145), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85119] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(501), 1, + sym__upname, + ACTIONS(3114), 1, + sym__name, + STATE(196), 1, + sym_constructor_name, + STATE(613), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85139] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3220), 1, + ACTIONS(3149), 1, anon_sym_PIPE, - STATE(1460), 1, + STATE(1425), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3218), 2, + ACTIONS(3147), 2, anon_sym_if, anon_sym_DASH_GT, - [90610] = 4, + [85157] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3224), 1, - sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2922), 1, + sym__name, + STATE(550), 1, + sym_constructor_name, + STATE(613), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3222), 3, - sym__hex, - sym__octal, - sym__binary, - [90626] = 6, + [85177] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, - sym__upname, - ACTIONS(3204), 1, + ACTIONS(3114), 1, sym__name, - STATE(234), 1, - sym_constructor_name, - STATE(678), 1, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(1698), 1, + sym_record_update_argument, + STATE(1820), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90646] = 5, + [85197] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3226), 1, + ACTIONS(3155), 1, anon_sym_DASH, - STATE(1467), 1, + STATE(1396), 1, aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2189), 2, + ACTIONS(3153), 2, anon_sym_COMMA, anon_sym_GT_GT, - [90664] = 5, + [85215] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3228), 1, - anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(499), 1, + sym__name, + ACTIONS(2884), 1, + sym__discard_name, + STATE(1579), 1, + sym_discard, + STATE(1582), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85235] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3160), 1, + anon_sym_COLON, + STATE(1756), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3231), 2, + ACTIONS(3158), 2, + anon_sym_COMMA, anon_sym_RPAREN, + [85253] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(942), 1, anon_sym_RBRACK, - [90682] = 5, + ACTIONS(944), 1, + anon_sym_DOT_DOT, + ACTIONS(3162), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85273] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3233), 1, + ACTIONS(3164), 1, + anon_sym_DASH, + STATE(1386), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2040), 2, anon_sym_COMMA, - STATE(1438), 1, - aux_sym_record_pattern_arguments_repeat1, + anon_sym_GT_GT, + [85291] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3168), 1, + anon_sym_DASH, + STATE(1401), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3236), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [90700] = 6, + ACTIONS(3166), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [85309] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3173), 1, + sym__decimal, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3171), 3, + sym__hex, + sym__octal, + sym__binary, + [85325] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(3114), 1, sym__name, - STATE(1539), 1, + STATE(1608), 1, sym_record_update_argument, - STATE(1865), 1, + STATE(1820), 1, sym_label, - STATE(1940), 1, + STATE(1825), 1, sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90720] = 6, + [85345] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - sym__name, - STATE(1539), 1, - sym_record_update_argument, - STATE(1854), 1, - sym_record_update_arguments, - STATE(1865), 1, - sym_label, + ACTIONS(3177), 1, + anon_sym_LPAREN, + STATE(1744), 1, + sym_data_constructor_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3175), 2, + anon_sym_RBRACE, + sym__upname, + [85363] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(1405), 1, + aux_sym_record_pattern_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3182), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [85381] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3160), 1, + anon_sym_COLON, + STATE(1735), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90740] = 6, + ACTIONS(3184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [85399] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(2954), 1, + ACTIONS(3139), 1, sym__discard_name, - STATE(1647), 1, - sym_identifier, - STATE(1658), 1, - sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90760] = 5, + STATE(731), 2, + sym_identifier, + sym_discard, + [85417] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(3160), 1, anon_sym_COLON, - STATE(1701), 1, + STATE(1724), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3238), 2, + ACTIONS(3184), 2, anon_sym_COMMA, anon_sym_RPAREN, - [90778] = 5, + [85435] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3244), 1, + ACTIONS(3186), 1, anon_sym_DASH, - STATE(1436), 1, + STATE(1396), 1, aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3242), 2, + ACTIONS(2123), 2, anon_sym_COMMA, anon_sym_GT_GT, - [90796] = 5, + [85453] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(397), 1, + anon_sym_DOT, + ACTIONS(586), 1, anon_sym_COLON, - STATE(1716), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3246), 2, + ACTIONS(1850), 2, anon_sym_COMMA, anon_sym_RPAREN, - [90814] = 6, + [85471] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - sym__name, - STATE(1539), 1, - sym_record_update_argument, - STATE(1865), 1, - sym_label, - STATE(1890), 1, - sym_record_update_arguments, + ACTIONS(3190), 1, + anon_sym_DASH, + STATE(1409), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90834] = 5, + ACTIONS(3188), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [85489] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(99), 1, - sym__name, - ACTIONS(2954), 1, - sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1322), 2, - sym_identifier, - sym_discard, - [90852] = 5, + ACTIONS(3192), 4, + sym_quoted_content, + anon_sym_DQUOTE2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + [85503] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(3160), 1, anon_sym_COLON, - STATE(1705), 1, + STATE(1755), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3238), 2, + ACTIONS(3194), 2, anon_sym_COMMA, anon_sym_RPAREN, - [90870] = 6, + [85521] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(956), 1, - anon_sym_RBRACK, - ACTIONS(958), 1, - anon_sym_DOT_DOT, - ACTIONS(3248), 1, + ACTIONS(3196), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90890] = 5, + ACTIONS(3199), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [85539] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(3160), 1, anon_sym_COLON, - STATE(1703), 1, + STATE(1754), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3250), 2, + ACTIONS(3158), 2, anon_sym_COMMA, anon_sym_RPAREN, - [90908] = 6, + [85557] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(63), 1, - sym__upname, - ACTIONS(3252), 1, - sym__name, - STATE(103), 1, - sym_constructor_name, - STATE(768), 1, - sym_label, + ACTIONS(3160), 1, + anon_sym_COLON, + STATE(1753), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90928] = 5, + ACTIONS(3194), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [85575] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3254), 1, - anon_sym_DASH, - STATE(1475), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(3203), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2165), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [90946] = 6, + ACTIONS(3201), 3, + sym__hex, + sym__octal, + sym__binary, + [85591] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(3114), 1, sym__name, - STATE(1539), 1, + STATE(1608), 1, sym_record_update_argument, - STATE(1838), 1, + STATE(1784), 1, sym_record_update_arguments, - STATE(1865), 1, + STATE(1820), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [90966] = 5, + [85611] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__name, - ACTIONS(3256), 1, - sym__discard_name, + ACTIONS(3207), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(755), 2, - sym_identifier, - sym_discard, - [90984] = 5, + ACTIONS(3205), 3, + sym__hex, + sym__octal, + sym__binary, + [85627] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1692), 1, - sym__type_annotation, + ACTIONS(3211), 1, + sym__decimal, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3209), 3, + sym__hex, + sym__octal, + sym__binary, + [85643] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3215), 1, + anon_sym_DASH, + STATE(1379), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3258), 2, + ACTIONS(3213), 2, anon_sym_COMMA, - anon_sym_LT_DASH, - [91002] = 5, + anon_sym_GT_GT, + [85661] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1724), 1, - sym__type_annotation, + ACTIONS(3219), 1, + anon_sym_DASH, + STATE(1400), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3246), 2, + ACTIONS(3217), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [91020] = 5, + anon_sym_GT_GT, + [85679] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3262), 1, + ACTIONS(3223), 1, anon_sym_PIPE, - STATE(1456), 1, + STATE(1423), 1, + aux_sym_case_clause_patterns_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3221), 2, + anon_sym_if, + anon_sym_DASH_GT, + [85697] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(930), 1, + anon_sym_RBRACK, + ACTIONS(932), 1, + anon_sym_DOT_DOT, + ACTIONS(3226), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85717] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3228), 1, + anon_sym_PIPE, + STATE(1423), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(2231), 2, anon_sym_if, anon_sym_DASH_GT, - [91038] = 6, + [85735] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(2938), 1, sym__name, - ACTIONS(3265), 1, - anon_sym_RPAREN, - STATE(1809), 1, - sym_record_update_argument, - STATE(1865), 1, - sym_label, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym_anonymous_function_parameters, + STATE(1641), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91058] = 6, + [85755] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, + ACTIONS(906), 1, + anon_sym_RBRACK, + ACTIONS(908), 1, + anon_sym_DOT_DOT, + ACTIONS(3232), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85775] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3114), 1, sym__name, - STATE(1539), 1, + STATE(1608), 1, sym_record_update_argument, - STATE(1865), 1, + STATE(1820), 1, sym_label, - STATE(1906), 1, + STATE(1905), 1, sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91078] = 6, + [85795] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(944), 1, + ACTIONS(910), 1, anon_sym_RBRACK, - ACTIONS(946), 1, + ACTIONS(912), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 1, + ACTIONS(3234), 1, anon_sym_COMMA, - STATE(1397), 1, + STATE(1358), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91098] = 5, + [85815] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3269), 1, - anon_sym_PIPE, - STATE(1456), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(3160), 1, + anon_sym_COLON, + STATE(1672), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2321), 2, - anon_sym_if, - anon_sym_DASH_GT, - [91116] = 4, + ACTIONS(3236), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [85833] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3273), 1, - sym__decimal, + ACTIONS(2954), 1, + anon_sym_RBRACE, + ACTIONS(3238), 1, + anon_sym_COMMA, + STATE(1561), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3271), 3, - sym__hex, - sym__octal, - sym__binary, - [91132] = 4, + [85850] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3277), 1, - sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3275), 3, - sym__hex, - sym__octal, - sym__binary, - [91148] = 3, + ACTIONS(3240), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [85863] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3242), 1, + anon_sym_RPAREN, + ACTIONS(3244), 1, + sym__name, + STATE(1456), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3279), 4, - sym_quoted_content, - anon_sym_DQUOTE2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - [91162] = 5, + [85880] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3283), 1, + ACTIONS(3246), 1, anon_sym_LPAREN, - STATE(1681), 1, - sym_data_constructor_arguments, + ACTIONS(3248), 1, + anon_sym_DASH_GT, + STATE(1801), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3281), 2, - anon_sym_RBRACE, - sym__upname, - [91180] = 5, + [85897] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3287), 1, - anon_sym_DASH, - STATE(1465), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(3250), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + anon_sym_LT_DASH, + STATE(1554), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3285), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [91198] = 6, + [85914] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - sym__name, - ACTIONS(3290), 1, + ACTIONS(3254), 1, + anon_sym_COMMA, + ACTIONS(3256), 1, anon_sym_RPAREN, - STATE(1809), 1, - sym_record_update_argument, - STATE(1865), 1, - sym_label, + STATE(1535), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91218] = 5, + [85931] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3294), 1, - anon_sym_DASH, - STATE(1467), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(1456), 1, + anon_sym_GT_GT, + ACTIONS(3258), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3292), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [91236] = 6, + [85948] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(980), 1, - anon_sym_RBRACK, - ACTIONS(982), 1, - anon_sym_DOT_DOT, - ACTIONS(3297), 1, + ACTIONS(1008), 1, + anon_sym_RPAREN, + ACTIONS(3260), 1, anon_sym_COMMA, - STATE(1397), 1, + STATE(1358), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91256] = 4, + [85965] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3301), 1, - sym__decimal, + ACTIONS(1390), 1, + anon_sym_GT_GT, + ACTIONS(3262), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3299), 3, - sym__hex, - sym__octal, - sym__binary, - [91272] = 5, + [85982] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - STATE(1698), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3250), 2, + ACTIONS(3264), 3, anon_sym_COMMA, - anon_sym_RPAREN, - [91290] = 6, + anon_sym_GT_GT, + anon_sym_DASH, + [85995] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1754), 1, - sym_anonymous_function_parameters, - STATE(1762), 1, - sym_identifier, + ACTIONS(3266), 1, + anon_sym_COMMA, + ACTIONS(3268), 1, + anon_sym_RPAREN, + STATE(1583), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91310] = 5, + [86012] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__name, - ACTIONS(3256), 1, - sym__discard_name, + ACTIONS(1428), 1, + anon_sym_GT_GT, + ACTIONS(3270), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(812), 2, - sym_identifier, - sym_discard, - [91328] = 6, + [86029] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(101), 1, - sym__upname, - ACTIONS(2998), 1, - sym__name, - STATE(593), 1, - sym_constructor_name, - STATE(678), 1, - sym_label, + ACTIONS(3272), 1, + anon_sym_COMMA, + ACTIONS(3274), 1, + anon_sym_RPAREN, + STATE(1547), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91348] = 5, + [86046] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3307), 1, - anon_sym_DASH, - STATE(1424), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(3160), 1, + anon_sym_COLON, + ACTIONS(3276), 1, + anon_sym_EQ, + STATE(1870), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3305), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [91366] = 5, + [86063] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3311), 1, - anon_sym_DASH, - STATE(1475), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(3160), 1, + anon_sym_COLON, + ACTIONS(3278), 1, + anon_sym_EQ, + STATE(1898), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3309), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [91384] = 5, + [86080] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(509), 1, + ACTIONS(3280), 1, anon_sym_COLON, - ACTIONS(607), 1, - anon_sym_DOT, + ACTIONS(3282), 1, + anon_sym_EQ, + STATE(1888), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1812), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [91402] = 3, + [86097] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1034), 1, + anon_sym_LBRACE, + ACTIONS(3284), 1, + anon_sym_DASH_GT, + STATE(472), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3314), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_DASH, - [91416] = 5, + [86114] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2487), 1, - anon_sym_RPAREN, - ACTIONS(3316), 1, + ACTIONS(3286), 1, anon_sym_COMMA, - STATE(1600), 1, - aux_sym__attribute_arguments_repeat1, + ACTIONS(3288), 1, + anon_sym_GT_GT, + STATE(1442), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91433] = 5, + [86131] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(766), 1, - sym_external_function_body, - STATE(1678), 1, - sym_string, + ACTIONS(3290), 1, + anon_sym_COMMA, + ACTIONS(3292), 1, + anon_sym_RPAREN, + STATE(1468), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91450] = 3, + [86148] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1414), 1, + anon_sym_GT_GT, + ACTIONS(3294), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3318), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [91463] = 5, + [86165] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3320), 1, + ACTIONS(3296), 1, anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_RPAREN, - STATE(1496), 1, - aux_sym_arguments_repeat1, + ACTIONS(3299), 1, + anon_sym_GT_GT, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91480] = 5, + [86182] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2821), 1, - anon_sym_RPAREN, - ACTIONS(3324), 1, + ACTIONS(3301), 1, anon_sym_COMMA, - STATE(1556), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3303), 1, + anon_sym_RPAREN, + STATE(1473), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91497] = 5, + [86199] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3328), 1, - anon_sym_RPAREN, - STATE(1478), 1, - aux_sym__attribute_arguments_repeat1, + ACTIONS(3160), 1, + anon_sym_COLON, + ACTIONS(3305), 1, + anon_sym_EQ, + STATE(1821), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91514] = 5, + [86216] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2835), 1, + ACTIONS(2940), 1, anon_sym_RPAREN, - ACTIONS(3330), 1, + ACTIONS(3307), 1, anon_sym_COMMA, - STATE(1541), 1, - aux_sym_tuple_type_repeat1, + STATE(1589), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91531] = 5, + [86233] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3332), 1, + ACTIONS(3309), 1, anon_sym_LPAREN, - ACTIONS(3334), 1, + ACTIONS(3311), 1, anon_sym_DASH_GT, - STATE(1931), 1, + STATE(1891), 1, sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91548] = 5, + [86250] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3336), 1, + ACTIONS(3313), 1, anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(3315), 1, anon_sym_RPAREN, - STATE(1504), 1, + STATE(1481), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91565] = 5, + [86267] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1036), 1, - anon_sym_RPAREN, - ACTIONS(3340), 1, + ACTIONS(3317), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3319), 1, + anon_sym_RPAREN, + STATE(1483), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91582] = 5, + [86284] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3342), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, + ACTIONS(1084), 1, anon_sym_RPAREN, - STATE(1664), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3321), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91599] = 5, + [86301] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2849), 1, - anon_sym_RPAREN, - ACTIONS(3346), 1, - anon_sym_COMMA, - STATE(1541), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(461), 1, + anon_sym_LBRACE, + ACTIONS(3323), 1, + anon_sym_DASH_GT, + STATE(243), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91616] = 5, + [86318] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3018), 1, - anon_sym_RPAREN, - ACTIONS(3348), 1, - anon_sym_COMMA, - STATE(1655), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(3160), 1, + anon_sym_COLON, + ACTIONS(3325), 1, + anon_sym_EQ, + STATE(1875), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91633] = 5, + [86335] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3350), 1, + ACTIONS(3327), 1, anon_sym_COMMA, - ACTIONS(3352), 1, - anon_sym_RPAREN, - STATE(1506), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3329), 1, + anon_sym_GT_GT, + STATE(1437), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91650] = 5, + [86352] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2887), 1, - anon_sym_RPAREN, - ACTIONS(3354), 1, + ACTIONS(3331), 1, anon_sym_COMMA, - STATE(1616), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(3334), 1, + anon_sym_RPAREN, + STATE(1462), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91667] = 3, + [86369] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3356), 3, + ACTIONS(3336), 1, anon_sym_COMMA, + ACTIONS(3338), 1, anon_sym_RPAREN, - anon_sym_EQ, - [91680] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1485), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3358), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [91693] = 5, + [86386] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2839), 1, - anon_sym_RPAREN, - ACTIONS(3360), 1, - anon_sym_COMMA, - STATE(1637), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(3280), 1, + anon_sym_COLON, + ACTIONS(3340), 1, + anon_sym_EQ, + STATE(1876), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91710] = 5, + [86403] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(880), 1, + ACTIONS(1000), 1, anon_sym_RPAREN, - ACTIONS(3362), 1, + ACTIONS(3342), 1, anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91727] = 5, + [86420] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RBRACK, - STATE(1512), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3309), 1, + anon_sym_LPAREN, + ACTIONS(3344), 1, + anon_sym_DASH_GT, + STATE(1802), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91744] = 5, + [86437] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3368), 1, + ACTIONS(3151), 1, + anon_sym_RPAREN, + ACTIONS(3346), 1, anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_GT_GT, - STATE(1514), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1527), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91761] = 3, + [86454] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(878), 1, + anon_sym_RPAREN, + ACTIONS(3348), 1, + anon_sym_COMMA, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3372), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [91774] = 5, + [86471] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3374), 1, + ACTIONS(3350), 1, anon_sym_COMMA, - ACTIONS(3377), 1, + ACTIONS(3353), 1, anon_sym_RPAREN, - STATE(1500), 1, + STATE(1469), 1, aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91791] = 5, + [86488] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3379), 1, - anon_sym_RBRACE, - ACTIONS(3381), 1, + ACTIONS(3355), 1, anon_sym_COMMA, - STATE(1516), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(3357), 1, + anon_sym_RBRACK, + STATE(1490), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91808] = 3, + [86505] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3383), 3, + ACTIONS(3359), 1, anon_sym_COMMA, + ACTIONS(3361), 1, anon_sym_GT_GT, - anon_sym_DASH, - [91821] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3385), 1, - anon_sym_RPAREN, - ACTIONS(3387), 1, - sym__name, - STATE(1794), 1, - sym_type_parameter, + STATE(1492), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91838] = 5, + [86522] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3385), 1, - anon_sym_RPAREN, - ACTIONS(3389), 1, - anon_sym_COMMA, - STATE(1571), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3363), 1, + anon_sym_if, + ACTIONS(3365), 1, + anon_sym_DASH_GT, + STATE(1787), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91855] = 5, + [86539] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2809), 1, + ACTIONS(2353), 1, anon_sym_RPAREN, - ACTIONS(3391), 1, + ACTIONS(3367), 1, anon_sym_COMMA, - STATE(1500), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(1575), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91872] = 5, + [86556] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2958), 1, - anon_sym_RPAREN, - ACTIONS(3393), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - STATE(1561), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3371), 1, + anon_sym_RPAREN, + STATE(1543), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91889] = 3, + [86573] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3373), 1, + anon_sym_COMMA, + ACTIONS(3375), 1, + anon_sym_RPAREN, + STATE(1542), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3395), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [91902] = 5, + [86590] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3397), 1, + ACTIONS(3377), 1, anon_sym_RBRACE, - ACTIONS(3399), 1, + ACTIONS(3379), 1, anon_sym_COMMA, - STATE(1508), 1, + STATE(1496), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91919] = 5, + [86607] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3402), 1, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(3405), 1, - anon_sym_GT_GT, - STATE(1509), 1, - aux_sym__expression_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [91936] = 3, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(3383), 1, + anon_sym_RPAREN, + STATE(1541), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3407), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [91949] = 5, + [86624] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3409), 1, + ACTIONS(3385), 1, anon_sym_COMMA, - ACTIONS(3411), 1, + ACTIONS(3387), 1, anon_sym_RPAREN, - STATE(1525), 1, - aux_sym_constant_tuple_repeat1, + STATE(1501), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91966] = 5, + [86641] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2597), 1, - anon_sym_RBRACK, - ACTIONS(3413), 1, - anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3244), 1, + sym__name, + ACTIONS(3389), 1, + anon_sym_RPAREN, + STATE(1751), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [91983] = 5, + [86658] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3415), 1, - anon_sym_COMMA, - ACTIONS(3418), 1, + ACTIONS(3244), 1, + sym__name, + ACTIONS(3391), 1, anon_sym_RPAREN, - STATE(1513), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1751), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92000] = 5, + [86675] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2493), 1, - anon_sym_GT_GT, - ACTIONS(3420), 1, + ACTIONS(3391), 1, + anon_sym_RPAREN, + ACTIONS(3393), 1, anon_sym_COMMA, - STATE(1521), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1486), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92017] = 5, + [86692] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3422), 1, + ACTIONS(3395), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3397), 1, anon_sym_RPAREN, - STATE(1529), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1552), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92034] = 5, + [86709] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3026), 1, - anon_sym_RBRACE, - ACTIONS(3426), 1, + ACTIONS(842), 1, + anon_sym_RPAREN, + ACTIONS(3399), 1, anon_sym_COMMA, - STATE(1508), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92051] = 5, + [86726] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3428), 1, + ACTIONS(3401), 1, anon_sym_COMMA, - ACTIONS(3430), 1, + ACTIONS(3404), 1, anon_sym_RPAREN, - STATE(1532), 1, + STATE(1484), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92068] = 5, + [86743] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3432), 1, - anon_sym_COMMA, - ACTIONS(3434), 1, + ACTIONS(2882), 1, anon_sym_RPAREN, - STATE(1534), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3406), 1, + anon_sym_COMMA, + STATE(1597), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92085] = 5, + [86760] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3387), 1, - sym__name, - ACTIONS(3436), 1, + ACTIONS(3408), 1, + anon_sym_COMMA, + ACTIONS(3411), 1, anon_sym_RPAREN, - STATE(1794), 1, - sym_type_parameter, + STATE(1486), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92102] = 5, + [86777] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2473), 1, - anon_sym_RPAREN, - ACTIONS(3438), 1, + ACTIONS(2257), 1, + anon_sym_GT_GT, + ACTIONS(3413), 1, anon_sym_COMMA, - STATE(1569), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1523), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92119] = 5, + [86794] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3440), 1, + ACTIONS(3415), 1, anon_sym_COMMA, - ACTIONS(3443), 1, - anon_sym_GT_GT, - STATE(1521), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(3417), 1, + anon_sym_RPAREN, + STATE(1506), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92136] = 5, + [86811] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_COMMA, - STATE(1522), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92153] = 5, + ACTIONS(3419), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [86824] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3448), 1, + ACTIONS(2495), 1, + anon_sym_RBRACK, + ACTIONS(3421), 1, anon_sym_COMMA, - ACTIONS(3450), 1, - anon_sym_RPAREN, - STATE(1492), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92170] = 5, + [86841] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3452), 1, - anon_sym_if, - ACTIONS(3454), 1, - anon_sym_DASH_GT, - STATE(1935), 1, - sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92187] = 5, + ACTIONS(3423), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [86854] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(3456), 1, + ACTIONS(2419), 1, + anon_sym_GT_GT, + ACTIONS(3425), 1, anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + STATE(1572), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92204] = 5, + [86871] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(3460), 1, - anon_sym_EQ, - STATE(1942), 1, - sym__constant_type_annotation, + ACTIONS(3427), 1, + anon_sym_COMMA, + ACTIONS(3429), 1, + anon_sym_RPAREN, + STATE(1536), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92221] = 5, + [86888] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(3462), 1, - anon_sym_EQ, - STATE(1877), 1, - sym__constant_type_annotation, + ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, + anon_sym_RPAREN, + STATE(1510), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92238] = 4, + [86905] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3466), 1, - anon_sym_COLON, + ACTIONS(3435), 1, + anon_sym_COMMA, + ACTIONS(3438), 1, + anon_sym_LT_DASH, + STATE(1495), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3464), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [92253] = 5, + [86922] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2477), 1, - anon_sym_RPAREN, - ACTIONS(3468), 1, + ACTIONS(2962), 1, + anon_sym_RBRACE, + ACTIONS(3440), 1, anon_sym_COMMA, - STATE(1569), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1561), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92270] = 5, + [86939] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3470), 1, + ACTIONS(3442), 1, anon_sym_COMMA, - ACTIONS(3472), 1, - anon_sym_GT_GT, - STATE(1603), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3444), 1, + anon_sym_RPAREN, + STATE(1513), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92287] = 3, + [86956] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3448), 1, + anon_sym_RPAREN, + STATE(1515), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3231), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [92300] = 5, + [86973] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2857), 1, - anon_sym_RPAREN, - ACTIONS(3474), 1, - anon_sym_COMMA, - STATE(1541), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3244), 1, + sym__name, + ACTIONS(3450), 1, + anon_sym_RPAREN, + STATE(1751), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92317] = 5, + [86990] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2617), 1, - anon_sym_RPAREN, - ACTIONS(3476), 1, + ACTIONS(1198), 1, + anon_sym_GT_GT, + ACTIONS(3452), 1, anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92334] = 5, + [87007] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2825), 1, + ACTIONS(870), 1, anon_sym_RPAREN, - ACTIONS(3478), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - STATE(1556), 1, - aux_sym_type_arguments_repeat1, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92351] = 3, + [87024] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3480), 3, + ACTIONS(3456), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [92364] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1324), 1, - sym_external_function_body, - STATE(1777), 1, - sym_string, + ACTIONS(3458), 1, + anon_sym_RPAREN, + STATE(1590), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92381] = 5, + [87041] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - sym__name, - STATE(1809), 1, - sym_record_update_argument, - STATE(1865), 1, - sym_label, + STATE(1903), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92398] = 3, + ACTIONS(3460), 2, + anon_sym_erlang, + anon_sym_javascript, + [87056] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3482), 3, + ACTIONS(3132), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [92411] = 5, + [87069] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3484), 1, - anon_sym_COMMA, - ACTIONS(3486), 1, + ACTIONS(1006), 1, anon_sym_RPAREN, - STATE(1602), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [92428] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1274), 1, - anon_sym_GT_GT, - ACTIONS(3488), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - STATE(1509), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92445] = 5, + [87086] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3490), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, + ACTIONS(2551), 1, anon_sym_RPAREN, - STATE(1541), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3464), 1, + anon_sym_COMMA, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92462] = 3, + [87103] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3292), 3, + ACTIONS(3466), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [92475] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3387), 1, - sym__name, - ACTIONS(3495), 1, + ACTIONS(3469), 1, anon_sym_RPAREN, - STATE(1486), 1, - sym_type_parameter, + STATE(1507), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92492] = 3, + [87120] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3497), 3, + ACTIONS(3471), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [92505] = 5, + anon_sym_EQ, + [87133] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(3160), 1, anon_sym_COLON, - ACTIONS(3499), 1, + ACTIONS(3473), 1, anon_sym_EQ, - STATE(1945), 1, + STATE(1842), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92522] = 5, + [87150] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1319), 1, - sym_external_function_body, - STATE(1777), 1, - sym_string, + ACTIONS(2393), 1, + anon_sym_RPAREN, + ACTIONS(3475), 1, + anon_sym_COMMA, + STATE(1462), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92539] = 3, + [87167] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3236), 3, + ACTIONS(3477), 1, anon_sym_COMMA, + ACTIONS(3480), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [92552] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3501), 1, - anon_sym_EQ, - STATE(1839), 1, - sym__type_annotation, + STATE(1511), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92569] = 5, + [87184] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3503), 1, + ACTIONS(3482), 1, anon_sym_COMMA, - ACTIONS(3506), 1, + ACTIONS(3484), 1, anon_sym_RPAREN, - STATE(1549), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1538), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92586] = 5, + [87201] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2881), 1, + ACTIONS(2775), 1, anon_sym_RPAREN, - ACTIONS(3508), 1, + ACTIONS(3486), 1, anon_sym_COMMA, - STATE(1616), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1484), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92603] = 4, + [87218] = 3, ACTIONS(3), 1, sym_module_comment, - STATE(1898), 1, - sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3510), 2, - anon_sym_erlang, - anon_sym_javascript, - [92618] = 5, + ACTIONS(3488), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [87231] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3512), 1, + ACTIONS(2743), 1, + anon_sym_RPAREN, + ACTIONS(3490), 1, anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_LT_DASH, - STATE(1639), 1, - aux_sym_use_assignments_repeat1, + STATE(1507), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92635] = 5, + [87248] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3516), 1, - anon_sym_EQ, - STATE(1887), 1, - sym__type_annotation, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1264), 1, + sym_external_function_body, + STATE(1645), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92652] = 3, + [87265] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(191), 1, + anon_sym_LBRACE, + ACTIONS(3492), 1, + anon_sym_DASH_GT, + STATE(589), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3260), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [92665] = 5, + [87282] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - STATE(801), 1, + STATE(718), 1, sym_external_function_body, - STATE(1678), 1, + STATE(1699), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92682] = 5, + [87299] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3518), 1, + ACTIONS(3494), 1, anon_sym_COMMA, - ACTIONS(3521), 1, + ACTIONS(3497), 1, anon_sym_RPAREN, - STATE(1556), 1, - aux_sym_type_arguments_repeat1, + STATE(1519), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92699] = 5, + [87316] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2829), 1, - anon_sym_RPAREN, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_COMMA, - STATE(1513), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(3501), 1, + anon_sym_GT_GT, + STATE(1450), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92716] = 5, + [87333] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3525), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3503), 3, anon_sym_COMMA, - ACTIONS(3527), 1, anon_sym_GT_GT, - STATE(1540), 1, - aux_sym__expression_bit_string_repeat1, + anon_sym_DASH, + [87346] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3505), 1, + anon_sym_COMMA, + ACTIONS(3508), 1, + anon_sym_RPAREN, + STATE(1522), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92733] = 5, + [87363] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1048), 1, - anon_sym_RPAREN, - ACTIONS(3529), 1, + ACTIONS(3510), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3513), 1, + anon_sym_GT_GT, + STATE(1523), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92750] = 5, + [87380] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3458), 1, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1269), 1, + sym_external_function_body, + STATE(1645), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [87397] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3515), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [87410] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3280), 1, anon_sym_COLON, - ACTIONS(3531), 1, + ACTIONS(3517), 1, anon_sym_EQ, - STATE(1861), 1, + STATE(1808), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92767] = 5, + [87427] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3533), 1, + ACTIONS(3519), 1, anon_sym_COMMA, - ACTIONS(3536), 1, + ACTIONS(3522), 1, anon_sym_RPAREN, - STATE(1561), 1, - aux_sym_function_parameters_repeat1, + STATE(1527), 1, + aux_sym_record_update_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [87444] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3524), 1, + anon_sym_COMMA, + ACTIONS(3526), 1, + anon_sym_RPAREN, + STATE(1623), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92784] = 3, + [87461] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3285), 3, + ACTIONS(3153), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [92797] = 5, + [87474] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3538), 1, - anon_sym_COMMA, - ACTIONS(3540), 1, + ACTIONS(2771), 1, anon_sym_RPAREN, - STATE(1495), 1, + ACTIONS(3528), 1, + anon_sym_COMMA, + STATE(1519), 1, aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92814] = 3, + [87491] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3542), 3, + ACTIONS(3530), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [92827] = 3, + [87504] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3544), 3, + ACTIONS(3532), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [92840] = 5, + [87517] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3546), 1, - anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_RPAREN, - STATE(1550), 1, - aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92857] = 3, + ACTIONS(3534), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [87530] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3550), 3, + ACTIONS(3536), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [92870] = 5, + [87543] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3552), 1, + ACTIONS(2817), 1, + anon_sym_RPAREN, + ACTIONS(3538), 1, anon_sym_COMMA, - ACTIONS(3554), 1, - anon_sym_GT_GT, - STATE(1579), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1511), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92887] = 5, + [87560] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3556), 1, - anon_sym_COMMA, - ACTIONS(3559), 1, + ACTIONS(2815), 1, anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(3540), 1, + anon_sym_COMMA, + STATE(1511), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92904] = 5, + [87577] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3561), 1, - anon_sym_EQ, - STATE(1869), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92921] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3563), 1, + ACTIONS(3542), 3, anon_sym_COMMA, - ACTIONS(3566), 1, anon_sym_RPAREN, - STATE(1571), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [92938] = 5, + anon_sym_EQ, + [87590] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3387), 1, - sym__name, - ACTIONS(3568), 1, + ACTIONS(848), 1, anon_sym_RPAREN, - STATE(1794), 1, - sym_type_parameter, + ACTIONS(3544), 1, + anon_sym_COMMA, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92955] = 5, + [87607] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3570), 1, - anon_sym_COMMA, - ACTIONS(3572), 1, - anon_sym_RPAREN, - STATE(1482), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3114), 1, + sym__name, + STATE(1698), 1, + sym_record_update_argument, + STATE(1820), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92972] = 5, + [87624] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3574), 1, - anon_sym_LPAREN, - ACTIONS(3576), 1, - anon_sym_DASH_GT, - STATE(1954), 1, - sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [92989] = 5, + ACTIONS(3546), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [87637] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3580), 1, + ACTIONS(864), 1, anon_sym_RPAREN, - STATE(1484), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93006] = 3, + [87654] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2755), 1, + anon_sym_RPAREN, + ACTIONS(3550), 1, + anon_sym_COMMA, + STATE(1507), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3582), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [93019] = 5, + [87671] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3584), 1, - anon_sym_COMMA, - ACTIONS(3586), 1, + ACTIONS(2785), 1, anon_sym_RPAREN, - STATE(1489), 1, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(1484), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93036] = 5, + [87688] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3588), 1, + ACTIONS(3554), 1, anon_sym_COMMA, - ACTIONS(3590), 1, - anon_sym_RPAREN, - STATE(1644), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3556), 1, + anon_sym_RBRACK, + STATE(1611), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93053] = 5, + [87705] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1316), 1, - anon_sym_GT_GT, - ACTIONS(3592), 1, + ACTIONS(3558), 1, anon_sym_COMMA, - STATE(1509), 1, + ACTIONS(3560), 1, + anon_sym_GT_GT, + STATE(1556), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93070] = 5, + [87722] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(900), 1, - anon_sym_RPAREN, - ACTIONS(3594), 1, - anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(3562), 1, + anon_sym_DASH_GT, + STATE(672), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93087] = 5, + [87739] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3598), 1, + ACTIONS(2793), 1, anon_sym_RPAREN, - STATE(1505), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(3564), 1, + anon_sym_COMMA, + STATE(1484), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93104] = 4, + [87756] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3602), 1, + ACTIONS(3160), 1, anon_sym_COLON, + ACTIONS(3566), 1, + anon_sym_EQ, + STATE(1918), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3600), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [93119] = 5, + [87773] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1116), 1, - anon_sym_RPAREN, - ACTIONS(3604), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3570), 1, + anon_sym_GT_GT, + STATE(1487), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93136] = 5, + [87790] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3606), 1, - anon_sym_COMMA, - ACTIONS(3608), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_arguments_repeat1, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(3572), 1, + anon_sym_DASH_GT, + STATE(108), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93153] = 5, + [87807] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3610), 1, + ACTIONS(3574), 1, anon_sym_COMMA, - ACTIONS(3612), 1, + ACTIONS(3576), 1, anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_arguments_repeat1, + STATE(1586), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93170] = 5, + [87824] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3387), 1, - sym__name, - ACTIONS(3614), 1, + ACTIONS(3578), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, anon_sym_RPAREN, - STATE(1578), 1, - sym_type_parameter, + STATE(1371), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93187] = 5, + [87841] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1467), 1, - anon_sym_GT_GT, - ACTIONS(3616), 1, + ACTIONS(3582), 1, anon_sym_COMMA, - STATE(1509), 1, + ACTIONS(3584), 1, + anon_sym_GT_GT, + STATE(1500), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93204] = 3, + [87858] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2255), 1, + anon_sym_LT_DASH, + ACTIONS(3586), 1, + anon_sym_COMMA, + STATE(1495), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3618), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [93217] = 5, + [87875] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1206), 1, - anon_sym_RPAREN, - ACTIONS(3620), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3590), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93234] = 5, + ACTIONS(3588), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [87890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3030), 1, - anon_sym_RBRACE, - ACTIONS(3622), 1, + ACTIONS(1354), 1, + anon_sym_GT_GT, + ACTIONS(3592), 1, anon_sym_COMMA, - STATE(1508), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1451), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93251] = 4, + [87907] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3626), 1, + ACTIONS(3596), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3624), 2, + ACTIONS(3594), 2, anon_sym_RBRACE, anon_sym_COMMA, - [93266] = 5, + [87922] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3332), 1, - anon_sym_LPAREN, - ACTIONS(3628), 1, - anon_sym_DASH_GT, - STATE(1958), 1, - sym_function_parameter_types, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(749), 1, + sym_external_function_body, + STATE(1699), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93283] = 5, + [87939] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3630), 1, - anon_sym_EQ, - STATE(1870), 1, - sym__type_annotation, + ACTIONS(3598), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, + anon_sym_RPAREN, + STATE(1568), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93300] = 5, + [87956] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3632), 1, - anon_sym_COMMA, - ACTIONS(3634), 1, - anon_sym_RPAREN, - STATE(1520), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(3604), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93317] = 5, + ACTIONS(3602), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [87971] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3636), 1, + ACTIONS(3606), 1, + anon_sym_RBRACE, + ACTIONS(3608), 1, anon_sym_COMMA, - ACTIONS(3638), 1, - anon_sym_RPAREN, - STATE(1629), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1561), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93334] = 5, + [87988] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(922), 1, - anon_sym_RPAREN, - ACTIONS(3640), 1, - anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + ACTIONS(3613), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93351] = 5, + ACTIONS(3611), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [88003] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3642), 1, + ACTIONS(994), 1, + anon_sym_RPAREN, + ACTIONS(3615), 1, anon_sym_COMMA, - ACTIONS(3644), 1, - anon_sym_GT_GT, - STATE(1587), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93368] = 5, + [88020] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3646), 1, - anon_sym_COMMA, - ACTIONS(3648), 1, - anon_sym_RBRACK, - STATE(1606), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93385] = 5, + ACTIONS(3617), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [88033] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3650), 1, - anon_sym_COMMA, - ACTIONS(3652), 1, - anon_sym_GT_GT, - STATE(1608), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(3280), 1, + anon_sym_COLON, + ACTIONS(3619), 1, + anon_sym_EQ, + STATE(1833), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93402] = 5, + [88050] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3654), 1, - anon_sym_COMMA, - ACTIONS(3657), 1, + ACTIONS(972), 1, anon_sym_RPAREN, - STATE(1600), 1, - aux_sym__attribute_arguments_repeat1, + ACTIONS(3621), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93419] = 5, + [88067] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2515), 1, - anon_sym_GT_GT, - ACTIONS(3659), 1, + ACTIONS(3623), 1, anon_sym_COMMA, - STATE(1521), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(3625), 1, + anon_sym_RPAREN, + STATE(1569), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93436] = 5, + [88084] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3290), 1, + ACTIONS(860), 1, anon_sym_RPAREN, - ACTIONS(3661), 1, + ACTIONS(3627), 1, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1624), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93453] = 5, + [88101] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1447), 1, - anon_sym_GT_GT, - ACTIONS(3663), 1, + ACTIONS(2399), 1, + anon_sym_RPAREN, + ACTIONS(3629), 1, anon_sym_COMMA, - STATE(1509), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1462), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93470] = 5, + [88118] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3665), 1, + ACTIONS(3631), 1, anon_sym_COMMA, - ACTIONS(3667), 1, - anon_sym_RPAREN, - STATE(1614), 1, + ACTIONS(3633), 1, + anon_sym_RBRACK, + STATE(1578), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93487] = 5, + [88135] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2603), 1, - anon_sym_RBRACK, - ACTIONS(3669), 1, + ACTIONS(3635), 1, anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3637), 1, + anon_sym_GT_GT, + STATE(1580), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93504] = 5, + [88152] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - anon_sym_RBRACK, - ACTIONS(3671), 1, + ACTIONS(3639), 1, anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3642), 1, + anon_sym_GT_GT, + STATE(1572), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93521] = 5, + [88169] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3673), 1, + ACTIONS(3644), 1, anon_sym_COMMA, - ACTIONS(3675), 1, + ACTIONS(3646), 1, anon_sym_RPAREN, - STATE(1533), 1, - aux_sym_constant_tuple_repeat1, + STATE(1605), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93538] = 5, + [88186] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2505), 1, - anon_sym_GT_GT, - ACTIONS(3677), 1, + ACTIONS(3648), 1, anon_sym_COMMA, - STATE(1521), 1, + ACTIONS(3650), 1, + anon_sym_GT_GT, + STATE(1593), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93555] = 5, + [88203] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3679), 1, + ACTIONS(3652), 1, anon_sym_COMMA, - ACTIONS(3681), 1, + ACTIONS(3655), 1, anon_sym_RPAREN, - STATE(1618), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1575), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93572] = 5, + [88220] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3683), 1, + ACTIONS(3657), 1, anon_sym_COMMA, - ACTIONS(3685), 1, + ACTIONS(3659), 1, anon_sym_RPAREN, - STATE(1490), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1584), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93589] = 5, + [88237] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2327), 1, - anon_sym_GT_GT, - ACTIONS(3687), 1, - anon_sym_COMMA, - STATE(1626), 1, - aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93606] = 5, + ACTIONS(3661), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [88250] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3689), 1, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(3663), 1, anon_sym_COMMA, - ACTIONS(3692), 1, - anon_sym_RPAREN, - STATE(1612), 1, - aux_sym_arguments_repeat1, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93623] = 3, + [88267] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3694), 3, + ACTIONS(3665), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [93636] = 5, + [88280] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2613), 1, - anon_sym_RPAREN, - ACTIONS(3696), 1, + ACTIONS(2435), 1, + anon_sym_GT_GT, + ACTIONS(3667), 1, anon_sym_COMMA, - STATE(1437), 1, - aux_sym_constant_tuple_repeat1, + STATE(1572), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93653] = 3, + [88297] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_RPAREN, + STATE(1588), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3698), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [93666] = 5, + [88314] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3700), 1, - anon_sym_COMMA, - ACTIONS(3703), 1, - anon_sym_RPAREN, - STATE(1616), 1, - aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93683] = 5, + ACTIONS(3673), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [88327] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(910), 1, + ACTIONS(2741), 1, anon_sym_RPAREN, - ACTIONS(3705), 1, + ACTIONS(3675), 1, anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + STATE(1469), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93700] = 5, + [88344] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2467), 1, + ACTIONS(2565), 1, anon_sym_RPAREN, - ACTIONS(3707), 1, + ACTIONS(3677), 1, anon_sym_COMMA, - STATE(1569), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93717] = 3, + [88361] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3709), 3, + ACTIONS(3679), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [93730] = 3, + anon_sym_DOT_DOT, + [88374] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3711), 3, - anon_sym_COMMA, + ACTIONS(2910), 1, anon_sym_RPAREN, - anon_sym_EQ, - [93743] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3713), 1, + ACTIONS(3681), 1, anon_sym_COMMA, - ACTIONS(3716), 1, - anon_sym_LT_DASH, - STATE(1621), 1, - aux_sym_use_assignments_repeat1, + STATE(1597), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93760] = 5, + [88391] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1136), 1, - anon_sym_RPAREN, - ACTIONS(3718), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93777] = 5, + ACTIONS(3166), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [88404] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3720), 1, - anon_sym_COMMA, - ACTIONS(3722), 1, + ACTIONS(2415), 1, anon_sym_RPAREN, - STATE(1617), 1, - aux_sym_arguments_repeat1, + ACTIONS(3683), 1, + anon_sym_COMMA, + STATE(1462), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93794] = 5, + [88421] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1485), 1, - anon_sym_GT_GT, - ACTIONS(3724), 1, + ACTIONS(3685), 1, anon_sym_COMMA, - STATE(1509), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3688), 1, + anon_sym_RPAREN, + STATE(1589), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93811] = 5, + [88438] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3726), 1, - anon_sym_LBRACE, - ACTIONS(3728), 1, + ACTIONS(2417), 1, + anon_sym_RPAREN, + ACTIONS(3690), 1, anon_sym_COMMA, - STATE(1522), 1, - aux_sym_tuple_repeat1, + STATE(1575), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93828] = 5, + [88455] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3730), 1, - anon_sym_COMMA, - ACTIONS(3733), 1, - anon_sym_GT_GT, - STATE(1626), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(3244), 1, + sym__name, + ACTIONS(3692), 1, + anon_sym_RPAREN, + STATE(1528), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93845] = 5, + [88472] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, + ACTIONS(3160), 1, anon_sym_COLON, - ACTIONS(3735), 1, + ACTIONS(3694), 1, anon_sym_EQ, - STATE(1914), 1, + STATE(1791), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93862] = 5, + [88489] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3737), 1, - anon_sym_COMMA, - ACTIONS(3739), 1, + ACTIONS(2439), 1, anon_sym_GT_GT, - STATE(1624), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3696), 1, + anon_sym_COMMA, + STATE(1572), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93879] = 5, + [88506] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3741), 1, - anon_sym_COMMA, - ACTIONS(3743), 1, + ACTIONS(2499), 1, anon_sym_RPAREN, - STATE(1398), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(3698), 1, + anon_sym_COMMA, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93896] = 5, + [88523] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3745), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3700), 3, anon_sym_COMMA, - ACTIONS(3747), 1, anon_sym_RPAREN, - STATE(1649), 1, - aux_sym__attribute_arguments_repeat1, + anon_sym_COLON, + [88536] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3702), 1, + anon_sym_RBRACE, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1431), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93913] = 5, + [88553] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, + ACTIONS(3706), 1, anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + ACTIONS(3709), 1, + anon_sym_RPAREN, + STATE(1597), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93930] = 5, + [88570] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3751), 1, - anon_sym_COMMA, - ACTIONS(3753), 1, - anon_sym_GT_GT, - STATE(1643), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3713), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93947] = 3, + ACTIONS(3711), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [88585] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3715), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3309), 3, + ACTIONS(3711), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [93960] = 5, + [88600] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3755), 1, - anon_sym_EQ, - STATE(1963), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93977] = 5, + ACTIONS(3717), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [88613] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3757), 1, + ACTIONS(3719), 1, anon_sym_COMMA, - ACTIONS(3759), 1, - anon_sym_RBRACK, - STATE(1605), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3721), 1, + anon_sym_GT_GT, + STATE(1612), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [93994] = 5, + [88630] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3761), 1, - anon_sym_COMMA, - ACTIONS(3763), 1, - anon_sym_RPAREN, - STATE(1557), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(1120), 1, + anon_sym_LBRACE, + ACTIONS(3723), 1, + anon_sym_DASH_GT, + STATE(56), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94011] = 5, + [88647] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3765), 1, - anon_sym_COMMA, - ACTIONS(3768), 1, - anon_sym_RPAREN, - STATE(1637), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(219), 1, + anon_sym_LBRACE, + ACTIONS(3725), 1, + anon_sym_DASH_GT, + STATE(925), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94028] = 4, + [88664] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3772), 1, + ACTIONS(3160), 1, anon_sym_COLON, + ACTIONS(3727), 1, + anon_sym_EQ, + STATE(1919), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3770), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [94043] = 5, + [88681] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2325), 1, - anon_sym_LT_DASH, - ACTIONS(3774), 1, + ACTIONS(2749), 1, + anon_sym_RPAREN, + ACTIONS(3729), 1, anon_sym_COMMA, - STATE(1621), 1, - aux_sym_use_assignments_repeat1, + STATE(1522), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94060] = 5, + [88698] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1148), 1, - anon_sym_RPAREN, - ACTIONS(3776), 1, + ACTIONS(3731), 1, anon_sym_COMMA, - STATE(1397), 1, - aux_sym_tuple_repeat1, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(1530), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94077] = 5, + [88715] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3778), 1, + ACTIONS(2295), 1, + anon_sym_LBRACE, + ACTIONS(3735), 1, anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_GT_GT, - STATE(1601), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1607), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94094] = 5, + [88732] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3387), 1, - sym__name, - ACTIONS(3782), 1, + ACTIONS(3738), 1, + anon_sym_COMMA, + ACTIONS(3740), 1, anon_sym_RPAREN, - STATE(1794), 1, - sym_type_parameter, + STATE(1467), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94111] = 5, + [88749] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1377), 1, - anon_sym_GT_GT, - ACTIONS(3784), 1, + ACTIONS(3742), 1, anon_sym_COMMA, - STATE(1509), 1, + ACTIONS(3744), 1, + anon_sym_GT_GT, + STATE(1439), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94128] = 5, + [88766] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3782), 1, - anon_sym_RPAREN, - ACTIONS(3786), 1, + ACTIONS(3746), 1, anon_sym_COMMA, - STATE(1571), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3748), 1, + anon_sym_RPAREN, + STATE(1454), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94145] = 5, + [88783] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3788), 1, + ACTIONS(2555), 1, + anon_sym_RBRACK, + ACTIONS(3750), 1, anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_GT_GT, - STATE(1611), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1414), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94162] = 5, + [88800] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1510), 1, + ACTIONS(1261), 1, anon_sym_GT_GT, - ACTIONS(3792), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - STATE(1509), 1, + STATE(1451), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94179] = 3, + [88817] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3794), 3, + ACTIONS(3754), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [94192] = 5, + anon_sym_EQ, + [88830] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3796), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(3758), 1, anon_sym_RPAREN, - STATE(1657), 1, + STATE(1621), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94209] = 5, + [88847] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2455), 1, - anon_sym_RPAREN, - ACTIONS(3800), 1, - anon_sym_COMMA, - STATE(1600), 1, - aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94226] = 5, + ACTIONS(3199), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [88860] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1194), 1, + ACTIONS(1082), 1, anon_sym_RPAREN, - ACTIONS(3802), 1, + ACTIONS(3760), 1, anon_sym_COMMA, - STATE(1397), 1, + STATE(1358), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94243] = 5, + [88877] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(884), 1, - anon_sym_RPAREN, - ACTIONS(3804), 1, + ACTIONS(3762), 1, + anon_sym_LBRACE, + ACTIONS(3764), 1, anon_sym_COMMA, - STATE(1612), 1, - aux_sym_arguments_repeat1, + STATE(1607), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94260] = 3, + [88894] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3806), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [94273] = 5, + ACTIONS(3221), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [88907] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3808), 1, - anon_sym_COMMA, - ACTIONS(3810), 1, - anon_sym_GT_GT, - STATE(1646), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3244), 1, + sym__name, + ACTIONS(3766), 1, + anon_sym_RPAREN, + STATE(1751), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94290] = 5, + [88924] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3812), 1, - anon_sym_COMMA, - ACTIONS(3814), 1, - anon_sym_RPAREN, - STATE(1631), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94307] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3816), 1, + ACTIONS(3182), 3, anon_sym_COMMA, - ACTIONS(3819), 1, anon_sym_RPAREN, - STATE(1655), 1, - aux_sym_anonymous_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94324] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3240), 1, - anon_sym_COLON, - ACTIONS(3821), 1, - anon_sym_EQ, - STATE(1948), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94341] = 5, + anon_sym_DOT_DOT, + [88937] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(898), 1, + ACTIONS(852), 1, anon_sym_RPAREN, - ACTIONS(3823), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - STATE(1612), 1, + STATE(1624), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94358] = 3, + [88954] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3770), 1, + anon_sym_COMMA, + ACTIONS(3772), 1, + anon_sym_RPAREN, + STATE(1594), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3825), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [94371] = 5, + [88971] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(3829), 1, + ACTIONS(3766), 1, + anon_sym_RPAREN, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(1590), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1486), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94388] = 5, + [88988] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3831), 1, + ACTIONS(3776), 1, anon_sym_COMMA, - ACTIONS(3833), 1, + ACTIONS(3779), 1, anon_sym_RPAREN, - STATE(1651), 1, + STATE(1624), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94405] = 4, + [89005] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3837), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3835), 2, - anon_sym_RBRACE, + ACTIONS(3781), 2, anon_sym_COMMA, - [94420] = 4, + anon_sym_RPAREN, + [89017] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3839), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3835), 2, - anon_sym_RBRACE, + ACTIONS(3783), 2, anon_sym_COMMA, - [94435] = 5, + anon_sym_RPAREN, + [89029] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(3841), 1, - anon_sym_EQ, - STATE(1816), 1, - sym__constant_type_annotation, + ACTIONS(2922), 1, + sym__name, + STATE(658), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94452] = 5, + [89043] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2964), 1, - anon_sym_RPAREN, - ACTIONS(3843), 1, - anon_sym_COMMA, - STATE(1561), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3785), 1, + sym__name, + STATE(48), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94469] = 3, + [89057] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1120), 1, + anon_sym_LBRACE, + STATE(55), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3845), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [94481] = 4, + [89071] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3847), 1, + ACTIONS(3787), 1, anon_sym_LPAREN, - STATE(113), 1, + STATE(31), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94495] = 4, + [89085] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1669), 1, + STATE(1633), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94509] = 4, + [89099] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1670), 1, + STATE(1634), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94523] = 4, + [89113] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3849), 1, + ACTIONS(3789), 1, anon_sym_LPAREN, - STATE(1947), 1, + STATE(1910), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94537] = 4, + [89127] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3849), 1, + ACTIONS(3789), 1, anon_sym_LPAREN, - STATE(1946), 1, + STATE(1909), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94551] = 4, + [89141] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(3791), 1, sym__name, - STATE(1814), 1, - sym_identifier, + STATE(660), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94565] = 4, + [89155] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3851), 1, + ACTIONS(2938), 1, sym__name, - STATE(697), 1, + STATE(1565), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94579] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3377), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94591] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1702), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94605] = 3, + [89169] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(69), 1, + anon_sym_LBRACE, + STATE(703), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94617] = 4, + [89183] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3853), 1, - sym__name, - STATE(692), 1, - sym_module, + ACTIONS(3793), 1, + anon_sym_type, + ACTIONS(3795), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94631] = 4, + [89197] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - STATE(1591), 1, - sym_type_identifier, + ACTIONS(3797), 1, + anon_sym_LPAREN, + STATE(83), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94645] = 4, + [89211] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, - anon_sym_DQUOTE, - STATE(764), 1, - sym_string, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1459), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94659] = 3, + [89225] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3799), 1, + anon_sym_LPAREN, + STATE(656), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3855), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94671] = 4, + [89239] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3387), 1, + ACTIONS(2938), 1, sym__name, - STATE(1794), 1, - sym_type_parameter, + STATE(1663), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94685] = 3, + [89253] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1879), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3857), 2, - anon_sym_RBRACE, - sym__upname, - [94697] = 4, + [89267] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1950), 1, - anon_sym_LBRACE, - ACTIONS(1952), 1, - anon_sym_EQ, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1878), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94711] = 4, + [89281] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1709), 1, - sym_anonymous_function_parameters, + ACTIONS(91), 1, + anon_sym_DQUOTE, + STATE(1268), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94725] = 4, + [89295] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1733), 1, + STATE(1526), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94739] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1714), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94753] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3859), 1, - anon_sym_LPAREN, - STATE(477), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94767] = 4, + [89309] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1527), 1, + STATE(1673), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94781] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3861), 1, - anon_sym_LPAREN, - STATE(738), 1, - sym_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94795] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1186), 1, - sym__upname, - STATE(354), 1, - sym_constructor_name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94809] = 3, + [89323] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3801), 1, + anon_sym_type, + ACTIONS(3803), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3716), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [94821] = 4, + [89337] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3863), 1, + ACTIONS(3137), 1, sym__name, - STATE(449), 1, + STATE(68), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94835] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3865), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [94847] = 3, + [89351] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3805), 1, + anon_sym_LBRACE, + ACTIONS(3807), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3867), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [94859] = 4, + [89365] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(101), 1, + ACTIONS(63), 1, sym__upname, - STATE(593), 1, + STATE(65), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94873] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1718), 1, - sym_anonymous_function_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [94887] = 4, + [89379] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3303), 1, + ACTIONS(3809), 1, anon_sym_LPAREN, - STATE(1754), 1, - sym_anonymous_function_parameters, + STATE(457), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94901] = 3, + [89393] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3869), 2, + ACTIONS(3811), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - [94913] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(680), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3871), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94925] = 4, + [89407] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3873), 1, - sym__name, - STATE(1260), 1, - sym_identifier, + ACTIONS(2807), 1, + sym__upname, + STATE(666), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94939] = 4, + [89421] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1726), 1, - sym_anonymous_function_parameters, + ACTIONS(461), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94953] = 3, + [89435] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3813), 1, + sym__name, + STATE(669), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3875), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94965] = 4, + [89449] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3877), 1, + ACTIONS(2904), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_DASH_GT, + ACTIONS(2906), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [94979] = 3, + [89463] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3815), 1, + anon_sym_LPAREN, + STATE(1225), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3871), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [94991] = 4, + [89477] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(3817), 1, sym__name, - STATE(1271), 1, + STATE(1195), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95005] = 3, + [89491] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3875), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95017] = 4, + ACTIONS(3819), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [89503] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3881), 1, - anon_sym_type, - ACTIONS(3883), 1, - anon_sym_fn, + ACTIONS(3821), 1, + sym__name, + STATE(404), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95031] = 4, + [89517] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(3887), 1, - anon_sym_EQ, + ACTIONS(3817), 1, + sym__name, + STATE(1229), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95045] = 4, + [89531] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1022), 1, - sym__upname, - STATE(613), 1, - sym_constructor_name, + ACTIONS(3789), 1, + anon_sym_LPAREN, + STATE(1817), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95059] = 4, + [89545] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_DASH_GT, + ACTIONS(2938), 1, + sym__name, + STATE(1229), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95073] = 3, + [89559] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3823), 1, + sym__name, + STATE(1195), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3893), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95085] = 4, + [89573] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3895), 1, - anon_sym_COLON, - ACTIONS(3897), 1, - anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACE, + STATE(1253), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95099] = 3, + [89587] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1794), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3899), 2, - anon_sym_RBRACE, - sym__upname, - [95111] = 4, + [89601] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3901), 1, - anon_sym_LPAREN, - STATE(601), 1, - sym_arguments, + ACTIONS(3114), 1, + sym__name, + STATE(200), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95125] = 4, + [89615] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3903), 1, - anon_sym_LBRACE, - ACTIONS(3905), 1, - anon_sym_DASH_GT, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1795), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95139] = 4, + [89629] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3907), 1, - sym__name, - STATE(23), 1, - sym_label, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1603), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95153] = 3, + [89643] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3827), 1, + anon_sym_type, + ACTIONS(3829), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3909), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95165] = 3, + [89657] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3911), 2, + ACTIONS(3831), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [95177] = 4, + anon_sym_LT_DASH, + [89669] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3913), 1, - anon_sym_LBRACE, - ACTIONS(3915), 1, - anon_sym_DASH_GT, + ACTIONS(3799), 1, + anon_sym_LPAREN, + STATE(661), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95191] = 4, + [89683] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3917), 1, + ACTIONS(3815), 1, anon_sym_LPAREN, - STATE(60), 1, - sym_arguments, + STATE(1224), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95205] = 3, + [89697] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1110), 1, + sym__upname, + STATE(567), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3418), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95217] = 4, + [89711] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3919), 1, - sym__name, - STATE(610), 1, - sym_label, + ACTIONS(3833), 1, + anon_sym_LPAREN, + STATE(226), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95231] = 4, + [89725] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3921), 1, - anon_sym_LPAREN, - STATE(1284), 1, - sym_function_parameters, + ACTIONS(2938), 1, + sym__name, + STATE(1741), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95245] = 3, + [89739] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3835), 1, + anon_sym_type, + ACTIONS(3837), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3733), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [95257] = 3, + [89753] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1034), 1, + anon_sym_LBRACE, + STATE(466), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3909), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95269] = 4, + [89767] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3923), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(3925), 1, + ACTIONS(1910), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95283] = 4, + [89781] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3927), 1, - anon_sym_LBRACE, - ACTIONS(3929), 1, - anon_sym_DASH_GT, + ACTIONS(3839), 1, + sym__name, + STATE(1237), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95297] = 3, + [89795] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3823), 1, + sym__name, + STATE(1236), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3931), 2, - anon_sym_RBRACE, + [89809] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(251), 1, sym__upname, - [95309] = 3, + STATE(919), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89823] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1154), 1, + sym__upname, + STATE(20), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3768), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95321] = 3, + [89837] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1068), 1, + sym__upname, + STATE(289), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3933), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [95333] = 3, + [89851] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1796), 1, + sym__upname, + STATE(1260), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3405), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [95345] = 3, + [89865] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3935), 2, + ACTIONS(3841), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95357] = 3, + [89877] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(101), 1, + sym__upname, + STATE(550), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3397), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [95369] = 4, + [89891] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3849), 1, - anon_sym_LPAREN, - STATE(1904), 1, - sym_external_function_parameters, + ACTIONS(501), 1, + sym__upname, + STATE(196), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95383] = 4, + [89905] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3849), 1, - anon_sym_LPAREN, - STATE(1823), 1, - sym_external_function_parameters, + ACTIONS(2737), 1, + sym__upname, + STATE(1127), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95397] = 3, + [89919] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1848), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3937), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [95409] = 4, + [89933] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - STATE(1740), 1, - sym_type_identifier, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95423] = 4, + [89947] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3939), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_DASH_GT, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1517), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95437] = 3, + [89961] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3493), 2, + ACTIONS(2447), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95449] = 3, + [89973] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3843), 1, + anon_sym_LPAREN, + STATE(565), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3692), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95461] = 3, + [89987] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3943), 2, + ACTIONS(3845), 2, anon_sym_RBRACE, - anon_sym_COMMA, - [95473] = 4, + sym__upname, + [89999] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1737), 1, - sym_anonymous_function_parameters, + ACTIONS(2938), 1, + sym__name, + STATE(1674), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95487] = 4, + [90013] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1873), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95501] = 4, + ACTIONS(3522), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90025] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - STATE(1874), 1, + STATE(748), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95515] = 4, + [90039] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3945), 1, - anon_sym_COMMA, - ACTIONS(3947), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95529] = 4, + ACTIONS(3847), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [90051] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3949), 1, - sym__name, - STATE(1260), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95543] = 3, + ACTIONS(3497), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90063] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1871), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2517), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95555] = 3, + [90077] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3521), 2, + ACTIONS(3480), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95567] = 3, + [90089] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3849), 1, + sym__name, + STATE(569), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3443), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [95579] = 3, + [90103] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3469), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95591] = 3, + [90115] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1872), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3953), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [95603] = 3, + [90129] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3404), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [95615] = 3, + anon_sym_RPAREN, + [90141] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3957), 2, - anon_sym_RBRACE, - sym__upname, - [95627] = 4, + ACTIONS(3851), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90153] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1106), 1, - sym__upname, - STATE(49), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95641] = 4, + ACTIONS(3353), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90165] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3959), 1, - anon_sym_LBRACE, - ACTIONS(3961), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95655] = 4, + ACTIONS(3853), 2, + anon_sym_RBRACE, + sym__upname, + [90177] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3963), 1, - anon_sym_LPAREN, - STATE(941), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95669] = 3, + ACTIONS(3855), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [90189] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1447), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3819), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95681] = 3, + [90203] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3965), 2, + ACTIONS(3857), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95693] = 3, + [90215] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3967), 2, + ACTIONS(3859), 2, anon_sym_COMMA, anon_sym_RPAREN, - [95705] = 4, + [90227] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(431), 1, - sym__upname, - STATE(234), 1, - sym_constructor_name, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1793), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95719] = 4, + [90241] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1918), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95733] = 4, + ACTIONS(3334), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90253] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - STATE(1921), 1, + STATE(1900), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95747] = 4, + [90267] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3861), 1, + ACTIONS(3230), 1, anon_sym_LPAREN, - STATE(718), 1, - sym_function_parameters, + STATE(1602), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95761] = 4, + [90281] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3004), 1, - sym__name, - STATE(947), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95775] = 4, + ACTIONS(3861), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90293] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3949), 1, - sym__name, - STATE(1271), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95789] = 4, + ACTIONS(3863), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90305] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1734), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95803] = 3, + ACTIONS(3508), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90317] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(191), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3703), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [95815] = 4, + [90331] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1729), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95829] = 4, + ACTIONS(3299), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90343] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - STATE(1729), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95843] = 4, + ACTIONS(3865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90355] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - STATE(1916), 1, + STATE(1902), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95857] = 4, + [90369] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(251), 1, - sym__upname, - STATE(949), 1, - sym_constructor_name, + ACTIONS(3244), 1, + sym__name, + STATE(1751), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95871] = 4, + [90383] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, + ACTIONS(491), 1, anon_sym_DQUOTE, - STATE(1922), 1, + STATE(1916), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95885] = 4, + [90397] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1951), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95899] = 4, + ACTIONS(3867), 2, + anon_sym_RBRACE, + sym__upname, + [90409] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3873), 1, - sym__name, - STATE(1276), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95913] = 4, + ACTIONS(3869), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [90421] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1952), 1, - sym_string, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95927] = 4, + [90435] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3969), 1, - sym__name, - STATE(1281), 1, - sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95941] = 4, + ACTIONS(3606), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [90447] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, + ACTIONS(2737), 1, sym__upname, - STATE(698), 1, + STATE(1711), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95955] = 4, + [90461] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(91), 1, - anon_sym_DQUOTE, - STATE(1305), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95969] = 3, + ACTIONS(3642), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90473] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3971), 2, - anon_sym_RBRACE, - sym__upname, - [95981] = 4, + ACTIONS(3871), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90485] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1964), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [95995] = 3, + ACTIONS(3865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90497] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3973), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [96007] = 4, + ACTIONS(3873), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [90509] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1965), 1, - sym_string, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96021] = 3, + [90523] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3875), 1, + anon_sym_LPAREN, + STATE(917), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3975), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [96033] = 4, + [90537] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3977), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_unqualified_imports, + ACTIONS(3877), 1, + anon_sym_COMMA, + ACTIONS(3879), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96047] = 3, + [90551] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3979), 2, + ACTIONS(3438), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [96059] = 4, + anon_sym_LT_DASH, + [90563] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3981), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_unqualified_imports, + ACTIONS(3789), 1, + anon_sym_LPAREN, + STATE(1789), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96073] = 4, + [90577] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1851), 1, - sym_string, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3883), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96087] = 4, + [90591] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1848), 1, - sym_string, + ACTIONS(2737), 1, + sym__upname, + STATE(1557), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96101] = 4, + [90605] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1838), 1, - sym__upname, - STATE(1321), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96115] = 4, + ACTIONS(3885), 2, + anon_sym_RBRACE, + sym__upname, + [90617] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - sym__name, - STATE(249), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96129] = 4, + ACTIONS(3709), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90629] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3983), 1, - anon_sym_type, - ACTIONS(3985), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96143] = 3, + ACTIONS(3887), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [90641] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2914), 1, + sym__name, + STATE(920), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3987), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [96155] = 4, + [90655] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3989), 1, - anon_sym_type, - ACTIONS(3991), 1, - anon_sym_fn, + ACTIONS(3889), 1, + anon_sym_COLON, + ACTIONS(3891), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96169] = 4, + [90669] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2946), 1, - anon_sym_LBRACE, - ACTIONS(2948), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96183] = 3, + ACTIONS(3893), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90681] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3566), 2, + ACTIONS(3688), 2, anon_sym_COMMA, anon_sym_RPAREN, - [96195] = 4, + [90693] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(63), 1, - sym__upname, - STATE(103), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96209] = 4, + ACTIONS(3411), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90705] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1560), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96223] = 4, + ACTIONS(3895), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90717] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1872), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96237] = 4, + ACTIONS(3897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90729] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(421), 1, - anon_sym_DQUOTE, - STATE(1876), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96251] = 4, + ACTIONS(3899), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90741] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2998), 1, - sym__name, - STATE(702), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96265] = 3, + ACTIONS(3897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90753] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3559), 2, + ACTIONS(3899), 2, anon_sym_COMMA, anon_sym_RPAREN, - [96277] = 4, + [90765] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1526), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96291] = 4, + ACTIONS(3901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90777] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1722), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96305] = 3, + ACTIONS(3903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90789] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3657), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [96317] = 4, + ACTIONS(3905), 2, + anon_sym_RBRACE, + sym__upname, + [90801] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3252), 1, - sym__name, - STATE(94), 1, - sym_label, + ACTIONS(2737), 1, + sym__upname, + STATE(1729), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96331] = 4, + [90815] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3993), 1, - anon_sym_LPAREN, - STATE(260), 1, - sym_arguments, + ACTIONS(2938), 1, + sym__name, + STATE(1729), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96345] = 4, + [90829] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - sym__upname, - STATE(1167), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96359] = 3, + ACTIONS(3907), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [90841] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3995), 2, + ACTIONS(3655), 2, anon_sym_COMMA, anon_sym_RPAREN, - [96371] = 4, + [90853] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3997), 1, - anon_sym_LPAREN, - STATE(700), 1, - sym_arguments, + ACTIONS(219), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96385] = 3, + [90867] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3506), 2, + ACTIONS(2449), 2, anon_sym_COMMA, anon_sym_RPAREN, - [96397] = 3, + [90879] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3999), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [96409] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(3536), 2, + ACTIONS(3779), 2, anon_sym_COMMA, anon_sym_RPAREN, - [96421] = 4, + [90891] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4001), 1, - anon_sym_type, - ACTIONS(4003), 1, - anon_sym_fn, + ACTIONS(3909), 1, + anon_sym_LPAREN, + STATE(654), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96435] = 4, + [90905] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, - sym__name, - STATE(1688), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96449] = 4, + ACTIONS(3513), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90917] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3921), 1, - anon_sym_LPAREN, - STATE(1285), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96463] = 4, + ACTIONS(3911), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [90929] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3016), 1, + ACTIONS(2938), 1, sym__name, - STATE(1663), 1, + STATE(1464), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96477] = 3, + [90943] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4005), 1, - anon_sym_EQ, + ACTIONS(3230), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96488] = 3, + [90957] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4007), 1, - anon_sym_DOT, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1882), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96499] = 3, + [90971] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4009), 1, - anon_sym_RPAREN, + ACTIONS(491), 1, + anon_sym_DQUOTE, + STATE(1883), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96510] = 3, + [90985] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4011), 1, - anon_sym_DOT, + ACTIONS(2938), 1, + sym__name, + STATE(1446), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96521] = 3, + [90999] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4013), 1, - anon_sym_EQ, + ACTIONS(2938), 1, + sym__name, + STATE(1658), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96532] = 3, + [91013] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4015), 1, - anon_sym_type, + ACTIONS(3913), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96543] = 3, + [91024] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4017), 1, + ACTIONS(3915), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96554] = 3, + [91035] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4019), 1, - anon_sym_DASH_GT, + ACTIONS(3917), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96565] = 3, + [91046] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, + ACTIONS(3919), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96576] = 3, + [91057] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4023), 1, - anon_sym_EQ, + ACTIONS(3921), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96587] = 3, + [91068] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3897), 1, + ACTIONS(3923), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96598] = 3, + [91079] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4025), 1, - anon_sym_EQ, + ACTIONS(2000), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96609] = 3, + [91090] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4027), 1, - anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96620] = 3, + [91101] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, + ACTIONS(3927), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96631] = 3, + [91112] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4031), 1, - anon_sym_DOT, + ACTIONS(3929), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96642] = 3, + [91123] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4033), 1, - anon_sym_LPAREN, + ACTIONS(3931), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96653] = 3, + [91134] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4035), 1, + ACTIONS(3933), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96664] = 3, + [91145] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4037), 1, - anon_sym_RBRACK, + ACTIONS(3935), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96675] = 3, + [91156] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4039), 1, - anon_sym_LPAREN, + ACTIONS(3937), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96686] = 3, + [91167] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4041), 1, - anon_sym_LT_DASH, + ACTIONS(3939), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96697] = 3, + [91178] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4043), 1, - anon_sym_DOT, + ACTIONS(3941), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96708] = 3, + [91189] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4045), 1, + ACTIONS(3943), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96719] = 3, + [91200] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4047), 1, + ACTIONS(3945), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96730] = 3, + [91211] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4049), 1, - anon_sym_EQ, + ACTIONS(3947), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96741] = 3, + [91222] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4051), 1, - anon_sym_LPAREN, + ACTIONS(3949), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96752] = 3, + [91233] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4053), 1, + ACTIONS(3951), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96763] = 3, + [91244] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4055), 1, - anon_sym_DOT, + ACTIONS(3953), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96774] = 3, + [91255] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4057), 1, - anon_sym_DASH_GT, + ACTIONS(3955), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96785] = 3, + [91266] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4059), 1, - anon_sym_RBRACE, + ACTIONS(3957), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96796] = 3, + [91277] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4061), 1, - anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96807] = 3, + [91288] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4063), 1, - sym__name, + ACTIONS(3961), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96818] = 3, + [91299] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2179), 1, - anon_sym_RPAREN, + ACTIONS(3963), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96829] = 3, + [91310] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4065), 1, - anon_sym_RPAREN, + ACTIONS(3965), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96840] = 3, + [91321] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4067), 1, - anon_sym_LPAREN, + ACTIONS(3967), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96851] = 3, + [91332] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4069), 1, - sym__name, + ACTIONS(3969), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96862] = 3, + [91343] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4071), 1, - anon_sym_RPAREN, + ACTIONS(3971), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96873] = 3, + [91354] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4073), 1, - anon_sym_RPAREN, + ACTIONS(3973), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96884] = 3, + [91365] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4075), 1, - anon_sym_RBRACE, + ACTIONS(3975), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96895] = 3, + [91376] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4077), 1, - anon_sym_RPAREN, + ACTIONS(3977), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96906] = 3, + [91387] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4079), 1, - anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96917] = 3, + [91398] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4081), 1, - anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96928] = 3, + [91409] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4083), 1, - anon_sym_RBRACE, + ACTIONS(3095), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96939] = 3, + [91420] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4085), 1, - anon_sym_COLON, + ACTIONS(3981), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96950] = 3, + [91431] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4087), 1, - anon_sym_LBRACE, + ACTIONS(3983), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96961] = 3, + [91442] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4089), 1, + ACTIONS(3985), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96972] = 3, + [91453] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4091), 1, - anon_sym_EQ, + ACTIONS(3987), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96983] = 3, + [91464] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4093), 1, + ACTIONS(3989), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [96994] = 3, + [91475] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4095), 1, - anon_sym_LPAREN, + ACTIONS(3991), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97005] = 3, + [91486] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4097), 1, - anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97016] = 3, + [91497] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4099), 1, + ACTIONS(3995), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97027] = 3, + [91508] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4101), 1, - anon_sym_LBRACE, + ACTIONS(3997), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97038] = 3, + [91519] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4103), 1, + ACTIONS(3999), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97049] = 3, + [91530] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4105), 1, + ACTIONS(4001), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97060] = 3, + [91541] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4107), 1, - anon_sym_EQ, + ACTIONS(4003), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97071] = 3, + [91552] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4109), 1, - anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97082] = 3, + [91563] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4111), 1, + ACTIONS(4007), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [91574] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4009), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97093] = 3, + [91585] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4113), 1, - anon_sym_RPAREN, + ACTIONS(4011), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97104] = 3, + [91596] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4115), 1, - anon_sym_RPAREN, + ACTIONS(4013), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97115] = 3, + [91607] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4117), 1, - anon_sym_RPAREN, + ACTIONS(4015), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97126] = 3, + [91618] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4119), 1, - anon_sym_LT_DASH, + ACTIONS(4017), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97137] = 3, + [91629] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4121), 1, - anon_sym_RPAREN, + ACTIONS(4019), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97148] = 3, + [91640] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4123), 1, + ACTIONS(4021), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97159] = 3, + [91651] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4125), 1, - anon_sym_LPAREN, + ACTIONS(4023), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97170] = 3, + [91662] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4127), 1, + ACTIONS(4025), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97181] = 3, + [91673] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4129), 1, + ACTIONS(4027), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97192] = 3, + [91684] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4131), 1, - anon_sym_COLON, + ACTIONS(4029), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97203] = 3, + [91695] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4133), 1, - anon_sym_RBRACE, + ACTIONS(4031), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97214] = 3, + [91706] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4135), 1, - anon_sym_LBRACE, + ACTIONS(4033), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97225] = 3, + [91717] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4137), 1, - anon_sym_RBRACK, + ACTIONS(4035), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97236] = 3, + [91728] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4139), 1, + ACTIONS(4037), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97247] = 3, + [91739] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4141), 1, - anon_sym_DOT, + ACTIONS(4039), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97258] = 3, + [91750] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4143), 1, - anon_sym_EQ, + ACTIONS(4041), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97269] = 3, + [91761] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4145), 1, + ACTIONS(4043), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97280] = 3, + [91772] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4147), 1, - anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97291] = 3, + [91783] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4149), 1, - anon_sym_RPAREN, + ACTIONS(4047), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97302] = 3, + [91794] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4151), 1, - anon_sym_LPAREN, + ACTIONS(4049), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97313] = 3, + [91805] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4153), 1, - anon_sym_DOT, + ACTIONS(4051), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97324] = 3, + [91816] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4155), 1, + ACTIONS(4053), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97335] = 3, + [91827] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3138), 1, - anon_sym_RPAREN, + ACTIONS(4055), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97346] = 3, + [91838] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4157), 1, + ACTIONS(4057), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97357] = 3, + [91849] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4159), 1, - anon_sym_DOT, + ACTIONS(4059), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97368] = 3, + [91860] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4161), 1, - anon_sym_COLON, + ACTIONS(4061), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97379] = 3, + [91871] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4163), 1, - anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97390] = 3, + [91882] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4165), 1, - anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97401] = 3, + [91893] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4167), 1, - anon_sym_DASH_GT, + ACTIONS(4067), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97412] = 3, + [91904] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4169), 1, - anon_sym_RBRACE, + ACTIONS(4069), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97423] = 3, + [91915] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4171), 1, + ACTIONS(4071), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97434] = 3, + [91926] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4173), 1, - anon_sym_type, + ACTIONS(4073), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97445] = 3, + [91937] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4175), 1, + ACTIONS(4075), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97456] = 3, + [91948] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4177), 1, - anon_sym_type, + ACTIONS(4077), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97467] = 3, + [91959] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4179), 1, - anon_sym_RPAREN, + ACTIONS(4079), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97478] = 3, + [91970] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4181), 1, - anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97489] = 3, + [91981] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4183), 1, - anon_sym_RBRACE, + ACTIONS(4083), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97500] = 3, + [91992] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4185), 1, - anon_sym_LPAREN, + ACTIONS(4085), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97511] = 3, + [92003] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4187), 1, - anon_sym_RBRACE, + ACTIONS(4087), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97522] = 3, + [92014] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1998), 1, - anon_sym_RPAREN, + ACTIONS(4089), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97533] = 3, + [92025] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4189), 1, - anon_sym_COLON, + ACTIONS(4091), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97544] = 3, + [92036] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4191), 1, + ACTIONS(4093), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97555] = 3, + [92047] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4193), 1, + ACTIONS(4095), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97566] = 3, + [92058] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4195), 1, - ts_builtin_sym_end, + ACTIONS(4097), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97577] = 3, + [92069] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4197), 1, + ACTIONS(4099), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97588] = 3, + [92080] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4199), 1, - anon_sym_DASH_GT, + ACTIONS(4101), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97599] = 3, + [92091] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4201), 1, - anon_sym_RPAREN, + ACTIONS(4103), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97610] = 3, + [92102] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4203), 1, - anon_sym_type, + ACTIONS(4105), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97621] = 3, + [92113] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4205), 1, - anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97632] = 3, + [92124] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4207), 1, - anon_sym_RPAREN, + ACTIONS(4109), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97643] = 3, + [92135] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4209), 1, + ACTIONS(4111), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97654] = 3, + [92146] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, + ACTIONS(4113), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97665] = 3, + [92157] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4213), 1, - anon_sym_RPAREN, + ACTIONS(4115), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97676] = 3, + [92168] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4215), 1, - anon_sym_DOT, + ACTIONS(4117), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97687] = 3, + [92179] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4217), 1, - anon_sym_DASH_GT, + ACTIONS(4119), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97698] = 3, + [92190] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4219), 1, - anon_sym_DASH_GT, + ACTIONS(4121), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97709] = 3, + [92201] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97720] = 3, + [92212] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4223), 1, - anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97731] = 3, + [92223] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4225), 1, - anon_sym_RBRACK, + ACTIONS(4125), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97742] = 3, + [92234] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4227), 1, - anon_sym_DASH_GT, + ACTIONS(4127), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97753] = 3, + [92245] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4229), 1, - anon_sym_RBRACK, + ACTIONS(4129), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97764] = 3, + [92256] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4231), 1, - anon_sym_LBRACE, + ACTIONS(4131), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97775] = 3, + [92267] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4233), 1, - anon_sym_DASH_GT, + ACTIONS(4133), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97786] = 3, + [92278] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4235), 1, + ACTIONS(4135), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97797] = 3, + [92289] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4237), 1, - anon_sym_DOT, + ACTIONS(4137), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97808] = 3, + [92300] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4239), 1, - anon_sym_LBRACE, + ACTIONS(4139), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97819] = 3, + [92311] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4241), 1, - anon_sym_RBRACK, + ACTIONS(4141), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97830] = 3, + [92322] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4243), 1, - anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97841] = 3, + [92333] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4245), 1, - anon_sym_RPAREN, + ACTIONS(4145), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97852] = 3, + [92344] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4247), 1, - anon_sym_LBRACE, + ACTIONS(4147), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97863] = 3, + [92355] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4249), 1, + ACTIONS(4149), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97874] = 3, + [92366] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4251), 1, - anon_sym_RBRACE, + ACTIONS(4151), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97885] = 3, + [92377] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4253), 1, - anon_sym_RBRACE, + ACTIONS(4153), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97896] = 3, + [92388] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4255), 1, - anon_sym_EQ, + ACTIONS(4155), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97907] = 3, + [92399] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4257), 1, - anon_sym_DASH_GT, + ACTIONS(4157), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97918] = 3, + [92410] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4259), 1, - anon_sym_DASH_GT, + ACTIONS(4159), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97929] = 3, + [92421] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4261), 1, - anon_sym_EQ, + ACTIONS(4161), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97940] = 3, + [92432] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4263), 1, - anon_sym_DASH_GT, + ACTIONS(4163), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97951] = 3, + [92443] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4265), 1, - anon_sym_LPAREN, + ACTIONS(4165), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97962] = 3, + [92454] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4267), 1, - anon_sym_RPAREN, + ACTIONS(4167), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97973] = 3, + [92465] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4269), 1, - anon_sym_RPAREN, + ACTIONS(4169), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97984] = 3, + [92476] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4271), 1, + ACTIONS(4171), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [97995] = 3, + [92487] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4273), 1, + ACTIONS(4173), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98006] = 3, + [92498] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, + ACTIONS(4175), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98017] = 3, + [92509] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4277), 1, + ACTIONS(4177), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98028] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4279), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [98039] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4281), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [98050] = 3, + [92520] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4283), 1, - anon_sym_RPAREN, + ACTIONS(4179), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98061] = 3, + [92531] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4285), 1, + ACTIONS(4181), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98072] = 3, + [92542] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4287), 1, - anon_sym_COLON, + ACTIONS(4183), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98083] = 3, + [92553] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4289), 1, + ACTIONS(4185), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98094] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(4291), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [98105] = 3, + [92564] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4293), 1, - anon_sym_RPAREN, + ACTIONS(4187), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98116] = 3, + [92575] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4295), 1, - anon_sym_RPAREN, + ACTIONS(4189), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [98127] = 3, + [92586] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(4297), 1, - anon_sym_RPAREN, + ACTIONS(4191), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -86243,1957 +82152,1910 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(14)] = 0, [SMALL_STATE(15)] = 73, - [SMALL_STATE(16)] = 141, - [SMALL_STATE(17)] = 271, - [SMALL_STATE(18)] = 401, - [SMALL_STATE(19)] = 531, - [SMALL_STATE(20)] = 661, - [SMALL_STATE(21)] = 791, - [SMALL_STATE(22)] = 921, - [SMALL_STATE(23)] = 1051, - [SMALL_STATE(24)] = 1119, - [SMALL_STATE(25)] = 1249, - [SMALL_STATE(26)] = 1317, - [SMALL_STATE(27)] = 1447, - [SMALL_STATE(28)] = 1577, - [SMALL_STATE(29)] = 1707, - [SMALL_STATE(30)] = 1837, - [SMALL_STATE(31)] = 1905, - [SMALL_STATE(32)] = 1973, - [SMALL_STATE(33)] = 2103, - [SMALL_STATE(34)] = 2233, - [SMALL_STATE(35)] = 2363, - [SMALL_STATE(36)] = 2493, - [SMALL_STATE(37)] = 2623, - [SMALL_STATE(38)] = 2753, - [SMALL_STATE(39)] = 2883, - [SMALL_STATE(40)] = 3013, - [SMALL_STATE(41)] = 3081, - [SMALL_STATE(42)] = 3211, - [SMALL_STATE(43)] = 3341, - [SMALL_STATE(44)] = 3471, - [SMALL_STATE(45)] = 3543, - [SMALL_STATE(46)] = 3611, - [SMALL_STATE(47)] = 3741, - [SMALL_STATE(48)] = 3809, - [SMALL_STATE(49)] = 3939, - [SMALL_STATE(50)] = 4007, - [SMALL_STATE(51)] = 4137, - [SMALL_STATE(52)] = 4267, - [SMALL_STATE(53)] = 4397, - [SMALL_STATE(54)] = 4465, - [SMALL_STATE(55)] = 4595, - [SMALL_STATE(56)] = 4663, - [SMALL_STATE(57)] = 4793, - [SMALL_STATE(58)] = 4923, - [SMALL_STATE(59)] = 5053, - [SMALL_STATE(60)] = 5121, - [SMALL_STATE(61)] = 5189, - [SMALL_STATE(62)] = 5257, - [SMALL_STATE(63)] = 5325, - [SMALL_STATE(64)] = 5393, - [SMALL_STATE(65)] = 5523, - [SMALL_STATE(66)] = 5653, - [SMALL_STATE(67)] = 5725, - [SMALL_STATE(68)] = 5855, - [SMALL_STATE(69)] = 5985, - [SMALL_STATE(70)] = 6115, - [SMALL_STATE(71)] = 6187, - [SMALL_STATE(72)] = 6317, - [SMALL_STATE(73)] = 6384, - [SMALL_STATE(74)] = 6511, - [SMALL_STATE(75)] = 6578, - [SMALL_STATE(76)] = 6705, - [SMALL_STATE(77)] = 6832, - [SMALL_STATE(78)] = 6899, - [SMALL_STATE(79)] = 7026, - [SMALL_STATE(80)] = 7153, - [SMALL_STATE(81)] = 7222, - [SMALL_STATE(82)] = 7349, - [SMALL_STATE(83)] = 7476, - [SMALL_STATE(84)] = 7603, - [SMALL_STATE(85)] = 7730, - [SMALL_STATE(86)] = 7799, - [SMALL_STATE(87)] = 7866, - [SMALL_STATE(88)] = 7933, - [SMALL_STATE(89)] = 8000, - [SMALL_STATE(90)] = 8067, - [SMALL_STATE(91)] = 8134, - [SMALL_STATE(92)] = 8261, - [SMALL_STATE(93)] = 8330, - [SMALL_STATE(94)] = 8397, - [SMALL_STATE(95)] = 8464, - [SMALL_STATE(96)] = 8533, - [SMALL_STATE(97)] = 8660, - [SMALL_STATE(98)] = 8727, - [SMALL_STATE(99)] = 8794, - [SMALL_STATE(100)] = 8921, - [SMALL_STATE(101)] = 8988, - [SMALL_STATE(102)] = 9115, - [SMALL_STATE(103)] = 9242, - [SMALL_STATE(104)] = 9309, - [SMALL_STATE(105)] = 9376, - [SMALL_STATE(106)] = 9443, - [SMALL_STATE(107)] = 9570, - [SMALL_STATE(108)] = 9697, - [SMALL_STATE(109)] = 9764, - [SMALL_STATE(110)] = 9835, - [SMALL_STATE(111)] = 9904, - [SMALL_STATE(112)] = 10031, - [SMALL_STATE(113)] = 10158, - [SMALL_STATE(114)] = 10225, - [SMALL_STATE(115)] = 10296, - [SMALL_STATE(116)] = 10423, - [SMALL_STATE(117)] = 10490, - [SMALL_STATE(118)] = 10617, - [SMALL_STATE(119)] = 10684, - [SMALL_STATE(120)] = 10751, - [SMALL_STATE(121)] = 10818, - [SMALL_STATE(122)] = 10945, - [SMALL_STATE(123)] = 11012, - [SMALL_STATE(124)] = 11079, - [SMALL_STATE(125)] = 11150, - [SMALL_STATE(126)] = 11221, - [SMALL_STATE(127)] = 11287, - [SMALL_STATE(128)] = 11353, - [SMALL_STATE(129)] = 11419, - [SMALL_STATE(130)] = 11485, - [SMALL_STATE(131)] = 11551, - [SMALL_STATE(132)] = 11681, - [SMALL_STATE(133)] = 11811, - [SMALL_STATE(134)] = 11941, - [SMALL_STATE(135)] = 12007, - [SMALL_STATE(136)] = 12073, - [SMALL_STATE(137)] = 12139, - [SMALL_STATE(138)] = 12207, - [SMALL_STATE(139)] = 12273, - [SMALL_STATE(140)] = 12339, - [SMALL_STATE(141)] = 12405, - [SMALL_STATE(142)] = 12535, - [SMALL_STATE(143)] = 12603, - [SMALL_STATE(144)] = 12671, - [SMALL_STATE(145)] = 12757, - [SMALL_STATE(146)] = 12823, - [SMALL_STATE(147)] = 12889, - [SMALL_STATE(148)] = 12963, - [SMALL_STATE(149)] = 13093, - [SMALL_STATE(150)] = 13169, - [SMALL_STATE(151)] = 13249, - [SMALL_STATE(152)] = 13331, - [SMALL_STATE(153)] = 13397, - [SMALL_STATE(154)] = 13463, - [SMALL_STATE(155)] = 13529, - [SMALL_STATE(156)] = 13595, - [SMALL_STATE(157)] = 13661, - [SMALL_STATE(158)] = 13727, - [SMALL_STATE(159)] = 13793, - [SMALL_STATE(160)] = 13859, - [SMALL_STATE(161)] = 13925, - [SMALL_STATE(162)] = 14055, - [SMALL_STATE(163)] = 14139, - [SMALL_STATE(164)] = 14225, - [SMALL_STATE(165)] = 14295, - [SMALL_STATE(166)] = 14361, - [SMALL_STATE(167)] = 14447, - [SMALL_STATE(168)] = 14513, - [SMALL_STATE(169)] = 14599, - [SMALL_STATE(170)] = 14685, - [SMALL_STATE(171)] = 14815, - [SMALL_STATE(172)] = 14881, - [SMALL_STATE(173)] = 14947, - [SMALL_STATE(174)] = 15013, - [SMALL_STATE(175)] = 15079, - [SMALL_STATE(176)] = 15145, - [SMALL_STATE(177)] = 15211, - [SMALL_STATE(178)] = 15294, - [SMALL_STATE(179)] = 15359, - [SMALL_STATE(180)] = 15444, - [SMALL_STATE(181)] = 15571, - [SMALL_STATE(182)] = 15656, - [SMALL_STATE(183)] = 15783, - [SMALL_STATE(184)] = 15848, - [SMALL_STATE(185)] = 15975, - [SMALL_STATE(186)] = 16102, - [SMALL_STATE(187)] = 16167, - [SMALL_STATE(188)] = 16232, - [SMALL_STATE(189)] = 16297, - [SMALL_STATE(190)] = 16382, - [SMALL_STATE(191)] = 16509, - [SMALL_STATE(192)] = 16636, - [SMALL_STATE(193)] = 16763, - [SMALL_STATE(194)] = 16828, - [SMALL_STATE(195)] = 16955, - [SMALL_STATE(196)] = 17020, - [SMALL_STATE(197)] = 17089, - [SMALL_STATE(198)] = 17216, - [SMALL_STATE(199)] = 17297, - [SMALL_STATE(200)] = 17376, - [SMALL_STATE(201)] = 17451, - [SMALL_STATE(202)] = 17536, - [SMALL_STATE(203)] = 17609, - [SMALL_STATE(204)] = 17674, - [SMALL_STATE(205)] = 17739, - [SMALL_STATE(206)] = 17804, - [SMALL_STATE(207)] = 17869, - [SMALL_STATE(208)] = 17934, - [SMALL_STATE(209)] = 17999, - [SMALL_STATE(210)] = 18126, - [SMALL_STATE(211)] = 18191, - [SMALL_STATE(212)] = 18318, - [SMALL_STATE(213)] = 18445, - [SMALL_STATE(214)] = 18530, - [SMALL_STATE(215)] = 18657, - [SMALL_STATE(216)] = 18742, - [SMALL_STATE(217)] = 18869, - [SMALL_STATE(218)] = 18934, - [SMALL_STATE(219)] = 18999, - [SMALL_STATE(220)] = 19064, - [SMALL_STATE(221)] = 19191, - [SMALL_STATE(222)] = 19276, - [SMALL_STATE(223)] = 19361, - [SMALL_STATE(224)] = 19488, - [SMALL_STATE(225)] = 19553, - [SMALL_STATE(226)] = 19618, - [SMALL_STATE(227)] = 19683, - [SMALL_STATE(228)] = 19810, - [SMALL_STATE(229)] = 19937, - [SMALL_STATE(230)] = 20064, - [SMALL_STATE(231)] = 20149, - [SMALL_STATE(232)] = 20276, - [SMALL_STATE(233)] = 20341, - [SMALL_STATE(234)] = 20468, - [SMALL_STATE(235)] = 20532, - [SMALL_STATE(236)] = 20596, - [SMALL_STATE(237)] = 20660, - [SMALL_STATE(238)] = 20784, - [SMALL_STATE(239)] = 20906, - [SMALL_STATE(240)] = 20970, - [SMALL_STATE(241)] = 21037, - [SMALL_STATE(242)] = 21155, - [SMALL_STATE(243)] = 21217, - [SMALL_STATE(244)] = 21335, - [SMALL_STATE(245)] = 21397, - [SMALL_STATE(246)] = 21515, - [SMALL_STATE(247)] = 21633, - [SMALL_STATE(248)] = 21695, - [SMALL_STATE(249)] = 21757, - [SMALL_STATE(250)] = 21819, - [SMALL_STATE(251)] = 21881, - [SMALL_STATE(252)] = 21999, - [SMALL_STATE(253)] = 22117, - [SMALL_STATE(254)] = 22235, - [SMALL_STATE(255)] = 22353, - [SMALL_STATE(256)] = 22471, - [SMALL_STATE(257)] = 22587, - [SMALL_STATE(258)] = 22649, - [SMALL_STATE(259)] = 22767, - [SMALL_STATE(260)] = 22829, - [SMALL_STATE(261)] = 22891, - [SMALL_STATE(262)] = 22953, - [SMALL_STATE(263)] = 23015, - [SMALL_STATE(264)] = 23081, - [SMALL_STATE(265)] = 23199, - [SMALL_STATE(266)] = 23317, - [SMALL_STATE(267)] = 23383, - [SMALL_STATE(268)] = 23445, - [SMALL_STATE(269)] = 23563, - [SMALL_STATE(270)] = 23681, - [SMALL_STATE(271)] = 23796, - [SMALL_STATE(272)] = 23911, - [SMALL_STATE(273)] = 23974, - [SMALL_STATE(274)] = 24037, - [SMALL_STATE(275)] = 24100, - [SMALL_STATE(276)] = 24215, - [SMALL_STATE(277)] = 24330, - [SMALL_STATE(278)] = 24445, - [SMALL_STATE(279)] = 24560, - [SMALL_STATE(280)] = 24675, - [SMALL_STATE(281)] = 24790, - [SMALL_STATE(282)] = 24905, - [SMALL_STATE(283)] = 25020, - [SMALL_STATE(284)] = 25081, - [SMALL_STATE(285)] = 25196, - [SMALL_STATE(286)] = 25257, - [SMALL_STATE(287)] = 25372, - [SMALL_STATE(288)] = 25487, - [SMALL_STATE(289)] = 25602, - [SMALL_STATE(290)] = 25717, - [SMALL_STATE(291)] = 25832, - [SMALL_STATE(292)] = 25893, - [SMALL_STATE(293)] = 26008, - [SMALL_STATE(294)] = 26123, - [SMALL_STATE(295)] = 26184, - [SMALL_STATE(296)] = 26245, - [SMALL_STATE(297)] = 26306, - [SMALL_STATE(298)] = 26367, - [SMALL_STATE(299)] = 26428, - [SMALL_STATE(300)] = 26543, - [SMALL_STATE(301)] = 26658, - [SMALL_STATE(302)] = 26773, - [SMALL_STATE(303)] = 26888, - [SMALL_STATE(304)] = 27003, - [SMALL_STATE(305)] = 27118, - [SMALL_STATE(306)] = 27233, - [SMALL_STATE(307)] = 27348, - [SMALL_STATE(308)] = 27463, - [SMALL_STATE(309)] = 27578, - [SMALL_STATE(310)] = 27693, - [SMALL_STATE(311)] = 27808, - [SMALL_STATE(312)] = 27923, - [SMALL_STATE(313)] = 28038, - [SMALL_STATE(314)] = 28153, - [SMALL_STATE(315)] = 28268, - [SMALL_STATE(316)] = 28333, - [SMALL_STATE(317)] = 28448, - [SMALL_STATE(318)] = 28563, - [SMALL_STATE(319)] = 28678, - [SMALL_STATE(320)] = 28793, - [SMALL_STATE(321)] = 28908, - [SMALL_STATE(322)] = 29023, - [SMALL_STATE(323)] = 29138, - [SMALL_STATE(324)] = 29253, - [SMALL_STATE(325)] = 29368, - [SMALL_STATE(326)] = 29480, - [SMALL_STATE(327)] = 29592, - [SMALL_STATE(328)] = 29704, - [SMALL_STATE(329)] = 29816, - [SMALL_STATE(330)] = 29928, - [SMALL_STATE(331)] = 30040, - [SMALL_STATE(332)] = 30152, - [SMALL_STATE(333)] = 30264, - [SMALL_STATE(334)] = 30376, - [SMALL_STATE(335)] = 30488, - [SMALL_STATE(336)] = 30604, - [SMALL_STATE(337)] = 30716, - [SMALL_STATE(338)] = 30828, - [SMALL_STATE(339)] = 30944, - [SMALL_STATE(340)] = 31060, - [SMALL_STATE(341)] = 31172, - [SMALL_STATE(342)] = 31288, - [SMALL_STATE(343)] = 31348, - [SMALL_STATE(344)] = 31460, - [SMALL_STATE(345)] = 31520, - [SMALL_STATE(346)] = 31632, - [SMALL_STATE(347)] = 31692, - [SMALL_STATE(348)] = 31752, - [SMALL_STATE(349)] = 31864, - [SMALL_STATE(350)] = 31976, - [SMALL_STATE(351)] = 32088, - [SMALL_STATE(352)] = 32200, - [SMALL_STATE(353)] = 32260, - [SMALL_STATE(354)] = 32372, - [SMALL_STATE(355)] = 32432, - [SMALL_STATE(356)] = 32492, - [SMALL_STATE(357)] = 32604, - [SMALL_STATE(358)] = 32716, - [SMALL_STATE(359)] = 32828, - [SMALL_STATE(360)] = 32888, - [SMALL_STATE(361)] = 33004, - [SMALL_STATE(362)] = 33116, - [SMALL_STATE(363)] = 33176, - [SMALL_STATE(364)] = 33288, - [SMALL_STATE(365)] = 33400, - [SMALL_STATE(366)] = 33512, - [SMALL_STATE(367)] = 33624, - [SMALL_STATE(368)] = 33736, - [SMALL_STATE(369)] = 33848, - [SMALL_STATE(370)] = 33960, - [SMALL_STATE(371)] = 34072, - [SMALL_STATE(372)] = 34184, - [SMALL_STATE(373)] = 34300, - [SMALL_STATE(374)] = 34412, - [SMALL_STATE(375)] = 34524, - [SMALL_STATE(376)] = 34636, - [SMALL_STATE(377)] = 34696, - [SMALL_STATE(378)] = 34756, - [SMALL_STATE(379)] = 34868, - [SMALL_STATE(380)] = 34980, - [SMALL_STATE(381)] = 35092, - [SMALL_STATE(382)] = 35204, - [SMALL_STATE(383)] = 35316, - [SMALL_STATE(384)] = 35432, - [SMALL_STATE(385)] = 35544, - [SMALL_STATE(386)] = 35656, - [SMALL_STATE(387)] = 35768, - [SMALL_STATE(388)] = 35880, - [SMALL_STATE(389)] = 35992, - [SMALL_STATE(390)] = 36104, - [SMALL_STATE(391)] = 36216, - [SMALL_STATE(392)] = 36328, - [SMALL_STATE(393)] = 36440, - [SMALL_STATE(394)] = 36552, - [SMALL_STATE(395)] = 36664, - [SMALL_STATE(396)] = 36776, - [SMALL_STATE(397)] = 36892, - [SMALL_STATE(398)] = 37004, - [SMALL_STATE(399)] = 37116, - [SMALL_STATE(400)] = 37228, - [SMALL_STATE(401)] = 37340, - [SMALL_STATE(402)] = 37452, - [SMALL_STATE(403)] = 37564, - [SMALL_STATE(404)] = 37676, - [SMALL_STATE(405)] = 37788, - [SMALL_STATE(406)] = 37900, - [SMALL_STATE(407)] = 38012, - [SMALL_STATE(408)] = 38124, - [SMALL_STATE(409)] = 38236, - [SMALL_STATE(410)] = 38348, - [SMALL_STATE(411)] = 38460, - [SMALL_STATE(412)] = 38572, - [SMALL_STATE(413)] = 38684, - [SMALL_STATE(414)] = 38744, - [SMALL_STATE(415)] = 38804, - [SMALL_STATE(416)] = 38920, - [SMALL_STATE(417)] = 38980, - [SMALL_STATE(418)] = 39092, - [SMALL_STATE(419)] = 39204, - [SMALL_STATE(420)] = 39316, - [SMALL_STATE(421)] = 39428, - [SMALL_STATE(422)] = 39540, - [SMALL_STATE(423)] = 39652, - [SMALL_STATE(424)] = 39764, - [SMALL_STATE(425)] = 39876, - [SMALL_STATE(426)] = 39936, - [SMALL_STATE(427)] = 40048, - [SMALL_STATE(428)] = 40160, - [SMALL_STATE(429)] = 40220, - [SMALL_STATE(430)] = 40332, - [SMALL_STATE(431)] = 40392, - [SMALL_STATE(432)] = 40504, - [SMALL_STATE(433)] = 40616, - [SMALL_STATE(434)] = 40728, - [SMALL_STATE(435)] = 40840, - [SMALL_STATE(436)] = 40952, - [SMALL_STATE(437)] = 41012, - [SMALL_STATE(438)] = 41124, - [SMALL_STATE(439)] = 41236, - [SMALL_STATE(440)] = 41296, - [SMALL_STATE(441)] = 41408, - [SMALL_STATE(442)] = 41520, - [SMALL_STATE(443)] = 41632, - [SMALL_STATE(444)] = 41744, - [SMALL_STATE(445)] = 41804, - [SMALL_STATE(446)] = 41916, - [SMALL_STATE(447)] = 42028, - [SMALL_STATE(448)] = 42140, - [SMALL_STATE(449)] = 42200, - [SMALL_STATE(450)] = 42260, - [SMALL_STATE(451)] = 42320, - [SMALL_STATE(452)] = 42380, - [SMALL_STATE(453)] = 42492, - [SMALL_STATE(454)] = 42552, - [SMALL_STATE(455)] = 42668, - [SMALL_STATE(456)] = 42728, - [SMALL_STATE(457)] = 42844, - [SMALL_STATE(458)] = 42956, - [SMALL_STATE(459)] = 43068, - [SMALL_STATE(460)] = 43180, - [SMALL_STATE(461)] = 43292, - [SMALL_STATE(462)] = 43404, - [SMALL_STATE(463)] = 43520, - [SMALL_STATE(464)] = 43632, - [SMALL_STATE(465)] = 43748, - [SMALL_STATE(466)] = 43860, - [SMALL_STATE(467)] = 43920, - [SMALL_STATE(468)] = 44036, - [SMALL_STATE(469)] = 44152, - [SMALL_STATE(470)] = 44264, - [SMALL_STATE(471)] = 44376, - [SMALL_STATE(472)] = 44488, - [SMALL_STATE(473)] = 44604, - [SMALL_STATE(474)] = 44716, - [SMALL_STATE(475)] = 44828, - [SMALL_STATE(476)] = 44888, - [SMALL_STATE(477)] = 45004, - [SMALL_STATE(478)] = 45064, - [SMALL_STATE(479)] = 45176, - [SMALL_STATE(480)] = 45288, - [SMALL_STATE(481)] = 45400, - [SMALL_STATE(482)] = 45512, - [SMALL_STATE(483)] = 45624, - [SMALL_STATE(484)] = 45736, - [SMALL_STATE(485)] = 45848, - [SMALL_STATE(486)] = 45960, - [SMALL_STATE(487)] = 46072, - [SMALL_STATE(488)] = 46188, - [SMALL_STATE(489)] = 46300, - [SMALL_STATE(490)] = 46412, - [SMALL_STATE(491)] = 46472, - [SMALL_STATE(492)] = 46588, - [SMALL_STATE(493)] = 46700, - [SMALL_STATE(494)] = 46812, - [SMALL_STATE(495)] = 46872, - [SMALL_STATE(496)] = 46988, - [SMALL_STATE(497)] = 47100, - [SMALL_STATE(498)] = 47164, - [SMALL_STATE(499)] = 47228, - [SMALL_STATE(500)] = 47340, - [SMALL_STATE(501)] = 47400, - [SMALL_STATE(502)] = 47512, - [SMALL_STATE(503)] = 47572, - [SMALL_STATE(504)] = 47684, - [SMALL_STATE(505)] = 47800, - [SMALL_STATE(506)] = 47912, - [SMALL_STATE(507)] = 47971, - [SMALL_STATE(508)] = 48032, - [SMALL_STATE(509)] = 48093, - [SMALL_STATE(510)] = 48154, - [SMALL_STATE(511)] = 48215, - [SMALL_STATE(512)] = 48276, - [SMALL_STATE(513)] = 48339, - [SMALL_STATE(514)] = 48398, - [SMALL_STATE(515)] = 48461, - [SMALL_STATE(516)] = 48574, - [SMALL_STATE(517)] = 48633, - [SMALL_STATE(518)] = 48692, - [SMALL_STATE(519)] = 48751, - [SMALL_STATE(520)] = 48810, - [SMALL_STATE(521)] = 48869, - [SMALL_STATE(522)] = 48928, - [SMALL_STATE(523)] = 48987, - [SMALL_STATE(524)] = 49045, - [SMALL_STATE(525)] = 49123, - [SMALL_STATE(526)] = 49201, - [SMALL_STATE(527)] = 49311, - [SMALL_STATE(528)] = 49369, - [SMALL_STATE(529)] = 49427, - [SMALL_STATE(530)] = 49485, - [SMALL_STATE(531)] = 49595, - [SMALL_STATE(532)] = 49705, - [SMALL_STATE(533)] = 49763, - [SMALL_STATE(534)] = 49821, - [SMALL_STATE(535)] = 49931, - [SMALL_STATE(536)] = 50009, - [SMALL_STATE(537)] = 50087, - [SMALL_STATE(538)] = 50197, - [SMALL_STATE(539)] = 50307, - [SMALL_STATE(540)] = 50417, - [SMALL_STATE(541)] = 50527, - [SMALL_STATE(542)] = 50589, - [SMALL_STATE(543)] = 50665, - [SMALL_STATE(544)] = 50775, - [SMALL_STATE(545)] = 50849, - [SMALL_STATE(546)] = 50921, - [SMALL_STATE(547)] = 50989, - [SMALL_STATE(548)] = 51099, - [SMALL_STATE(549)] = 51165, - [SMALL_STATE(550)] = 51275, - [SMALL_STATE(551)] = 51333, - [SMALL_STATE(552)] = 51391, - [SMALL_STATE(553)] = 51449, - [SMALL_STATE(554)] = 51559, - [SMALL_STATE(555)] = 51617, - [SMALL_STATE(556)] = 51675, - [SMALL_STATE(557)] = 51753, - [SMALL_STATE(558)] = 51811, - [SMALL_STATE(559)] = 51869, - [SMALL_STATE(560)] = 51927, - [SMALL_STATE(561)] = 51985, - [SMALL_STATE(562)] = 52043, - [SMALL_STATE(563)] = 52101, - [SMALL_STATE(564)] = 52211, - [SMALL_STATE(565)] = 52269, - [SMALL_STATE(566)] = 52379, - [SMALL_STATE(567)] = 52437, - [SMALL_STATE(568)] = 52547, - [SMALL_STATE(569)] = 52657, - [SMALL_STATE(570)] = 52715, - [SMALL_STATE(571)] = 52825, - [SMALL_STATE(572)] = 52883, - [SMALL_STATE(573)] = 52993, - [SMALL_STATE(574)] = 53060, - [SMALL_STATE(575)] = 53121, - [SMALL_STATE(576)] = 53178, - [SMALL_STATE(577)] = 53255, - [SMALL_STATE(578)] = 53330, - [SMALL_STATE(579)] = 53407, - [SMALL_STATE(580)] = 53484, - [SMALL_STATE(581)] = 53561, - [SMALL_STATE(582)] = 53634, - [SMALL_STATE(583)] = 53711, - [SMALL_STATE(584)] = 53782, - [SMALL_STATE(585)] = 53859, - [SMALL_STATE(586)] = 53936, - [SMALL_STATE(587)] = 54001, - [SMALL_STATE(588)] = 54078, - [SMALL_STATE(589)] = 54135, - [SMALL_STATE(590)] = 54212, - [SMALL_STATE(591)] = 54267, - [SMALL_STATE(592)] = 54322, - [SMALL_STATE(593)] = 54377, - [SMALL_STATE(594)] = 54432, - [SMALL_STATE(595)] = 54485, - [SMALL_STATE(596)] = 54538, - [SMALL_STATE(597)] = 54591, - [SMALL_STATE(598)] = 54646, - [SMALL_STATE(599)] = 54700, - [SMALL_STATE(600)] = 54750, - [SMALL_STATE(601)] = 54800, - [SMALL_STATE(602)] = 54850, - [SMALL_STATE(603)] = 54900, - [SMALL_STATE(604)] = 54950, - [SMALL_STATE(605)] = 55004, - [SMALL_STATE(606)] = 55054, - [SMALL_STATE(607)] = 55104, - [SMALL_STATE(608)] = 55154, - [SMALL_STATE(609)] = 55204, - [SMALL_STATE(610)] = 55254, - [SMALL_STATE(611)] = 55304, - [SMALL_STATE(612)] = 55354, - [SMALL_STATE(613)] = 55404, - [SMALL_STATE(614)] = 55454, - [SMALL_STATE(615)] = 55504, - [SMALL_STATE(616)] = 55558, - [SMALL_STATE(617)] = 55608, - [SMALL_STATE(618)] = 55662, - [SMALL_STATE(619)] = 55716, - [SMALL_STATE(620)] = 55765, - [SMALL_STATE(621)] = 55816, - [SMALL_STATE(622)] = 55865, - [SMALL_STATE(623)] = 55914, - [SMALL_STATE(624)] = 55963, - [SMALL_STATE(625)] = 56012, - [SMALL_STATE(626)] = 56061, - [SMALL_STATE(627)] = 56110, - [SMALL_STATE(628)] = 56159, - [SMALL_STATE(629)] = 56210, - [SMALL_STATE(630)] = 56261, - [SMALL_STATE(631)] = 56327, - [SMALL_STATE(632)] = 56389, - [SMALL_STATE(633)] = 56437, - [SMALL_STATE(634)] = 56485, - [SMALL_STATE(635)] = 56533, - [SMALL_STATE(636)] = 56581, - [SMALL_STATE(637)] = 56649, - [SMALL_STATE(638)] = 56697, - [SMALL_STATE(639)] = 56745, - [SMALL_STATE(640)] = 56793, - [SMALL_STATE(641)] = 56841, - [SMALL_STATE(642)] = 56889, - [SMALL_STATE(643)] = 56937, - [SMALL_STATE(644)] = 56985, - [SMALL_STATE(645)] = 57053, - [SMALL_STATE(646)] = 57101, - [SMALL_STATE(647)] = 57149, - [SMALL_STATE(648)] = 57197, - [SMALL_STATE(649)] = 57245, - [SMALL_STATE(650)] = 57293, - [SMALL_STATE(651)] = 57341, - [SMALL_STATE(652)] = 57389, - [SMALL_STATE(653)] = 57445, - [SMALL_STATE(654)] = 57503, - [SMALL_STATE(655)] = 57567, - [SMALL_STATE(656)] = 57619, - [SMALL_STATE(657)] = 57667, - [SMALL_STATE(658)] = 57715, - [SMALL_STATE(659)] = 57763, - [SMALL_STATE(660)] = 57811, - [SMALL_STATE(661)] = 57879, - [SMALL_STATE(662)] = 57947, - [SMALL_STATE(663)] = 58015, - [SMALL_STATE(664)] = 58083, - [SMALL_STATE(665)] = 58131, - [SMALL_STATE(666)] = 58179, - [SMALL_STATE(667)] = 58227, - [SMALL_STATE(668)] = 58275, - [SMALL_STATE(669)] = 58343, - [SMALL_STATE(670)] = 58391, - [SMALL_STATE(671)] = 58439, - [SMALL_STATE(672)] = 58487, - [SMALL_STATE(673)] = 58535, - [SMALL_STATE(674)] = 58583, - [SMALL_STATE(675)] = 58631, - [SMALL_STATE(676)] = 58679, - [SMALL_STATE(677)] = 58727, - [SMALL_STATE(678)] = 58775, - [SMALL_STATE(679)] = 58823, - [SMALL_STATE(680)] = 58871, - [SMALL_STATE(681)] = 58919, - [SMALL_STATE(682)] = 58967, - [SMALL_STATE(683)] = 59018, - [SMALL_STATE(684)] = 59069, - [SMALL_STATE(685)] = 59120, - [SMALL_STATE(686)] = 59166, - [SMALL_STATE(687)] = 59216, - [SMALL_STATE(688)] = 59266, - [SMALL_STATE(689)] = 59315, - [SMALL_STATE(690)] = 59360, - [SMALL_STATE(691)] = 59405, - [SMALL_STATE(692)] = 59450, - [SMALL_STATE(693)] = 59499, - [SMALL_STATE(694)] = 59544, - [SMALL_STATE(695)] = 59589, - [SMALL_STATE(696)] = 59634, - [SMALL_STATE(697)] = 59683, - [SMALL_STATE(698)] = 59732, - [SMALL_STATE(699)] = 59777, - [SMALL_STATE(700)] = 59822, - [SMALL_STATE(701)] = 59867, - [SMALL_STATE(702)] = 59912, - [SMALL_STATE(703)] = 59957, - [SMALL_STATE(704)] = 60002, - [SMALL_STATE(705)] = 60047, - [SMALL_STATE(706)] = 60096, - [SMALL_STATE(707)] = 60145, - [SMALL_STATE(708)] = 60189, - [SMALL_STATE(709)] = 60233, - [SMALL_STATE(710)] = 60279, - [SMALL_STATE(711)] = 60363, - [SMALL_STATE(712)] = 60447, - [SMALL_STATE(713)] = 60491, - [SMALL_STATE(714)] = 60537, - [SMALL_STATE(715)] = 60581, - [SMALL_STATE(716)] = 60625, - [SMALL_STATE(717)] = 60669, - [SMALL_STATE(718)] = 60713, - [SMALL_STATE(719)] = 60761, - [SMALL_STATE(720)] = 60845, - [SMALL_STATE(721)] = 60929, - [SMALL_STATE(722)] = 60973, - [SMALL_STATE(723)] = 61017, - [SMALL_STATE(724)] = 61061, - [SMALL_STATE(725)] = 61105, - [SMALL_STATE(726)] = 61151, - [SMALL_STATE(727)] = 61199, - [SMALL_STATE(728)] = 61247, - [SMALL_STATE(729)] = 61291, - [SMALL_STATE(730)] = 61375, - [SMALL_STATE(731)] = 61419, - [SMALL_STATE(732)] = 61463, - [SMALL_STATE(733)] = 61507, - [SMALL_STATE(734)] = 61591, - [SMALL_STATE(735)] = 61639, - [SMALL_STATE(736)] = 61683, - [SMALL_STATE(737)] = 61729, - [SMALL_STATE(738)] = 61773, - [SMALL_STATE(739)] = 61821, - [SMALL_STATE(740)] = 61865, - [SMALL_STATE(741)] = 61911, - [SMALL_STATE(742)] = 61995, - [SMALL_STATE(743)] = 62039, - [SMALL_STATE(744)] = 62085, - [SMALL_STATE(745)] = 62131, - [SMALL_STATE(746)] = 62179, - [SMALL_STATE(747)] = 62223, - [SMALL_STATE(748)] = 62267, - [SMALL_STATE(749)] = 62310, - [SMALL_STATE(750)] = 62353, - [SMALL_STATE(751)] = 62396, - [SMALL_STATE(752)] = 62439, - [SMALL_STATE(753)] = 62482, - [SMALL_STATE(754)] = 62525, - [SMALL_STATE(755)] = 62568, - [SMALL_STATE(756)] = 62611, - [SMALL_STATE(757)] = 62654, - [SMALL_STATE(758)] = 62697, - [SMALL_STATE(759)] = 62740, - [SMALL_STATE(760)] = 62783, - [SMALL_STATE(761)] = 62826, - [SMALL_STATE(762)] = 62869, - [SMALL_STATE(763)] = 62952, - [SMALL_STATE(764)] = 62995, - [SMALL_STATE(765)] = 63038, - [SMALL_STATE(766)] = 63081, - [SMALL_STATE(767)] = 63124, - [SMALL_STATE(768)] = 63167, - [SMALL_STATE(769)] = 63210, - [SMALL_STATE(770)] = 63291, - [SMALL_STATE(771)] = 63334, - [SMALL_STATE(772)] = 63377, - [SMALL_STATE(773)] = 63420, - [SMALL_STATE(774)] = 63463, - [SMALL_STATE(775)] = 63506, - [SMALL_STATE(776)] = 63549, - [SMALL_STATE(777)] = 63592, - [SMALL_STATE(778)] = 63635, - [SMALL_STATE(779)] = 63678, - [SMALL_STATE(780)] = 63721, - [SMALL_STATE(781)] = 63764, - [SMALL_STATE(782)] = 63809, - [SMALL_STATE(783)] = 63852, - [SMALL_STATE(784)] = 63895, - [SMALL_STATE(785)] = 63952, - [SMALL_STATE(786)] = 63995, - [SMALL_STATE(787)] = 64038, - [SMALL_STATE(788)] = 64081, - [SMALL_STATE(789)] = 64124, - [SMALL_STATE(790)] = 64167, - [SMALL_STATE(791)] = 64210, - [SMALL_STATE(792)] = 64253, - [SMALL_STATE(793)] = 64296, - [SMALL_STATE(794)] = 64379, - [SMALL_STATE(795)] = 64422, - [SMALL_STATE(796)] = 64465, - [SMALL_STATE(797)] = 64508, - [SMALL_STATE(798)] = 64551, - [SMALL_STATE(799)] = 64594, - [SMALL_STATE(800)] = 64651, - [SMALL_STATE(801)] = 64694, - [SMALL_STATE(802)] = 64737, - [SMALL_STATE(803)] = 64780, - [SMALL_STATE(804)] = 64823, - [SMALL_STATE(805)] = 64866, - [SMALL_STATE(806)] = 64909, - [SMALL_STATE(807)] = 64952, - [SMALL_STATE(808)] = 64995, - [SMALL_STATE(809)] = 65038, - [SMALL_STATE(810)] = 65081, - [SMALL_STATE(811)] = 65138, - [SMALL_STATE(812)] = 65181, - [SMALL_STATE(813)] = 65224, - [SMALL_STATE(814)] = 65281, - [SMALL_STATE(815)] = 65324, - [SMALL_STATE(816)] = 65367, - [SMALL_STATE(817)] = 65410, - [SMALL_STATE(818)] = 65493, - [SMALL_STATE(819)] = 65536, - [SMALL_STATE(820)] = 65579, - [SMALL_STATE(821)] = 65622, - [SMALL_STATE(822)] = 65665, - [SMALL_STATE(823)] = 65722, - [SMALL_STATE(824)] = 65803, - [SMALL_STATE(825)] = 65846, - [SMALL_STATE(826)] = 65889, - [SMALL_STATE(827)] = 65932, - [SMALL_STATE(828)] = 65975, - [SMALL_STATE(829)] = 66018, - [SMALL_STATE(830)] = 66061, - [SMALL_STATE(831)] = 66104, - [SMALL_STATE(832)] = 66147, - [SMALL_STATE(833)] = 66190, - [SMALL_STATE(834)] = 66233, - [SMALL_STATE(835)] = 66276, - [SMALL_STATE(836)] = 66319, - [SMALL_STATE(837)] = 66376, - [SMALL_STATE(838)] = 66419, - [SMALL_STATE(839)] = 66462, - [SMALL_STATE(840)] = 66505, - [SMALL_STATE(841)] = 66548, - [SMALL_STATE(842)] = 66591, - [SMALL_STATE(843)] = 66634, - [SMALL_STATE(844)] = 66679, - [SMALL_STATE(845)] = 66735, - [SMALL_STATE(846)] = 66807, - [SMALL_STATE(847)] = 66879, - [SMALL_STATE(848)] = 66951, - [SMALL_STATE(849)] = 67023, - [SMALL_STATE(850)] = 67083, - [SMALL_STATE(851)] = 67155, - [SMALL_STATE(852)] = 67227, - [SMALL_STATE(853)] = 67269, - [SMALL_STATE(854)] = 67329, - [SMALL_STATE(855)] = 67401, - [SMALL_STATE(856)] = 67473, - [SMALL_STATE(857)] = 67545, - [SMALL_STATE(858)] = 67617, - [SMALL_STATE(859)] = 67689, - [SMALL_STATE(860)] = 67761, - [SMALL_STATE(861)] = 67833, - [SMALL_STATE(862)] = 67893, - [SMALL_STATE(863)] = 67943, - [SMALL_STATE(864)] = 68003, - [SMALL_STATE(865)] = 68055, - [SMALL_STATE(866)] = 68127, - [SMALL_STATE(867)] = 68199, - [SMALL_STATE(868)] = 68255, - [SMALL_STATE(869)] = 68311, - [SMALL_STATE(870)] = 68371, - [SMALL_STATE(871)] = 68415, - [SMALL_STATE(872)] = 68461, - [SMALL_STATE(873)] = 68515, - [SMALL_STATE(874)] = 68571, - [SMALL_STATE(875)] = 68629, - [SMALL_STATE(876)] = 68682, - [SMALL_STATE(877)] = 68759, - [SMALL_STATE(878)] = 68812, - [SMALL_STATE(879)] = 68865, - [SMALL_STATE(880)] = 68942, - [SMALL_STATE(881)] = 69017, - [SMALL_STATE(882)] = 69094, - [SMALL_STATE(883)] = 69169, - [SMALL_STATE(884)] = 69242, - [SMALL_STATE(885)] = 69319, - [SMALL_STATE(886)] = 69396, - [SMALL_STATE(887)] = 69473, - [SMALL_STATE(888)] = 69550, - [SMALL_STATE(889)] = 69624, - [SMALL_STATE(890)] = 69698, - [SMALL_STATE(891)] = 69772, - [SMALL_STATE(892)] = 69846, - [SMALL_STATE(893)] = 69920, - [SMALL_STATE(894)] = 69994, - [SMALL_STATE(895)] = 70068, - [SMALL_STATE(896)] = 70142, - [SMALL_STATE(897)] = 70213, - [SMALL_STATE(898)] = 70284, - [SMALL_STATE(899)] = 70347, - [SMALL_STATE(900)] = 70410, - [SMALL_STATE(901)] = 70481, - [SMALL_STATE(902)] = 70552, - [SMALL_STATE(903)] = 70623, - [SMALL_STATE(904)] = 70694, - [SMALL_STATE(905)] = 70765, - [SMALL_STATE(906)] = 70836, - [SMALL_STATE(907)] = 70899, - [SMALL_STATE(908)] = 70970, - [SMALL_STATE(909)] = 71041, - [SMALL_STATE(910)] = 71084, - [SMALL_STATE(911)] = 71147, - [SMALL_STATE(912)] = 71210, - [SMALL_STATE(913)] = 71281, - [SMALL_STATE(914)] = 71352, - [SMALL_STATE(915)] = 71423, - [SMALL_STATE(916)] = 71486, - [SMALL_STATE(917)] = 71557, - [SMALL_STATE(918)] = 71628, - [SMALL_STATE(919)] = 71685, - [SMALL_STATE(920)] = 71728, - [SMALL_STATE(921)] = 71771, - [SMALL_STATE(922)] = 71842, - [SMALL_STATE(923)] = 71913, - [SMALL_STATE(924)] = 71976, - [SMALL_STATE(925)] = 72042, - [SMALL_STATE(926)] = 72108, - [SMALL_STATE(927)] = 72174, - [SMALL_STATE(928)] = 72212, - [SMALL_STATE(929)] = 72250, - [SMALL_STATE(930)] = 72310, - [SMALL_STATE(931)] = 72348, - [SMALL_STATE(932)] = 72408, - [SMALL_STATE(933)] = 72446, - [SMALL_STATE(934)] = 72506, - [SMALL_STATE(935)] = 72548, - [SMALL_STATE(936)] = 72614, - [SMALL_STATE(937)] = 72656, - [SMALL_STATE(938)] = 72698, - [SMALL_STATE(939)] = 72740, - [SMALL_STATE(940)] = 72800, - [SMALL_STATE(941)] = 72866, - [SMALL_STATE(942)] = 72904, - [SMALL_STATE(943)] = 72964, - [SMALL_STATE(944)] = 73024, - [SMALL_STATE(945)] = 73062, - [SMALL_STATE(946)] = 73128, - [SMALL_STATE(947)] = 73166, - [SMALL_STATE(948)] = 73204, - [SMALL_STATE(949)] = 73242, - [SMALL_STATE(950)] = 73280, - [SMALL_STATE(951)] = 73348, - [SMALL_STATE(952)] = 73414, - [SMALL_STATE(953)] = 73452, - [SMALL_STATE(954)] = 73490, - [SMALL_STATE(955)] = 73550, - [SMALL_STATE(956)] = 73616, - [SMALL_STATE(957)] = 73654, - [SMALL_STATE(958)] = 73692, - [SMALL_STATE(959)] = 73758, - [SMALL_STATE(960)] = 73796, - [SMALL_STATE(961)] = 73862, - [SMALL_STATE(962)] = 73930, - [SMALL_STATE(963)] = 73996, - [SMALL_STATE(964)] = 74056, - [SMALL_STATE(965)] = 74122, - [SMALL_STATE(966)] = 74188, - [SMALL_STATE(967)] = 74251, - [SMALL_STATE(968)] = 74290, - [SMALL_STATE(969)] = 74353, - [SMALL_STATE(970)] = 74418, - [SMALL_STATE(971)] = 74455, - [SMALL_STATE(972)] = 74518, - [SMALL_STATE(973)] = 74555, - [SMALL_STATE(974)] = 74618, - [SMALL_STATE(975)] = 74655, - [SMALL_STATE(976)] = 74710, - [SMALL_STATE(977)] = 74765, - [SMALL_STATE(978)] = 74802, - [SMALL_STATE(979)] = 74863, - [SMALL_STATE(980)] = 74916, - [SMALL_STATE(981)] = 74967, - [SMALL_STATE(982)] = 75016, - [SMALL_STATE(983)] = 75063, - [SMALL_STATE(984)] = 75118, - [SMALL_STATE(985)] = 75173, - [SMALL_STATE(986)] = 75210, - [SMALL_STATE(987)] = 75275, - [SMALL_STATE(988)] = 75338, - [SMALL_STATE(989)] = 75401, - [SMALL_STATE(990)] = 75464, - [SMALL_STATE(991)] = 75501, - [SMALL_STATE(992)] = 75538, - [SMALL_STATE(993)] = 75601, - [SMALL_STATE(994)] = 75664, - [SMALL_STATE(995)] = 75701, - [SMALL_STATE(996)] = 75756, - [SMALL_STATE(997)] = 75819, - [SMALL_STATE(998)] = 75884, - [SMALL_STATE(999)] = 75923, - [SMALL_STATE(1000)] = 75986, - [SMALL_STATE(1001)] = 76041, - [SMALL_STATE(1002)] = 76104, - [SMALL_STATE(1003)] = 76167, - [SMALL_STATE(1004)] = 76222, - [SMALL_STATE(1005)] = 76277, - [SMALL_STATE(1006)] = 76332, - [SMALL_STATE(1007)] = 76371, - [SMALL_STATE(1008)] = 76412, - [SMALL_STATE(1009)] = 76457, - [SMALL_STATE(1010)] = 76493, - [SMALL_STATE(1011)] = 76529, - [SMALL_STATE(1012)] = 76565, - [SMALL_STATE(1013)] = 76619, - [SMALL_STATE(1014)] = 76673, - [SMALL_STATE(1015)] = 76727, - [SMALL_STATE(1016)] = 76781, - [SMALL_STATE(1017)] = 76841, - [SMALL_STATE(1018)] = 76895, - [SMALL_STATE(1019)] = 76949, - [SMALL_STATE(1020)] = 77003, - [SMALL_STATE(1021)] = 77057, - [SMALL_STATE(1022)] = 77111, - [SMALL_STATE(1023)] = 77147, - [SMALL_STATE(1024)] = 77207, - [SMALL_STATE(1025)] = 77267, - [SMALL_STATE(1026)] = 77321, - [SMALL_STATE(1027)] = 77375, - [SMALL_STATE(1028)] = 77429, - [SMALL_STATE(1029)] = 77483, - [SMALL_STATE(1030)] = 77537, - [SMALL_STATE(1031)] = 77591, - [SMALL_STATE(1032)] = 77651, - [SMALL_STATE(1033)] = 77705, - [SMALL_STATE(1034)] = 77765, - [SMALL_STATE(1035)] = 77819, - [SMALL_STATE(1036)] = 77873, - [SMALL_STATE(1037)] = 77927, - [SMALL_STATE(1038)] = 77981, - [SMALL_STATE(1039)] = 78041, - [SMALL_STATE(1040)] = 78101, - [SMALL_STATE(1041)] = 78161, - [SMALL_STATE(1042)] = 78221, - [SMALL_STATE(1043)] = 78257, - [SMALL_STATE(1044)] = 78317, - [SMALL_STATE(1045)] = 78377, - [SMALL_STATE(1046)] = 78413, - [SMALL_STATE(1047)] = 78453, - [SMALL_STATE(1048)] = 78489, - [SMALL_STATE(1049)] = 78525, - [SMALL_STATE(1050)] = 78561, - [SMALL_STATE(1051)] = 78597, - [SMALL_STATE(1052)] = 78657, - [SMALL_STATE(1053)] = 78711, - [SMALL_STATE(1054)] = 78747, - [SMALL_STATE(1055)] = 78807, - [SMALL_STATE(1056)] = 78861, - [SMALL_STATE(1057)] = 78921, - [SMALL_STATE(1058)] = 78957, - [SMALL_STATE(1059)] = 79011, - [SMALL_STATE(1060)] = 79065, - [SMALL_STATE(1061)] = 79119, - [SMALL_STATE(1062)] = 79173, - [SMALL_STATE(1063)] = 79233, - [SMALL_STATE(1064)] = 79287, - [SMALL_STATE(1065)] = 79323, - [SMALL_STATE(1066)] = 79377, - [SMALL_STATE(1067)] = 79437, - [SMALL_STATE(1068)] = 79491, - [SMALL_STATE(1069)] = 79527, - [SMALL_STATE(1070)] = 79563, - [SMALL_STATE(1071)] = 79603, - [SMALL_STATE(1072)] = 79655, - [SMALL_STATE(1073)] = 79709, - [SMALL_STATE(1074)] = 79763, - [SMALL_STATE(1075)] = 79813, - [SMALL_STATE(1076)] = 79861, - [SMALL_STATE(1077)] = 79907, - [SMALL_STATE(1078)] = 79951, - [SMALL_STATE(1079)] = 79987, - [SMALL_STATE(1080)] = 80047, - [SMALL_STATE(1081)] = 80101, - [SMALL_STATE(1082)] = 80155, - [SMALL_STATE(1083)] = 80191, - [SMALL_STATE(1084)] = 80227, - [SMALL_STATE(1085)] = 80263, - [SMALL_STATE(1086)] = 80299, - [SMALL_STATE(1087)] = 80359, - [SMALL_STATE(1088)] = 80413, - [SMALL_STATE(1089)] = 80451, - [SMALL_STATE(1090)] = 80487, - [SMALL_STATE(1091)] = 80547, - [SMALL_STATE(1092)] = 80582, - [SMALL_STATE(1093)] = 80639, - [SMALL_STATE(1094)] = 80696, - [SMALL_STATE(1095)] = 80753, - [SMALL_STATE(1096)] = 80810, - [SMALL_STATE(1097)] = 80867, - [SMALL_STATE(1098)] = 80924, - [SMALL_STATE(1099)] = 80961, - [SMALL_STATE(1100)] = 81018, - [SMALL_STATE(1101)] = 81075, - [SMALL_STATE(1102)] = 81132, - [SMALL_STATE(1103)] = 81169, - [SMALL_STATE(1104)] = 81204, - [SMALL_STATE(1105)] = 81261, - [SMALL_STATE(1106)] = 81311, - [SMALL_STATE(1107)] = 81345, - [SMALL_STATE(1108)] = 81379, - [SMALL_STATE(1109)] = 81413, - [SMALL_STATE(1110)] = 81451, - [SMALL_STATE(1111)] = 81499, - [SMALL_STATE(1112)] = 81533, - [SMALL_STATE(1113)] = 81565, - [SMALL_STATE(1114)] = 81611, - [SMALL_STATE(1115)] = 81655, - [SMALL_STATE(1116)] = 81697, - [SMALL_STATE(1117)] = 81731, - [SMALL_STATE(1118)] = 81765, - [SMALL_STATE(1119)] = 81799, - [SMALL_STATE(1120)] = 81841, - [SMALL_STATE(1121)] = 81875, - [SMALL_STATE(1122)] = 81909, - [SMALL_STATE(1123)] = 81943, - [SMALL_STATE(1124)] = 81977, - [SMALL_STATE(1125)] = 82021, - [SMALL_STATE(1126)] = 82067, - [SMALL_STATE(1127)] = 82117, - [SMALL_STATE(1128)] = 82165, - [SMALL_STATE(1129)] = 82203, - [SMALL_STATE(1130)] = 82237, - [SMALL_STATE(1131)] = 82271, - [SMALL_STATE(1132)] = 82321, - [SMALL_STATE(1133)] = 82355, - [SMALL_STATE(1134)] = 82389, - [SMALL_STATE(1135)] = 82423, - [SMALL_STATE(1136)] = 82457, - [SMALL_STATE(1137)] = 82491, - [SMALL_STATE(1138)] = 82525, - [SMALL_STATE(1139)] = 82559, - [SMALL_STATE(1140)] = 82593, - [SMALL_STATE(1141)] = 82627, - [SMALL_STATE(1142)] = 82661, - [SMALL_STATE(1143)] = 82695, - [SMALL_STATE(1144)] = 82729, - [SMALL_STATE(1145)] = 82763, - [SMALL_STATE(1146)] = 82797, - [SMALL_STATE(1147)] = 82831, - [SMALL_STATE(1148)] = 82865, - [SMALL_STATE(1149)] = 82912, - [SMALL_STATE(1150)] = 82959, - [SMALL_STATE(1151)] = 83006, - [SMALL_STATE(1152)] = 83053, - [SMALL_STATE(1153)] = 83100, - [SMALL_STATE(1154)] = 83147, - [SMALL_STATE(1155)] = 83191, - [SMALL_STATE(1156)] = 83235, - [SMALL_STATE(1157)] = 83279, - [SMALL_STATE(1158)] = 83323, - [SMALL_STATE(1159)] = 83367, - [SMALL_STATE(1160)] = 83411, - [SMALL_STATE(1161)] = 83455, - [SMALL_STATE(1162)] = 83485, - [SMALL_STATE(1163)] = 83513, - [SMALL_STATE(1164)] = 83539, - [SMALL_STATE(1165)] = 83583, - [SMALL_STATE(1166)] = 83627, - [SMALL_STATE(1167)] = 83671, - [SMALL_STATE(1168)] = 83696, - [SMALL_STATE(1169)] = 83737, - [SMALL_STATE(1170)] = 83778, - [SMALL_STATE(1171)] = 83821, - [SMALL_STATE(1172)] = 83862, - [SMALL_STATE(1173)] = 83903, - [SMALL_STATE(1174)] = 83946, - [SMALL_STATE(1175)] = 83987, - [SMALL_STATE(1176)] = 84028, - [SMALL_STATE(1177)] = 84071, - [SMALL_STATE(1178)] = 84112, - [SMALL_STATE(1179)] = 84153, - [SMALL_STATE(1180)] = 84194, - [SMALL_STATE(1181)] = 84223, - [SMALL_STATE(1182)] = 84264, - [SMALL_STATE(1183)] = 84305, - [SMALL_STATE(1184)] = 84343, - [SMALL_STATE(1185)] = 84383, - [SMALL_STATE(1186)] = 84407, - [SMALL_STATE(1187)] = 84445, - [SMALL_STATE(1188)] = 84483, - [SMALL_STATE(1189)] = 84521, - [SMALL_STATE(1190)] = 84545, - [SMALL_STATE(1191)] = 84583, - [SMALL_STATE(1192)] = 84623, - [SMALL_STATE(1193)] = 84663, - [SMALL_STATE(1194)] = 84701, - [SMALL_STATE(1195)] = 84741, - [SMALL_STATE(1196)] = 84779, - [SMALL_STATE(1197)] = 84803, - [SMALL_STATE(1198)] = 84841, - [SMALL_STATE(1199)] = 84865, - [SMALL_STATE(1200)] = 84889, - [SMALL_STATE(1201)] = 84927, - [SMALL_STATE(1202)] = 84967, - [SMALL_STATE(1203)] = 85005, - [SMALL_STATE(1204)] = 85043, - [SMALL_STATE(1205)] = 85083, - [SMALL_STATE(1206)] = 85107, - [SMALL_STATE(1207)] = 85145, - [SMALL_STATE(1208)] = 85183, - [SMALL_STATE(1209)] = 85221, - [SMALL_STATE(1210)] = 85259, - [SMALL_STATE(1211)] = 85297, - [SMALL_STATE(1212)] = 85335, - [SMALL_STATE(1213)] = 85373, - [SMALL_STATE(1214)] = 85411, - [SMALL_STATE(1215)] = 85451, - [SMALL_STATE(1216)] = 85475, - [SMALL_STATE(1217)] = 85513, - [SMALL_STATE(1218)] = 85551, - [SMALL_STATE(1219)] = 85575, - [SMALL_STATE(1220)] = 85613, - [SMALL_STATE(1221)] = 85651, - [SMALL_STATE(1222)] = 85675, - [SMALL_STATE(1223)] = 85713, - [SMALL_STATE(1224)] = 85751, - [SMALL_STATE(1225)] = 85789, - [SMALL_STATE(1226)] = 85813, - [SMALL_STATE(1227)] = 85837, - [SMALL_STATE(1228)] = 85875, - [SMALL_STATE(1229)] = 85913, - [SMALL_STATE(1230)] = 85951, - [SMALL_STATE(1231)] = 85975, - [SMALL_STATE(1232)] = 86012, - [SMALL_STATE(1233)] = 86035, - [SMALL_STATE(1234)] = 86058, - [SMALL_STATE(1235)] = 86081, - [SMALL_STATE(1236)] = 86104, - [SMALL_STATE(1237)] = 86127, - [SMALL_STATE(1238)] = 86150, - [SMALL_STATE(1239)] = 86173, - [SMALL_STATE(1240)] = 86196, - [SMALL_STATE(1241)] = 86219, - [SMALL_STATE(1242)] = 86242, - [SMALL_STATE(1243)] = 86265, - [SMALL_STATE(1244)] = 86288, - [SMALL_STATE(1245)] = 86311, - [SMALL_STATE(1246)] = 86348, - [SMALL_STATE(1247)] = 86371, - [SMALL_STATE(1248)] = 86398, - [SMALL_STATE(1249)] = 86421, - [SMALL_STATE(1250)] = 86444, - [SMALL_STATE(1251)] = 86471, - [SMALL_STATE(1252)] = 86494, - [SMALL_STATE(1253)] = 86531, - [SMALL_STATE(1254)] = 86554, - [SMALL_STATE(1255)] = 86577, - [SMALL_STATE(1256)] = 86600, - [SMALL_STATE(1257)] = 86623, - [SMALL_STATE(1258)] = 86646, - [SMALL_STATE(1259)] = 86673, - [SMALL_STATE(1260)] = 86696, - [SMALL_STATE(1261)] = 86719, - [SMALL_STATE(1262)] = 86746, - [SMALL_STATE(1263)] = 86769, - [SMALL_STATE(1264)] = 86806, - [SMALL_STATE(1265)] = 86829, - [SMALL_STATE(1266)] = 86852, - [SMALL_STATE(1267)] = 86875, - [SMALL_STATE(1268)] = 86899, - [SMALL_STATE(1269)] = 86920, - [SMALL_STATE(1270)] = 86945, - [SMALL_STATE(1271)] = 86966, - [SMALL_STATE(1272)] = 86987, - [SMALL_STATE(1273)] = 87028, - [SMALL_STATE(1274)] = 87049, - [SMALL_STATE(1275)] = 87070, - [SMALL_STATE(1276)] = 87111, - [SMALL_STATE(1277)] = 87136, - [SMALL_STATE(1278)] = 87157, - [SMALL_STATE(1279)] = 87198, - [SMALL_STATE(1280)] = 87239, - [SMALL_STATE(1281)] = 87260, - [SMALL_STATE(1282)] = 87285, - [SMALL_STATE(1283)] = 87310, - [SMALL_STATE(1284)] = 87331, - [SMALL_STATE(1285)] = 87356, - [SMALL_STATE(1286)] = 87381, - [SMALL_STATE(1287)] = 87402, - [SMALL_STATE(1288)] = 87443, - [SMALL_STATE(1289)] = 87464, - [SMALL_STATE(1290)] = 87505, - [SMALL_STATE(1291)] = 87527, - [SMALL_STATE(1292)] = 87547, - [SMALL_STATE(1293)] = 87569, - [SMALL_STATE(1294)] = 87591, - [SMALL_STATE(1295)] = 87611, - [SMALL_STATE(1296)] = 87633, - [SMALL_STATE(1297)] = 87667, - [SMALL_STATE(1298)] = 87687, - [SMALL_STATE(1299)] = 87725, - [SMALL_STATE(1300)] = 87747, - [SMALL_STATE(1301)] = 87781, - [SMALL_STATE(1302)] = 87801, - [SMALL_STATE(1303)] = 87820, - [SMALL_STATE(1304)] = 87839, - [SMALL_STATE(1305)] = 87860, - [SMALL_STATE(1306)] = 87879, - [SMALL_STATE(1307)] = 87898, - [SMALL_STATE(1308)] = 87917, - [SMALL_STATE(1309)] = 87936, - [SMALL_STATE(1310)] = 87959, - [SMALL_STATE(1311)] = 87978, - [SMALL_STATE(1312)] = 87997, - [SMALL_STATE(1313)] = 88016, - [SMALL_STATE(1314)] = 88035, - [SMALL_STATE(1315)] = 88054, - [SMALL_STATE(1316)] = 88073, - [SMALL_STATE(1317)] = 88094, - [SMALL_STATE(1318)] = 88113, - [SMALL_STATE(1319)] = 88132, - [SMALL_STATE(1320)] = 88151, - [SMALL_STATE(1321)] = 88170, - [SMALL_STATE(1322)] = 88189, - [SMALL_STATE(1323)] = 88208, - [SMALL_STATE(1324)] = 88227, - [SMALL_STATE(1325)] = 88246, - [SMALL_STATE(1326)] = 88265, - [SMALL_STATE(1327)] = 88284, - [SMALL_STATE(1328)] = 88303, - [SMALL_STATE(1329)] = 88322, - [SMALL_STATE(1330)] = 88349, - [SMALL_STATE(1331)] = 88368, - [SMALL_STATE(1332)] = 88387, - [SMALL_STATE(1333)] = 88406, - [SMALL_STATE(1334)] = 88425, - [SMALL_STATE(1335)] = 88444, - [SMALL_STATE(1336)] = 88463, - [SMALL_STATE(1337)] = 88482, - [SMALL_STATE(1338)] = 88501, - [SMALL_STATE(1339)] = 88533, - [SMALL_STATE(1340)] = 88565, - [SMALL_STATE(1341)] = 88583, - [SMALL_STATE(1342)] = 88615, - [SMALL_STATE(1343)] = 88635, - [SMALL_STATE(1344)] = 88653, - [SMALL_STATE(1345)] = 88671, - [SMALL_STATE(1346)] = 88700, - [SMALL_STATE(1347)] = 88729, - [SMALL_STATE(1348)] = 88758, - [SMALL_STATE(1349)] = 88787, - [SMALL_STATE(1350)] = 88816, - [SMALL_STATE(1351)] = 88845, - [SMALL_STATE(1352)] = 88862, - [SMALL_STATE(1353)] = 88891, - [SMALL_STATE(1354)] = 88913, - [SMALL_STATE(1355)] = 88935, - [SMALL_STATE(1356)] = 88959, - [SMALL_STATE(1357)] = 88981, - [SMALL_STATE(1358)] = 89003, - [SMALL_STATE(1359)] = 89025, - [SMALL_STATE(1360)] = 89049, - [SMALL_STATE(1361)] = 89071, - [SMALL_STATE(1362)] = 89093, - [SMALL_STATE(1363)] = 89115, - [SMALL_STATE(1364)] = 89137, - [SMALL_STATE(1365)] = 89161, - [SMALL_STATE(1366)] = 89183, - [SMALL_STATE(1367)] = 89205, - [SMALL_STATE(1368)] = 89227, - [SMALL_STATE(1369)] = 89251, - [SMALL_STATE(1370)] = 89273, - [SMALL_STATE(1371)] = 89297, - [SMALL_STATE(1372)] = 89321, - [SMALL_STATE(1373)] = 89345, - [SMALL_STATE(1374)] = 89367, - [SMALL_STATE(1375)] = 89389, - [SMALL_STATE(1376)] = 89411, - [SMALL_STATE(1377)] = 89435, - [SMALL_STATE(1378)] = 89457, - [SMALL_STATE(1379)] = 89479, - [SMALL_STATE(1380)] = 89501, - [SMALL_STATE(1381)] = 89519, - [SMALL_STATE(1382)] = 89541, - [SMALL_STATE(1383)] = 89563, - [SMALL_STATE(1384)] = 89587, - [SMALL_STATE(1385)] = 89611, - [SMALL_STATE(1386)] = 89633, - [SMALL_STATE(1387)] = 89653, - [SMALL_STATE(1388)] = 89675, - [SMALL_STATE(1389)] = 89697, - [SMALL_STATE(1390)] = 89719, - [SMALL_STATE(1391)] = 89743, - [SMALL_STATE(1392)] = 89765, - [SMALL_STATE(1393)] = 89787, - [SMALL_STATE(1394)] = 89811, - [SMALL_STATE(1395)] = 89837, - [SMALL_STATE(1396)] = 89856, - [SMALL_STATE(1397)] = 89879, - [SMALL_STATE(1398)] = 89898, - [SMALL_STATE(1399)] = 89917, - [SMALL_STATE(1400)] = 89938, - [SMALL_STATE(1401)] = 89961, - [SMALL_STATE(1402)] = 89980, - [SMALL_STATE(1403)] = 90001, - [SMALL_STATE(1404)] = 90022, - [SMALL_STATE(1405)] = 90045, - [SMALL_STATE(1406)] = 90066, - [SMALL_STATE(1407)] = 90085, - [SMALL_STATE(1408)] = 90106, - [SMALL_STATE(1409)] = 90125, - [SMALL_STATE(1410)] = 90146, - [SMALL_STATE(1411)] = 90165, - [SMALL_STATE(1412)] = 90184, - [SMALL_STATE(1413)] = 90207, - [SMALL_STATE(1414)] = 90228, - [SMALL_STATE(1415)] = 90249, - [SMALL_STATE(1416)] = 90268, - [SMALL_STATE(1417)] = 90291, - [SMALL_STATE(1418)] = 90314, - [SMALL_STATE(1419)] = 90335, - [SMALL_STATE(1420)] = 90354, - [SMALL_STATE(1421)] = 90374, - [SMALL_STATE(1422)] = 90392, - [SMALL_STATE(1423)] = 90412, - [SMALL_STATE(1424)] = 90428, - [SMALL_STATE(1425)] = 90446, - [SMALL_STATE(1426)] = 90462, - [SMALL_STATE(1427)] = 90478, - [SMALL_STATE(1428)] = 90498, - [SMALL_STATE(1429)] = 90518, - [SMALL_STATE(1430)] = 90536, - [SMALL_STATE(1431)] = 90556, - [SMALL_STATE(1432)] = 90576, - [SMALL_STATE(1433)] = 90592, - [SMALL_STATE(1434)] = 90610, - [SMALL_STATE(1435)] = 90626, - [SMALL_STATE(1436)] = 90646, - [SMALL_STATE(1437)] = 90664, - [SMALL_STATE(1438)] = 90682, - [SMALL_STATE(1439)] = 90700, - [SMALL_STATE(1440)] = 90720, - [SMALL_STATE(1441)] = 90740, - [SMALL_STATE(1442)] = 90760, - [SMALL_STATE(1443)] = 90778, - [SMALL_STATE(1444)] = 90796, - [SMALL_STATE(1445)] = 90814, - [SMALL_STATE(1446)] = 90834, - [SMALL_STATE(1447)] = 90852, - [SMALL_STATE(1448)] = 90870, - [SMALL_STATE(1449)] = 90890, - [SMALL_STATE(1450)] = 90908, - [SMALL_STATE(1451)] = 90928, - [SMALL_STATE(1452)] = 90946, - [SMALL_STATE(1453)] = 90966, - [SMALL_STATE(1454)] = 90984, - [SMALL_STATE(1455)] = 91002, - [SMALL_STATE(1456)] = 91020, - [SMALL_STATE(1457)] = 91038, - [SMALL_STATE(1458)] = 91058, - [SMALL_STATE(1459)] = 91078, - [SMALL_STATE(1460)] = 91098, - [SMALL_STATE(1461)] = 91116, - [SMALL_STATE(1462)] = 91132, - [SMALL_STATE(1463)] = 91148, - [SMALL_STATE(1464)] = 91162, - [SMALL_STATE(1465)] = 91180, - [SMALL_STATE(1466)] = 91198, - [SMALL_STATE(1467)] = 91218, - [SMALL_STATE(1468)] = 91236, - [SMALL_STATE(1469)] = 91256, - [SMALL_STATE(1470)] = 91272, - [SMALL_STATE(1471)] = 91290, - [SMALL_STATE(1472)] = 91310, - [SMALL_STATE(1473)] = 91328, - [SMALL_STATE(1474)] = 91348, - [SMALL_STATE(1475)] = 91366, - [SMALL_STATE(1476)] = 91384, - [SMALL_STATE(1477)] = 91402, - [SMALL_STATE(1478)] = 91416, - [SMALL_STATE(1479)] = 91433, - [SMALL_STATE(1480)] = 91450, - [SMALL_STATE(1481)] = 91463, - [SMALL_STATE(1482)] = 91480, - [SMALL_STATE(1483)] = 91497, - [SMALL_STATE(1484)] = 91514, - [SMALL_STATE(1485)] = 91531, - [SMALL_STATE(1486)] = 91548, - [SMALL_STATE(1487)] = 91565, - [SMALL_STATE(1488)] = 91582, - [SMALL_STATE(1489)] = 91599, - [SMALL_STATE(1490)] = 91616, - [SMALL_STATE(1491)] = 91633, - [SMALL_STATE(1492)] = 91650, - [SMALL_STATE(1493)] = 91667, - [SMALL_STATE(1494)] = 91680, - [SMALL_STATE(1495)] = 91693, - [SMALL_STATE(1496)] = 91710, - [SMALL_STATE(1497)] = 91727, - [SMALL_STATE(1498)] = 91744, - [SMALL_STATE(1499)] = 91761, - [SMALL_STATE(1500)] = 91774, - [SMALL_STATE(1501)] = 91791, - [SMALL_STATE(1502)] = 91808, - [SMALL_STATE(1503)] = 91821, - [SMALL_STATE(1504)] = 91838, - [SMALL_STATE(1505)] = 91855, - [SMALL_STATE(1506)] = 91872, - [SMALL_STATE(1507)] = 91889, - [SMALL_STATE(1508)] = 91902, - [SMALL_STATE(1509)] = 91919, - [SMALL_STATE(1510)] = 91936, - [SMALL_STATE(1511)] = 91949, - [SMALL_STATE(1512)] = 91966, - [SMALL_STATE(1513)] = 91983, - [SMALL_STATE(1514)] = 92000, - [SMALL_STATE(1515)] = 92017, - [SMALL_STATE(1516)] = 92034, - [SMALL_STATE(1517)] = 92051, - [SMALL_STATE(1518)] = 92068, - [SMALL_STATE(1519)] = 92085, - [SMALL_STATE(1520)] = 92102, - [SMALL_STATE(1521)] = 92119, - [SMALL_STATE(1522)] = 92136, - [SMALL_STATE(1523)] = 92153, - [SMALL_STATE(1524)] = 92170, - [SMALL_STATE(1525)] = 92187, - [SMALL_STATE(1526)] = 92204, - [SMALL_STATE(1527)] = 92221, - [SMALL_STATE(1528)] = 92238, - [SMALL_STATE(1529)] = 92253, - [SMALL_STATE(1530)] = 92270, - [SMALL_STATE(1531)] = 92287, - [SMALL_STATE(1532)] = 92300, - [SMALL_STATE(1533)] = 92317, - [SMALL_STATE(1534)] = 92334, - [SMALL_STATE(1535)] = 92351, - [SMALL_STATE(1536)] = 92364, - [SMALL_STATE(1537)] = 92381, - [SMALL_STATE(1538)] = 92398, - [SMALL_STATE(1539)] = 92411, - [SMALL_STATE(1540)] = 92428, - [SMALL_STATE(1541)] = 92445, - [SMALL_STATE(1542)] = 92462, - [SMALL_STATE(1543)] = 92475, - [SMALL_STATE(1544)] = 92492, - [SMALL_STATE(1545)] = 92505, - [SMALL_STATE(1546)] = 92522, - [SMALL_STATE(1547)] = 92539, - [SMALL_STATE(1548)] = 92552, - [SMALL_STATE(1549)] = 92569, - [SMALL_STATE(1550)] = 92586, - [SMALL_STATE(1551)] = 92603, - [SMALL_STATE(1552)] = 92618, - [SMALL_STATE(1553)] = 92635, - [SMALL_STATE(1554)] = 92652, - [SMALL_STATE(1555)] = 92665, - [SMALL_STATE(1556)] = 92682, - [SMALL_STATE(1557)] = 92699, - [SMALL_STATE(1558)] = 92716, - [SMALL_STATE(1559)] = 92733, - [SMALL_STATE(1560)] = 92750, - [SMALL_STATE(1561)] = 92767, - [SMALL_STATE(1562)] = 92784, - [SMALL_STATE(1563)] = 92797, - [SMALL_STATE(1564)] = 92814, - [SMALL_STATE(1565)] = 92827, - [SMALL_STATE(1566)] = 92840, - [SMALL_STATE(1567)] = 92857, - [SMALL_STATE(1568)] = 92870, - [SMALL_STATE(1569)] = 92887, - [SMALL_STATE(1570)] = 92904, - [SMALL_STATE(1571)] = 92921, - [SMALL_STATE(1572)] = 92938, - [SMALL_STATE(1573)] = 92955, - [SMALL_STATE(1574)] = 92972, - [SMALL_STATE(1575)] = 92989, - [SMALL_STATE(1576)] = 93006, - [SMALL_STATE(1577)] = 93019, - [SMALL_STATE(1578)] = 93036, - [SMALL_STATE(1579)] = 93053, - [SMALL_STATE(1580)] = 93070, - [SMALL_STATE(1581)] = 93087, - [SMALL_STATE(1582)] = 93104, - [SMALL_STATE(1583)] = 93119, - [SMALL_STATE(1584)] = 93136, - [SMALL_STATE(1585)] = 93153, - [SMALL_STATE(1586)] = 93170, - [SMALL_STATE(1587)] = 93187, - [SMALL_STATE(1588)] = 93204, - [SMALL_STATE(1589)] = 93217, - [SMALL_STATE(1590)] = 93234, - [SMALL_STATE(1591)] = 93251, - [SMALL_STATE(1592)] = 93266, - [SMALL_STATE(1593)] = 93283, - [SMALL_STATE(1594)] = 93300, - [SMALL_STATE(1595)] = 93317, - [SMALL_STATE(1596)] = 93334, - [SMALL_STATE(1597)] = 93351, - [SMALL_STATE(1598)] = 93368, - [SMALL_STATE(1599)] = 93385, - [SMALL_STATE(1600)] = 93402, - [SMALL_STATE(1601)] = 93419, - [SMALL_STATE(1602)] = 93436, - [SMALL_STATE(1603)] = 93453, - [SMALL_STATE(1604)] = 93470, - [SMALL_STATE(1605)] = 93487, - [SMALL_STATE(1606)] = 93504, - [SMALL_STATE(1607)] = 93521, - [SMALL_STATE(1608)] = 93538, - [SMALL_STATE(1609)] = 93555, - [SMALL_STATE(1610)] = 93572, - [SMALL_STATE(1611)] = 93589, - [SMALL_STATE(1612)] = 93606, - [SMALL_STATE(1613)] = 93623, - [SMALL_STATE(1614)] = 93636, - [SMALL_STATE(1615)] = 93653, - [SMALL_STATE(1616)] = 93666, - [SMALL_STATE(1617)] = 93683, - [SMALL_STATE(1618)] = 93700, - [SMALL_STATE(1619)] = 93717, - [SMALL_STATE(1620)] = 93730, - [SMALL_STATE(1621)] = 93743, - [SMALL_STATE(1622)] = 93760, - [SMALL_STATE(1623)] = 93777, - [SMALL_STATE(1624)] = 93794, - [SMALL_STATE(1625)] = 93811, - [SMALL_STATE(1626)] = 93828, - [SMALL_STATE(1627)] = 93845, - [SMALL_STATE(1628)] = 93862, - [SMALL_STATE(1629)] = 93879, - [SMALL_STATE(1630)] = 93896, - [SMALL_STATE(1631)] = 93913, - [SMALL_STATE(1632)] = 93930, - [SMALL_STATE(1633)] = 93947, - [SMALL_STATE(1634)] = 93960, - [SMALL_STATE(1635)] = 93977, - [SMALL_STATE(1636)] = 93994, - [SMALL_STATE(1637)] = 94011, - [SMALL_STATE(1638)] = 94028, - [SMALL_STATE(1639)] = 94043, - [SMALL_STATE(1640)] = 94060, - [SMALL_STATE(1641)] = 94077, - [SMALL_STATE(1642)] = 94094, - [SMALL_STATE(1643)] = 94111, - [SMALL_STATE(1644)] = 94128, - [SMALL_STATE(1645)] = 94145, - [SMALL_STATE(1646)] = 94162, - [SMALL_STATE(1647)] = 94179, - [SMALL_STATE(1648)] = 94192, - [SMALL_STATE(1649)] = 94209, - [SMALL_STATE(1650)] = 94226, - [SMALL_STATE(1651)] = 94243, - [SMALL_STATE(1652)] = 94260, - [SMALL_STATE(1653)] = 94273, - [SMALL_STATE(1654)] = 94290, - [SMALL_STATE(1655)] = 94307, - [SMALL_STATE(1656)] = 94324, - [SMALL_STATE(1657)] = 94341, - [SMALL_STATE(1658)] = 94358, - [SMALL_STATE(1659)] = 94371, - [SMALL_STATE(1660)] = 94388, - [SMALL_STATE(1661)] = 94405, - [SMALL_STATE(1662)] = 94420, - [SMALL_STATE(1663)] = 94435, - [SMALL_STATE(1664)] = 94452, - [SMALL_STATE(1665)] = 94469, - [SMALL_STATE(1666)] = 94481, - [SMALL_STATE(1667)] = 94495, - [SMALL_STATE(1668)] = 94509, - [SMALL_STATE(1669)] = 94523, - [SMALL_STATE(1670)] = 94537, - [SMALL_STATE(1671)] = 94551, - [SMALL_STATE(1672)] = 94565, - [SMALL_STATE(1673)] = 94579, - [SMALL_STATE(1674)] = 94591, - [SMALL_STATE(1675)] = 94605, - [SMALL_STATE(1676)] = 94617, - [SMALL_STATE(1677)] = 94631, - [SMALL_STATE(1678)] = 94645, - [SMALL_STATE(1679)] = 94659, - [SMALL_STATE(1680)] = 94671, - [SMALL_STATE(1681)] = 94685, - [SMALL_STATE(1682)] = 94697, - [SMALL_STATE(1683)] = 94711, - [SMALL_STATE(1684)] = 94725, - [SMALL_STATE(1685)] = 94739, - [SMALL_STATE(1686)] = 94753, - [SMALL_STATE(1687)] = 94767, - [SMALL_STATE(1688)] = 94781, - [SMALL_STATE(1689)] = 94795, - [SMALL_STATE(1690)] = 94809, - [SMALL_STATE(1691)] = 94821, - [SMALL_STATE(1692)] = 94835, - [SMALL_STATE(1693)] = 94847, - [SMALL_STATE(1694)] = 94859, - [SMALL_STATE(1695)] = 94873, - [SMALL_STATE(1696)] = 94887, - [SMALL_STATE(1697)] = 94901, - [SMALL_STATE(1698)] = 94913, - [SMALL_STATE(1699)] = 94925, - [SMALL_STATE(1700)] = 94939, - [SMALL_STATE(1701)] = 94953, - [SMALL_STATE(1702)] = 94965, - [SMALL_STATE(1703)] = 94979, - [SMALL_STATE(1704)] = 94991, - [SMALL_STATE(1705)] = 95005, - [SMALL_STATE(1706)] = 95017, - [SMALL_STATE(1707)] = 95031, - [SMALL_STATE(1708)] = 95045, - [SMALL_STATE(1709)] = 95059, - [SMALL_STATE(1710)] = 95073, - [SMALL_STATE(1711)] = 95085, - [SMALL_STATE(1712)] = 95099, - [SMALL_STATE(1713)] = 95111, - [SMALL_STATE(1714)] = 95125, - [SMALL_STATE(1715)] = 95139, - [SMALL_STATE(1716)] = 95153, - [SMALL_STATE(1717)] = 95165, - [SMALL_STATE(1718)] = 95177, - [SMALL_STATE(1719)] = 95191, - [SMALL_STATE(1720)] = 95205, - [SMALL_STATE(1721)] = 95217, - [SMALL_STATE(1722)] = 95231, - [SMALL_STATE(1723)] = 95245, - [SMALL_STATE(1724)] = 95257, - [SMALL_STATE(1725)] = 95269, - [SMALL_STATE(1726)] = 95283, - [SMALL_STATE(1727)] = 95297, - [SMALL_STATE(1728)] = 95309, - [SMALL_STATE(1729)] = 95321, - [SMALL_STATE(1730)] = 95333, - [SMALL_STATE(1731)] = 95345, - [SMALL_STATE(1732)] = 95357, - [SMALL_STATE(1733)] = 95369, - [SMALL_STATE(1734)] = 95383, - [SMALL_STATE(1735)] = 95397, - [SMALL_STATE(1736)] = 95409, - [SMALL_STATE(1737)] = 95423, - [SMALL_STATE(1738)] = 95437, - [SMALL_STATE(1739)] = 95449, - [SMALL_STATE(1740)] = 95461, - [SMALL_STATE(1741)] = 95473, - [SMALL_STATE(1742)] = 95487, - [SMALL_STATE(1743)] = 95501, - [SMALL_STATE(1744)] = 95515, - [SMALL_STATE(1745)] = 95529, - [SMALL_STATE(1746)] = 95543, - [SMALL_STATE(1747)] = 95555, - [SMALL_STATE(1748)] = 95567, - [SMALL_STATE(1749)] = 95579, - [SMALL_STATE(1750)] = 95591, - [SMALL_STATE(1751)] = 95603, - [SMALL_STATE(1752)] = 95615, - [SMALL_STATE(1753)] = 95627, - [SMALL_STATE(1754)] = 95641, - [SMALL_STATE(1755)] = 95655, - [SMALL_STATE(1756)] = 95669, - [SMALL_STATE(1757)] = 95681, - [SMALL_STATE(1758)] = 95693, - [SMALL_STATE(1759)] = 95705, - [SMALL_STATE(1760)] = 95719, - [SMALL_STATE(1761)] = 95733, - [SMALL_STATE(1762)] = 95747, - [SMALL_STATE(1763)] = 95761, - [SMALL_STATE(1764)] = 95775, - [SMALL_STATE(1765)] = 95789, - [SMALL_STATE(1766)] = 95803, - [SMALL_STATE(1767)] = 95815, - [SMALL_STATE(1768)] = 95829, - [SMALL_STATE(1769)] = 95843, - [SMALL_STATE(1770)] = 95857, - [SMALL_STATE(1771)] = 95871, - [SMALL_STATE(1772)] = 95885, - [SMALL_STATE(1773)] = 95899, - [SMALL_STATE(1774)] = 95913, - [SMALL_STATE(1775)] = 95927, - [SMALL_STATE(1776)] = 95941, - [SMALL_STATE(1777)] = 95955, - [SMALL_STATE(1778)] = 95969, - [SMALL_STATE(1779)] = 95981, - [SMALL_STATE(1780)] = 95995, - [SMALL_STATE(1781)] = 96007, - [SMALL_STATE(1782)] = 96021, - [SMALL_STATE(1783)] = 96033, - [SMALL_STATE(1784)] = 96047, - [SMALL_STATE(1785)] = 96059, - [SMALL_STATE(1786)] = 96073, - [SMALL_STATE(1787)] = 96087, - [SMALL_STATE(1788)] = 96101, - [SMALL_STATE(1789)] = 96115, - [SMALL_STATE(1790)] = 96129, - [SMALL_STATE(1791)] = 96143, - [SMALL_STATE(1792)] = 96155, - [SMALL_STATE(1793)] = 96169, - [SMALL_STATE(1794)] = 96183, - [SMALL_STATE(1795)] = 96195, - [SMALL_STATE(1796)] = 96209, - [SMALL_STATE(1797)] = 96223, - [SMALL_STATE(1798)] = 96237, - [SMALL_STATE(1799)] = 96251, - [SMALL_STATE(1800)] = 96265, - [SMALL_STATE(1801)] = 96277, - [SMALL_STATE(1802)] = 96291, - [SMALL_STATE(1803)] = 96305, - [SMALL_STATE(1804)] = 96317, - [SMALL_STATE(1805)] = 96331, - [SMALL_STATE(1806)] = 96345, - [SMALL_STATE(1807)] = 96359, - [SMALL_STATE(1808)] = 96371, - [SMALL_STATE(1809)] = 96385, - [SMALL_STATE(1810)] = 96397, - [SMALL_STATE(1811)] = 96409, - [SMALL_STATE(1812)] = 96421, - [SMALL_STATE(1813)] = 96435, - [SMALL_STATE(1814)] = 96449, - [SMALL_STATE(1815)] = 96463, - [SMALL_STATE(1816)] = 96477, - [SMALL_STATE(1817)] = 96488, - [SMALL_STATE(1818)] = 96499, - [SMALL_STATE(1819)] = 96510, - [SMALL_STATE(1820)] = 96521, - [SMALL_STATE(1821)] = 96532, - [SMALL_STATE(1822)] = 96543, - [SMALL_STATE(1823)] = 96554, - [SMALL_STATE(1824)] = 96565, - [SMALL_STATE(1825)] = 96576, - [SMALL_STATE(1826)] = 96587, - [SMALL_STATE(1827)] = 96598, - [SMALL_STATE(1828)] = 96609, - [SMALL_STATE(1829)] = 96620, - [SMALL_STATE(1830)] = 96631, - [SMALL_STATE(1831)] = 96642, - [SMALL_STATE(1832)] = 96653, - [SMALL_STATE(1833)] = 96664, - [SMALL_STATE(1834)] = 96675, - [SMALL_STATE(1835)] = 96686, - [SMALL_STATE(1836)] = 96697, - [SMALL_STATE(1837)] = 96708, - [SMALL_STATE(1838)] = 96719, - [SMALL_STATE(1839)] = 96730, - [SMALL_STATE(1840)] = 96741, - [SMALL_STATE(1841)] = 96752, - [SMALL_STATE(1842)] = 96763, - [SMALL_STATE(1843)] = 96774, - [SMALL_STATE(1844)] = 96785, - [SMALL_STATE(1845)] = 96796, - [SMALL_STATE(1846)] = 96807, - [SMALL_STATE(1847)] = 96818, - [SMALL_STATE(1848)] = 96829, - [SMALL_STATE(1849)] = 96840, - [SMALL_STATE(1850)] = 96851, - [SMALL_STATE(1851)] = 96862, - [SMALL_STATE(1852)] = 96873, - [SMALL_STATE(1853)] = 96884, - [SMALL_STATE(1854)] = 96895, - [SMALL_STATE(1855)] = 96906, - [SMALL_STATE(1856)] = 96917, - [SMALL_STATE(1857)] = 96928, - [SMALL_STATE(1858)] = 96939, - [SMALL_STATE(1859)] = 96950, - [SMALL_STATE(1860)] = 96961, - [SMALL_STATE(1861)] = 96972, - [SMALL_STATE(1862)] = 96983, - [SMALL_STATE(1863)] = 96994, - [SMALL_STATE(1864)] = 97005, - [SMALL_STATE(1865)] = 97016, - [SMALL_STATE(1866)] = 97027, - [SMALL_STATE(1867)] = 97038, - [SMALL_STATE(1868)] = 97049, - [SMALL_STATE(1869)] = 97060, - [SMALL_STATE(1870)] = 97071, - [SMALL_STATE(1871)] = 97082, - [SMALL_STATE(1872)] = 97093, - [SMALL_STATE(1873)] = 97104, - [SMALL_STATE(1874)] = 97115, - [SMALL_STATE(1875)] = 97126, - [SMALL_STATE(1876)] = 97137, - [SMALL_STATE(1877)] = 97148, - [SMALL_STATE(1878)] = 97159, - [SMALL_STATE(1879)] = 97170, - [SMALL_STATE(1880)] = 97181, - [SMALL_STATE(1881)] = 97192, - [SMALL_STATE(1882)] = 97203, - [SMALL_STATE(1883)] = 97214, - [SMALL_STATE(1884)] = 97225, - [SMALL_STATE(1885)] = 97236, - [SMALL_STATE(1886)] = 97247, - [SMALL_STATE(1887)] = 97258, - [SMALL_STATE(1888)] = 97269, - [SMALL_STATE(1889)] = 97280, - [SMALL_STATE(1890)] = 97291, - [SMALL_STATE(1891)] = 97302, - [SMALL_STATE(1892)] = 97313, - [SMALL_STATE(1893)] = 97324, - [SMALL_STATE(1894)] = 97335, - [SMALL_STATE(1895)] = 97346, - [SMALL_STATE(1896)] = 97357, - [SMALL_STATE(1897)] = 97368, - [SMALL_STATE(1898)] = 97379, - [SMALL_STATE(1899)] = 97390, - [SMALL_STATE(1900)] = 97401, - [SMALL_STATE(1901)] = 97412, - [SMALL_STATE(1902)] = 97423, - [SMALL_STATE(1903)] = 97434, - [SMALL_STATE(1904)] = 97445, - [SMALL_STATE(1905)] = 97456, - [SMALL_STATE(1906)] = 97467, - [SMALL_STATE(1907)] = 97478, - [SMALL_STATE(1908)] = 97489, - [SMALL_STATE(1909)] = 97500, - [SMALL_STATE(1910)] = 97511, - [SMALL_STATE(1911)] = 97522, - [SMALL_STATE(1912)] = 97533, - [SMALL_STATE(1913)] = 97544, - [SMALL_STATE(1914)] = 97555, - [SMALL_STATE(1915)] = 97566, - [SMALL_STATE(1916)] = 97577, - [SMALL_STATE(1917)] = 97588, - [SMALL_STATE(1918)] = 97599, - [SMALL_STATE(1919)] = 97610, - [SMALL_STATE(1920)] = 97621, - [SMALL_STATE(1921)] = 97632, - [SMALL_STATE(1922)] = 97643, - [SMALL_STATE(1923)] = 97654, - [SMALL_STATE(1924)] = 97665, - [SMALL_STATE(1925)] = 97676, - [SMALL_STATE(1926)] = 97687, - [SMALL_STATE(1927)] = 97698, - [SMALL_STATE(1928)] = 97709, - [SMALL_STATE(1929)] = 97720, - [SMALL_STATE(1930)] = 97731, - [SMALL_STATE(1931)] = 97742, - [SMALL_STATE(1932)] = 97753, - [SMALL_STATE(1933)] = 97764, - [SMALL_STATE(1934)] = 97775, - [SMALL_STATE(1935)] = 97786, - [SMALL_STATE(1936)] = 97797, - [SMALL_STATE(1937)] = 97808, - [SMALL_STATE(1938)] = 97819, - [SMALL_STATE(1939)] = 97830, - [SMALL_STATE(1940)] = 97841, - [SMALL_STATE(1941)] = 97852, - [SMALL_STATE(1942)] = 97863, - [SMALL_STATE(1943)] = 97874, - [SMALL_STATE(1944)] = 97885, - [SMALL_STATE(1945)] = 97896, - [SMALL_STATE(1946)] = 97907, - [SMALL_STATE(1947)] = 97918, - [SMALL_STATE(1948)] = 97929, - [SMALL_STATE(1949)] = 97940, - [SMALL_STATE(1950)] = 97951, - [SMALL_STATE(1951)] = 97962, - [SMALL_STATE(1952)] = 97973, - [SMALL_STATE(1953)] = 97984, - [SMALL_STATE(1954)] = 97995, - [SMALL_STATE(1955)] = 98006, - [SMALL_STATE(1956)] = 98017, - [SMALL_STATE(1957)] = 98028, - [SMALL_STATE(1958)] = 98039, - [SMALL_STATE(1959)] = 98050, - [SMALL_STATE(1960)] = 98061, - [SMALL_STATE(1961)] = 98072, - [SMALL_STATE(1962)] = 98083, - [SMALL_STATE(1963)] = 98094, - [SMALL_STATE(1964)] = 98105, - [SMALL_STATE(1965)] = 98116, - [SMALL_STATE(1966)] = 98127, + [SMALL_STATE(16)] = 145, + [SMALL_STATE(17)] = 213, + [SMALL_STATE(18)] = 341, + [SMALL_STATE(19)] = 469, + [SMALL_STATE(20)] = 597, + [SMALL_STATE(21)] = 665, + [SMALL_STATE(22)] = 793, + [SMALL_STATE(23)] = 921, + [SMALL_STATE(24)] = 993, + [SMALL_STATE(25)] = 1061, + [SMALL_STATE(26)] = 1189, + [SMALL_STATE(27)] = 1317, + [SMALL_STATE(28)] = 1385, + [SMALL_STATE(29)] = 1513, + [SMALL_STATE(30)] = 1641, + [SMALL_STATE(31)] = 1709, + [SMALL_STATE(32)] = 1777, + [SMALL_STATE(33)] = 1905, + [SMALL_STATE(34)] = 1973, + [SMALL_STATE(35)] = 2041, + [SMALL_STATE(36)] = 2109, + [SMALL_STATE(37)] = 2237, + [SMALL_STATE(38)] = 2305, + [SMALL_STATE(39)] = 2373, + [SMALL_STATE(40)] = 2445, + [SMALL_STATE(41)] = 2573, + [SMALL_STATE(42)] = 2641, + [SMALL_STATE(43)] = 2709, + [SMALL_STATE(44)] = 2837, + [SMALL_STATE(45)] = 2965, + [SMALL_STATE(46)] = 3093, + [SMALL_STATE(47)] = 3161, + [SMALL_STATE(48)] = 3229, + [SMALL_STATE(49)] = 3297, + [SMALL_STATE(50)] = 3365, + [SMALL_STATE(51)] = 3434, + [SMALL_STATE(52)] = 3501, + [SMALL_STATE(53)] = 3568, + [SMALL_STATE(54)] = 3635, + [SMALL_STATE(55)] = 3702, + [SMALL_STATE(56)] = 3769, + [SMALL_STATE(57)] = 3836, + [SMALL_STATE(58)] = 3907, + [SMALL_STATE(59)] = 3974, + [SMALL_STATE(60)] = 4041, + [SMALL_STATE(61)] = 4108, + [SMALL_STATE(62)] = 4175, + [SMALL_STATE(63)] = 4246, + [SMALL_STATE(64)] = 4313, + [SMALL_STATE(65)] = 4380, + [SMALL_STATE(66)] = 4447, + [SMALL_STATE(67)] = 4514, + [SMALL_STATE(68)] = 4581, + [SMALL_STATE(69)] = 4648, + [SMALL_STATE(70)] = 4715, + [SMALL_STATE(71)] = 4782, + [SMALL_STATE(72)] = 4849, + [SMALL_STATE(73)] = 4918, + [SMALL_STATE(74)] = 4987, + [SMALL_STATE(75)] = 5056, + [SMALL_STATE(76)] = 5125, + [SMALL_STATE(77)] = 5192, + [SMALL_STATE(78)] = 5263, + [SMALL_STATE(79)] = 5334, + [SMALL_STATE(80)] = 5401, + [SMALL_STATE(81)] = 5468, + [SMALL_STATE(82)] = 5535, + [SMALL_STATE(83)] = 5602, + [SMALL_STATE(84)] = 5669, + [SMALL_STATE(85)] = 5735, + [SMALL_STATE(86)] = 5801, + [SMALL_STATE(87)] = 5931, + [SMALL_STATE(88)] = 5997, + [SMALL_STATE(89)] = 6063, + [SMALL_STATE(90)] = 6129, + [SMALL_STATE(91)] = 6259, + [SMALL_STATE(92)] = 6325, + [SMALL_STATE(93)] = 6411, + [SMALL_STATE(94)] = 6541, + [SMALL_STATE(95)] = 6607, + [SMALL_STATE(96)] = 6673, + [SMALL_STATE(97)] = 6739, + [SMALL_STATE(98)] = 6825, + [SMALL_STATE(99)] = 6891, + [SMALL_STATE(100)] = 7021, + [SMALL_STATE(101)] = 7087, + [SMALL_STATE(102)] = 7153, + [SMALL_STATE(103)] = 7219, + [SMALL_STATE(104)] = 7285, + [SMALL_STATE(105)] = 7359, + [SMALL_STATE(106)] = 7425, + [SMALL_STATE(107)] = 7555, + [SMALL_STATE(108)] = 7631, + [SMALL_STATE(109)] = 7697, + [SMALL_STATE(110)] = 7763, + [SMALL_STATE(111)] = 7843, + [SMALL_STATE(112)] = 7909, + [SMALL_STATE(113)] = 7991, + [SMALL_STATE(114)] = 8075, + [SMALL_STATE(115)] = 8145, + [SMALL_STATE(116)] = 8211, + [SMALL_STATE(117)] = 8277, + [SMALL_STATE(118)] = 8363, + [SMALL_STATE(119)] = 8449, + [SMALL_STATE(120)] = 8579, + [SMALL_STATE(121)] = 8709, + [SMALL_STATE(122)] = 8775, + [SMALL_STATE(123)] = 8841, + [SMALL_STATE(124)] = 8907, + [SMALL_STATE(125)] = 8975, + [SMALL_STATE(126)] = 9043, + [SMALL_STATE(127)] = 9111, + [SMALL_STATE(128)] = 9177, + [SMALL_STATE(129)] = 9243, + [SMALL_STATE(130)] = 9309, + [SMALL_STATE(131)] = 9375, + [SMALL_STATE(132)] = 9441, + [SMALL_STATE(133)] = 9527, + [SMALL_STATE(134)] = 9593, + [SMALL_STATE(135)] = 9659, + [SMALL_STATE(136)] = 9744, + [SMALL_STATE(137)] = 9829, + [SMALL_STATE(138)] = 9894, + [SMALL_STATE(139)] = 10021, + [SMALL_STATE(140)] = 10086, + [SMALL_STATE(141)] = 10151, + [SMALL_STATE(142)] = 10278, + [SMALL_STATE(143)] = 10343, + [SMALL_STATE(144)] = 10428, + [SMALL_STATE(145)] = 10555, + [SMALL_STATE(146)] = 10682, + [SMALL_STATE(147)] = 10809, + [SMALL_STATE(148)] = 10874, + [SMALL_STATE(149)] = 10939, + [SMALL_STATE(150)] = 11004, + [SMALL_STATE(151)] = 11131, + [SMALL_STATE(152)] = 11258, + [SMALL_STATE(153)] = 11323, + [SMALL_STATE(154)] = 11450, + [SMALL_STATE(155)] = 11535, + [SMALL_STATE(156)] = 11600, + [SMALL_STATE(157)] = 11685, + [SMALL_STATE(158)] = 11770, + [SMALL_STATE(159)] = 11897, + [SMALL_STATE(160)] = 11982, + [SMALL_STATE(161)] = 12047, + [SMALL_STATE(162)] = 12174, + [SMALL_STATE(163)] = 12301, + [SMALL_STATE(164)] = 12374, + [SMALL_STATE(165)] = 12439, + [SMALL_STATE(166)] = 12504, + [SMALL_STATE(167)] = 12631, + [SMALL_STATE(168)] = 12696, + [SMALL_STATE(169)] = 12823, + [SMALL_STATE(170)] = 12888, + [SMALL_STATE(171)] = 12953, + [SMALL_STATE(172)] = 13018, + [SMALL_STATE(173)] = 13145, + [SMALL_STATE(174)] = 13272, + [SMALL_STATE(175)] = 13399, + [SMALL_STATE(176)] = 13464, + [SMALL_STATE(177)] = 13591, + [SMALL_STATE(178)] = 13656, + [SMALL_STATE(179)] = 13783, + [SMALL_STATE(180)] = 13910, + [SMALL_STATE(181)] = 13975, + [SMALL_STATE(182)] = 14060, + [SMALL_STATE(183)] = 14125, + [SMALL_STATE(184)] = 14252, + [SMALL_STATE(185)] = 14317, + [SMALL_STATE(186)] = 14386, + [SMALL_STATE(187)] = 14469, + [SMALL_STATE(188)] = 14550, + [SMALL_STATE(189)] = 14629, + [SMALL_STATE(190)] = 14756, + [SMALL_STATE(191)] = 14831, + [SMALL_STATE(192)] = 14916, + [SMALL_STATE(193)] = 14980, + [SMALL_STATE(194)] = 15104, + [SMALL_STATE(195)] = 15168, + [SMALL_STATE(196)] = 15232, + [SMALL_STATE(197)] = 15296, + [SMALL_STATE(198)] = 15418, + [SMALL_STATE(199)] = 15485, + [SMALL_STATE(200)] = 15547, + [SMALL_STATE(201)] = 15609, + [SMALL_STATE(202)] = 15727, + [SMALL_STATE(203)] = 15789, + [SMALL_STATE(204)] = 15855, + [SMALL_STATE(205)] = 15917, + [SMALL_STATE(206)] = 16035, + [SMALL_STATE(207)] = 16153, + [SMALL_STATE(208)] = 16215, + [SMALL_STATE(209)] = 16333, + [SMALL_STATE(210)] = 16395, + [SMALL_STATE(211)] = 16513, + [SMALL_STATE(212)] = 16631, + [SMALL_STATE(213)] = 16749, + [SMALL_STATE(214)] = 16811, + [SMALL_STATE(215)] = 16929, + [SMALL_STATE(216)] = 16991, + [SMALL_STATE(217)] = 17107, + [SMALL_STATE(218)] = 17225, + [SMALL_STATE(219)] = 17343, + [SMALL_STATE(220)] = 17405, + [SMALL_STATE(221)] = 17467, + [SMALL_STATE(222)] = 17585, + [SMALL_STATE(223)] = 17703, + [SMALL_STATE(224)] = 17821, + [SMALL_STATE(225)] = 17883, + [SMALL_STATE(226)] = 17945, + [SMALL_STATE(227)] = 18007, + [SMALL_STATE(228)] = 18125, + [SMALL_STATE(229)] = 18191, + [SMALL_STATE(230)] = 18252, + [SMALL_STATE(231)] = 18367, + [SMALL_STATE(232)] = 18482, + [SMALL_STATE(233)] = 18545, + [SMALL_STATE(234)] = 18608, + [SMALL_STATE(235)] = 18671, + [SMALL_STATE(236)] = 18786, + [SMALL_STATE(237)] = 18901, + [SMALL_STATE(238)] = 19016, + [SMALL_STATE(239)] = 19131, + [SMALL_STATE(240)] = 19192, + [SMALL_STATE(241)] = 19307, + [SMALL_STATE(242)] = 19422, + [SMALL_STATE(243)] = 19537, + [SMALL_STATE(244)] = 19598, + [SMALL_STATE(245)] = 19663, + [SMALL_STATE(246)] = 19778, + [SMALL_STATE(247)] = 19893, + [SMALL_STATE(248)] = 20008, + [SMALL_STATE(249)] = 20123, + [SMALL_STATE(250)] = 20238, + [SMALL_STATE(251)] = 20353, + [SMALL_STATE(252)] = 20468, + [SMALL_STATE(253)] = 20529, + [SMALL_STATE(254)] = 20644, + [SMALL_STATE(255)] = 20759, + [SMALL_STATE(256)] = 20820, + [SMALL_STATE(257)] = 20935, + [SMALL_STATE(258)] = 21050, + [SMALL_STATE(259)] = 21165, + [SMALL_STATE(260)] = 21226, + [SMALL_STATE(261)] = 21341, + [SMALL_STATE(262)] = 21456, + [SMALL_STATE(263)] = 21571, + [SMALL_STATE(264)] = 21686, + [SMALL_STATE(265)] = 21747, + [SMALL_STATE(266)] = 21862, + [SMALL_STATE(267)] = 21977, + [SMALL_STATE(268)] = 22038, + [SMALL_STATE(269)] = 22153, + [SMALL_STATE(270)] = 22268, + [SMALL_STATE(271)] = 22383, + [SMALL_STATE(272)] = 22498, + [SMALL_STATE(273)] = 22613, + [SMALL_STATE(274)] = 22728, + [SMALL_STATE(275)] = 22843, + [SMALL_STATE(276)] = 22958, + [SMALL_STATE(277)] = 23073, + [SMALL_STATE(278)] = 23188, + [SMALL_STATE(279)] = 23303, + [SMALL_STATE(280)] = 23418, + [SMALL_STATE(281)] = 23533, + [SMALL_STATE(282)] = 23648, + [SMALL_STATE(283)] = 23763, + [SMALL_STATE(284)] = 23878, + [SMALL_STATE(285)] = 23990, + [SMALL_STATE(286)] = 24106, + [SMALL_STATE(287)] = 24218, + [SMALL_STATE(288)] = 24330, + [SMALL_STATE(289)] = 24442, + [SMALL_STATE(290)] = 24502, + [SMALL_STATE(291)] = 24614, + [SMALL_STATE(292)] = 24730, + [SMALL_STATE(293)] = 24842, + [SMALL_STATE(294)] = 24958, + [SMALL_STATE(295)] = 25070, + [SMALL_STATE(296)] = 25182, + [SMALL_STATE(297)] = 25294, + [SMALL_STATE(298)] = 25406, + [SMALL_STATE(299)] = 25518, + [SMALL_STATE(300)] = 25630, + [SMALL_STATE(301)] = 25742, + [SMALL_STATE(302)] = 25854, + [SMALL_STATE(303)] = 25966, + [SMALL_STATE(304)] = 26078, + [SMALL_STATE(305)] = 26190, + [SMALL_STATE(306)] = 26302, + [SMALL_STATE(307)] = 26414, + [SMALL_STATE(308)] = 26526, + [SMALL_STATE(309)] = 26638, + [SMALL_STATE(310)] = 26750, + [SMALL_STATE(311)] = 26862, + [SMALL_STATE(312)] = 26974, + [SMALL_STATE(313)] = 27086, + [SMALL_STATE(314)] = 27198, + [SMALL_STATE(315)] = 27310, + [SMALL_STATE(316)] = 27422, + [SMALL_STATE(317)] = 27534, + [SMALL_STATE(318)] = 27646, + [SMALL_STATE(319)] = 27758, + [SMALL_STATE(320)] = 27870, + [SMALL_STATE(321)] = 27982, + [SMALL_STATE(322)] = 28098, + [SMALL_STATE(323)] = 28210, + [SMALL_STATE(324)] = 28322, + [SMALL_STATE(325)] = 28438, + [SMALL_STATE(326)] = 28550, + [SMALL_STATE(327)] = 28662, + [SMALL_STATE(328)] = 28774, + [SMALL_STATE(329)] = 28886, + [SMALL_STATE(330)] = 28998, + [SMALL_STATE(331)] = 29110, + [SMALL_STATE(332)] = 29222, + [SMALL_STATE(333)] = 29334, + [SMALL_STATE(334)] = 29446, + [SMALL_STATE(335)] = 29558, + [SMALL_STATE(336)] = 29670, + [SMALL_STATE(337)] = 29782, + [SMALL_STATE(338)] = 29894, + [SMALL_STATE(339)] = 30006, + [SMALL_STATE(340)] = 30118, + [SMALL_STATE(341)] = 30230, + [SMALL_STATE(342)] = 30342, + [SMALL_STATE(343)] = 30454, + [SMALL_STATE(344)] = 30566, + [SMALL_STATE(345)] = 30626, + [SMALL_STATE(346)] = 30742, + [SMALL_STATE(347)] = 30802, + [SMALL_STATE(348)] = 30914, + [SMALL_STATE(349)] = 31026, + [SMALL_STATE(350)] = 31138, + [SMALL_STATE(351)] = 31250, + [SMALL_STATE(352)] = 31310, + [SMALL_STATE(353)] = 31370, + [SMALL_STATE(354)] = 31482, + [SMALL_STATE(355)] = 31542, + [SMALL_STATE(356)] = 31658, + [SMALL_STATE(357)] = 31770, + [SMALL_STATE(358)] = 31882, + [SMALL_STATE(359)] = 31994, + [SMALL_STATE(360)] = 32106, + [SMALL_STATE(361)] = 32218, + [SMALL_STATE(362)] = 32278, + [SMALL_STATE(363)] = 32338, + [SMALL_STATE(364)] = 32398, + [SMALL_STATE(365)] = 32458, + [SMALL_STATE(366)] = 32518, + [SMALL_STATE(367)] = 32578, + [SMALL_STATE(368)] = 32638, + [SMALL_STATE(369)] = 32750, + [SMALL_STATE(370)] = 32866, + [SMALL_STATE(371)] = 32926, + [SMALL_STATE(372)] = 33038, + [SMALL_STATE(373)] = 33150, + [SMALL_STATE(374)] = 33262, + [SMALL_STATE(375)] = 33374, + [SMALL_STATE(376)] = 33486, + [SMALL_STATE(377)] = 33598, + [SMALL_STATE(378)] = 33658, + [SMALL_STATE(379)] = 33774, + [SMALL_STATE(380)] = 33886, + [SMALL_STATE(381)] = 33946, + [SMALL_STATE(382)] = 34006, + [SMALL_STATE(383)] = 34118, + [SMALL_STATE(384)] = 34230, + [SMALL_STATE(385)] = 34342, + [SMALL_STATE(386)] = 34454, + [SMALL_STATE(387)] = 34514, + [SMALL_STATE(388)] = 34574, + [SMALL_STATE(389)] = 34686, + [SMALL_STATE(390)] = 34798, + [SMALL_STATE(391)] = 34914, + [SMALL_STATE(392)] = 35026, + [SMALL_STATE(393)] = 35142, + [SMALL_STATE(394)] = 35202, + [SMALL_STATE(395)] = 35262, + [SMALL_STATE(396)] = 35374, + [SMALL_STATE(397)] = 35486, + [SMALL_STATE(398)] = 35598, + [SMALL_STATE(399)] = 35710, + [SMALL_STATE(400)] = 35822, + [SMALL_STATE(401)] = 35934, + [SMALL_STATE(402)] = 36046, + [SMALL_STATE(403)] = 36158, + [SMALL_STATE(404)] = 36270, + [SMALL_STATE(405)] = 36330, + [SMALL_STATE(406)] = 36390, + [SMALL_STATE(407)] = 36502, + [SMALL_STATE(408)] = 36562, + [SMALL_STATE(409)] = 36674, + [SMALL_STATE(410)] = 36786, + [SMALL_STATE(411)] = 36846, + [SMALL_STATE(412)] = 36962, + [SMALL_STATE(413)] = 37022, + [SMALL_STATE(414)] = 37134, + [SMALL_STATE(415)] = 37194, + [SMALL_STATE(416)] = 37254, + [SMALL_STATE(417)] = 37366, + [SMALL_STATE(418)] = 37482, + [SMALL_STATE(419)] = 37594, + [SMALL_STATE(420)] = 37706, + [SMALL_STATE(421)] = 37766, + [SMALL_STATE(422)] = 37878, + [SMALL_STATE(423)] = 37938, + [SMALL_STATE(424)] = 38050, + [SMALL_STATE(425)] = 38162, + [SMALL_STATE(426)] = 38278, + [SMALL_STATE(427)] = 38390, + [SMALL_STATE(428)] = 38454, + [SMALL_STATE(429)] = 38518, + [SMALL_STATE(430)] = 38630, + [SMALL_STATE(431)] = 38742, + [SMALL_STATE(432)] = 38802, + [SMALL_STATE(433)] = 38918, + [SMALL_STATE(434)] = 39030, + [SMALL_STATE(435)] = 39142, + [SMALL_STATE(436)] = 39254, + [SMALL_STATE(437)] = 39366, + [SMALL_STATE(438)] = 39482, + [SMALL_STATE(439)] = 39594, + [SMALL_STATE(440)] = 39706, + [SMALL_STATE(441)] = 39818, + [SMALL_STATE(442)] = 39934, + [SMALL_STATE(443)] = 40046, + [SMALL_STATE(444)] = 40158, + [SMALL_STATE(445)] = 40270, + [SMALL_STATE(446)] = 40382, + [SMALL_STATE(447)] = 40494, + [SMALL_STATE(448)] = 40606, + [SMALL_STATE(449)] = 40722, + [SMALL_STATE(450)] = 40834, + [SMALL_STATE(451)] = 40946, + [SMALL_STATE(452)] = 41058, + [SMALL_STATE(453)] = 41170, + [SMALL_STATE(454)] = 41282, + [SMALL_STATE(455)] = 41394, + [SMALL_STATE(456)] = 41510, + [SMALL_STATE(457)] = 41622, + [SMALL_STATE(458)] = 41682, + [SMALL_STATE(459)] = 41794, + [SMALL_STATE(460)] = 41910, + [SMALL_STATE(461)] = 41970, + [SMALL_STATE(462)] = 42086, + [SMALL_STATE(463)] = 42198, + [SMALL_STATE(464)] = 42258, + [SMALL_STATE(465)] = 42370, + [SMALL_STATE(466)] = 42482, + [SMALL_STATE(467)] = 42541, + [SMALL_STATE(468)] = 42602, + [SMALL_STATE(469)] = 42661, + [SMALL_STATE(470)] = 42720, + [SMALL_STATE(471)] = 42779, + [SMALL_STATE(472)] = 42838, + [SMALL_STATE(473)] = 42897, + [SMALL_STATE(474)] = 42956, + [SMALL_STATE(475)] = 43015, + [SMALL_STATE(476)] = 43076, + [SMALL_STATE(477)] = 43137, + [SMALL_STATE(478)] = 43198, + [SMALL_STATE(479)] = 43261, + [SMALL_STATE(480)] = 43374, + [SMALL_STATE(481)] = 43437, + [SMALL_STATE(482)] = 43496, + [SMALL_STATE(483)] = 43557, + [SMALL_STATE(484)] = 43667, + [SMALL_STATE(485)] = 43725, + [SMALL_STATE(486)] = 43791, + [SMALL_STATE(487)] = 43859, + [SMALL_STATE(488)] = 43931, + [SMALL_STATE(489)] = 44005, + [SMALL_STATE(490)] = 44081, + [SMALL_STATE(491)] = 44139, + [SMALL_STATE(492)] = 44249, + [SMALL_STATE(493)] = 44311, + [SMALL_STATE(494)] = 44421, + [SMALL_STATE(495)] = 44531, + [SMALL_STATE(496)] = 44641, + [SMALL_STATE(497)] = 44699, + [SMALL_STATE(498)] = 44777, + [SMALL_STATE(499)] = 44855, + [SMALL_STATE(500)] = 44965, + [SMALL_STATE(501)] = 45075, + [SMALL_STATE(502)] = 45133, + [SMALL_STATE(503)] = 45243, + [SMALL_STATE(504)] = 45353, + [SMALL_STATE(505)] = 45411, + [SMALL_STATE(506)] = 45469, + [SMALL_STATE(507)] = 45579, + [SMALL_STATE(508)] = 45637, + [SMALL_STATE(509)] = 45695, + [SMALL_STATE(510)] = 45805, + [SMALL_STATE(511)] = 45863, + [SMALL_STATE(512)] = 45921, + [SMALL_STATE(513)] = 46031, + [SMALL_STATE(514)] = 46089, + [SMALL_STATE(515)] = 46167, + [SMALL_STATE(516)] = 46225, + [SMALL_STATE(517)] = 46335, + [SMALL_STATE(518)] = 46445, + [SMALL_STATE(519)] = 46503, + [SMALL_STATE(520)] = 46613, + [SMALL_STATE(521)] = 46671, + [SMALL_STATE(522)] = 46749, + [SMALL_STATE(523)] = 46807, + [SMALL_STATE(524)] = 46917, + [SMALL_STATE(525)] = 46975, + [SMALL_STATE(526)] = 47033, + [SMALL_STATE(527)] = 47143, + [SMALL_STATE(528)] = 47253, + [SMALL_STATE(529)] = 47311, + [SMALL_STATE(530)] = 47369, + [SMALL_STATE(531)] = 47427, + [SMALL_STATE(532)] = 47485, + [SMALL_STATE(533)] = 47563, + [SMALL_STATE(534)] = 47638, + [SMALL_STATE(535)] = 47715, + [SMALL_STATE(536)] = 47786, + [SMALL_STATE(537)] = 47843, + [SMALL_STATE(538)] = 47910, + [SMALL_STATE(539)] = 47987, + [SMALL_STATE(540)] = 48064, + [SMALL_STATE(541)] = 48125, + [SMALL_STATE(542)] = 48202, + [SMALL_STATE(543)] = 48267, + [SMALL_STATE(544)] = 48340, + [SMALL_STATE(545)] = 48417, + [SMALL_STATE(546)] = 48474, + [SMALL_STATE(547)] = 48551, + [SMALL_STATE(548)] = 48628, + [SMALL_STATE(549)] = 48705, + [SMALL_STATE(550)] = 48782, + [SMALL_STATE(551)] = 48837, + [SMALL_STATE(552)] = 48892, + [SMALL_STATE(553)] = 48947, + [SMALL_STATE(554)] = 49002, + [SMALL_STATE(555)] = 49055, + [SMALL_STATE(556)] = 49108, + [SMALL_STATE(557)] = 49161, + [SMALL_STATE(558)] = 49214, + [SMALL_STATE(559)] = 49267, + [SMALL_STATE(560)] = 49322, + [SMALL_STATE(561)] = 49372, + [SMALL_STATE(562)] = 49422, + [SMALL_STATE(563)] = 49472, + [SMALL_STATE(564)] = 49522, + [SMALL_STATE(565)] = 49576, + [SMALL_STATE(566)] = 49626, + [SMALL_STATE(567)] = 49680, + [SMALL_STATE(568)] = 49730, + [SMALL_STATE(569)] = 49780, + [SMALL_STATE(570)] = 49830, + [SMALL_STATE(571)] = 49880, + [SMALL_STATE(572)] = 49934, + [SMALL_STATE(573)] = 49984, + [SMALL_STATE(574)] = 50034, + [SMALL_STATE(575)] = 50084, + [SMALL_STATE(576)] = 50138, + [SMALL_STATE(577)] = 50192, + [SMALL_STATE(578)] = 50242, + [SMALL_STATE(579)] = 50292, + [SMALL_STATE(580)] = 50342, + [SMALL_STATE(581)] = 50392, + [SMALL_STATE(582)] = 50442, + [SMALL_STATE(583)] = 50491, + [SMALL_STATE(584)] = 50540, + [SMALL_STATE(585)] = 50589, + [SMALL_STATE(586)] = 50638, + [SMALL_STATE(587)] = 50687, + [SMALL_STATE(588)] = 50736, + [SMALL_STATE(589)] = 50787, + [SMALL_STATE(590)] = 50836, + [SMALL_STATE(591)] = 50885, + [SMALL_STATE(592)] = 50936, + [SMALL_STATE(593)] = 50987, + [SMALL_STATE(594)] = 51055, + [SMALL_STATE(595)] = 51119, + [SMALL_STATE(596)] = 51167, + [SMALL_STATE(597)] = 51215, + [SMALL_STATE(598)] = 51263, + [SMALL_STATE(599)] = 51311, + [SMALL_STATE(600)] = 51359, + [SMALL_STATE(601)] = 51407, + [SMALL_STATE(602)] = 51455, + [SMALL_STATE(603)] = 51503, + [SMALL_STATE(604)] = 51551, + [SMALL_STATE(605)] = 51599, + [SMALL_STATE(606)] = 51647, + [SMALL_STATE(607)] = 51695, + [SMALL_STATE(608)] = 51763, + [SMALL_STATE(609)] = 51811, + [SMALL_STATE(610)] = 51879, + [SMALL_STATE(611)] = 51927, + [SMALL_STATE(612)] = 51975, + [SMALL_STATE(613)] = 52023, + [SMALL_STATE(614)] = 52071, + [SMALL_STATE(615)] = 52119, + [SMALL_STATE(616)] = 52167, + [SMALL_STATE(617)] = 52215, + [SMALL_STATE(618)] = 52263, + [SMALL_STATE(619)] = 52311, + [SMALL_STATE(620)] = 52359, + [SMALL_STATE(621)] = 52427, + [SMALL_STATE(622)] = 52475, + [SMALL_STATE(623)] = 52523, + [SMALL_STATE(624)] = 52571, + [SMALL_STATE(625)] = 52619, + [SMALL_STATE(626)] = 52667, + [SMALL_STATE(627)] = 52715, + [SMALL_STATE(628)] = 52783, + [SMALL_STATE(629)] = 52831, + [SMALL_STATE(630)] = 52879, + [SMALL_STATE(631)] = 52931, + [SMALL_STATE(632)] = 52997, + [SMALL_STATE(633)] = 53045, + [SMALL_STATE(634)] = 53093, + [SMALL_STATE(635)] = 53155, + [SMALL_STATE(636)] = 53203, + [SMALL_STATE(637)] = 53261, + [SMALL_STATE(638)] = 53317, + [SMALL_STATE(639)] = 53365, + [SMALL_STATE(640)] = 53413, + [SMALL_STATE(641)] = 53481, + [SMALL_STATE(642)] = 53549, + [SMALL_STATE(643)] = 53597, + [SMALL_STATE(644)] = 53645, + [SMALL_STATE(645)] = 53693, + [SMALL_STATE(646)] = 53744, + [SMALL_STATE(647)] = 53795, + [SMALL_STATE(648)] = 53846, + [SMALL_STATE(649)] = 53892, + [SMALL_STATE(650)] = 53942, + [SMALL_STATE(651)] = 53992, + [SMALL_STATE(652)] = 54041, + [SMALL_STATE(653)] = 54086, + [SMALL_STATE(654)] = 54131, + [SMALL_STATE(655)] = 54176, + [SMALL_STATE(656)] = 54225, + [SMALL_STATE(657)] = 54276, + [SMALL_STATE(658)] = 54321, + [SMALL_STATE(659)] = 54366, + [SMALL_STATE(660)] = 54411, + [SMALL_STATE(661)] = 54460, + [SMALL_STATE(662)] = 54511, + [SMALL_STATE(663)] = 54556, + [SMALL_STATE(664)] = 54605, + [SMALL_STATE(665)] = 54650, + [SMALL_STATE(666)] = 54699, + [SMALL_STATE(667)] = 54744, + [SMALL_STATE(668)] = 54789, + [SMALL_STATE(669)] = 54834, + [SMALL_STATE(670)] = 54883, + [SMALL_STATE(671)] = 54928, + [SMALL_STATE(672)] = 55012, + [SMALL_STATE(673)] = 55056, + [SMALL_STATE(674)] = 55102, + [SMALL_STATE(675)] = 55186, + [SMALL_STATE(676)] = 55230, + [SMALL_STATE(677)] = 55274, + [SMALL_STATE(678)] = 55318, + [SMALL_STATE(679)] = 55362, + [SMALL_STATE(680)] = 55408, + [SMALL_STATE(681)] = 55454, + [SMALL_STATE(682)] = 55502, + [SMALL_STATE(683)] = 55546, + [SMALL_STATE(684)] = 55590, + [SMALL_STATE(685)] = 55636, + [SMALL_STATE(686)] = 55720, + [SMALL_STATE(687)] = 55804, + [SMALL_STATE(688)] = 55848, + [SMALL_STATE(689)] = 55892, + [SMALL_STATE(690)] = 55936, + [SMALL_STATE(691)] = 56020, + [SMALL_STATE(692)] = 56064, + [SMALL_STATE(693)] = 56108, + [SMALL_STATE(694)] = 56156, + [SMALL_STATE(695)] = 56204, + [SMALL_STATE(696)] = 56252, + [SMALL_STATE(697)] = 56336, + [SMALL_STATE(698)] = 56380, + [SMALL_STATE(699)] = 56464, + [SMALL_STATE(700)] = 56510, + [SMALL_STATE(701)] = 56556, + [SMALL_STATE(702)] = 56600, + [SMALL_STATE(703)] = 56646, + [SMALL_STATE(704)] = 56690, + [SMALL_STATE(705)] = 56738, + [SMALL_STATE(706)] = 56782, + [SMALL_STATE(707)] = 56826, + [SMALL_STATE(708)] = 56870, + [SMALL_STATE(709)] = 56918, + [SMALL_STATE(710)] = 56962, + [SMALL_STATE(711)] = 57006, + [SMALL_STATE(712)] = 57050, + [SMALL_STATE(713)] = 57093, + [SMALL_STATE(714)] = 57136, + [SMALL_STATE(715)] = 57179, + [SMALL_STATE(716)] = 57236, + [SMALL_STATE(717)] = 57279, + [SMALL_STATE(718)] = 57322, + [SMALL_STATE(719)] = 57365, + [SMALL_STATE(720)] = 57408, + [SMALL_STATE(721)] = 57451, + [SMALL_STATE(722)] = 57494, + [SMALL_STATE(723)] = 57537, + [SMALL_STATE(724)] = 57580, + [SMALL_STATE(725)] = 57623, + [SMALL_STATE(726)] = 57666, + [SMALL_STATE(727)] = 57709, + [SMALL_STATE(728)] = 57766, + [SMALL_STATE(729)] = 57809, + [SMALL_STATE(730)] = 57852, + [SMALL_STATE(731)] = 57895, + [SMALL_STATE(732)] = 57938, + [SMALL_STATE(733)] = 57981, + [SMALL_STATE(734)] = 58024, + [SMALL_STATE(735)] = 58067, + [SMALL_STATE(736)] = 58110, + [SMALL_STATE(737)] = 58153, + [SMALL_STATE(738)] = 58196, + [SMALL_STATE(739)] = 58253, + [SMALL_STATE(740)] = 58336, + [SMALL_STATE(741)] = 58379, + [SMALL_STATE(742)] = 58422, + [SMALL_STATE(743)] = 58465, + [SMALL_STATE(744)] = 58508, + [SMALL_STATE(745)] = 58551, + [SMALL_STATE(746)] = 58594, + [SMALL_STATE(747)] = 58637, + [SMALL_STATE(748)] = 58680, + [SMALL_STATE(749)] = 58723, + [SMALL_STATE(750)] = 58766, + [SMALL_STATE(751)] = 58823, + [SMALL_STATE(752)] = 58906, + [SMALL_STATE(753)] = 58949, + [SMALL_STATE(754)] = 58992, + [SMALL_STATE(755)] = 59035, + [SMALL_STATE(756)] = 59078, + [SMALL_STATE(757)] = 59121, + [SMALL_STATE(758)] = 59164, + [SMALL_STATE(759)] = 59207, + [SMALL_STATE(760)] = 59250, + [SMALL_STATE(761)] = 59293, + [SMALL_STATE(762)] = 59336, + [SMALL_STATE(763)] = 59379, + [SMALL_STATE(764)] = 59422, + [SMALL_STATE(765)] = 59465, + [SMALL_STATE(766)] = 59546, + [SMALL_STATE(767)] = 59629, + [SMALL_STATE(768)] = 59672, + [SMALL_STATE(769)] = 59715, + [SMALL_STATE(770)] = 59758, + [SMALL_STATE(771)] = 59801, + [SMALL_STATE(772)] = 59844, + [SMALL_STATE(773)] = 59887, + [SMALL_STATE(774)] = 59930, + [SMALL_STATE(775)] = 59973, + [SMALL_STATE(776)] = 60030, + [SMALL_STATE(777)] = 60073, + [SMALL_STATE(778)] = 60130, + [SMALL_STATE(779)] = 60173, + [SMALL_STATE(780)] = 60216, + [SMALL_STATE(781)] = 60259, + [SMALL_STATE(782)] = 60302, + [SMALL_STATE(783)] = 60345, + [SMALL_STATE(784)] = 60388, + [SMALL_STATE(785)] = 60431, + [SMALL_STATE(786)] = 60474, + [SMALL_STATE(787)] = 60517, + [SMALL_STATE(788)] = 60560, + [SMALL_STATE(789)] = 60603, + [SMALL_STATE(790)] = 60646, + [SMALL_STATE(791)] = 60689, + [SMALL_STATE(792)] = 60732, + [SMALL_STATE(793)] = 60775, + [SMALL_STATE(794)] = 60818, + [SMALL_STATE(795)] = 60861, + [SMALL_STATE(796)] = 60942, + [SMALL_STATE(797)] = 60985, + [SMALL_STATE(798)] = 61028, + [SMALL_STATE(799)] = 61071, + [SMALL_STATE(800)] = 61114, + [SMALL_STATE(801)] = 61157, + [SMALL_STATE(802)] = 61217, + [SMALL_STATE(803)] = 61277, + [SMALL_STATE(804)] = 61349, + [SMALL_STATE(805)] = 61421, + [SMALL_STATE(806)] = 61477, + [SMALL_STATE(807)] = 61549, + [SMALL_STATE(808)] = 61621, + [SMALL_STATE(809)] = 61693, + [SMALL_STATE(810)] = 61765, + [SMALL_STATE(811)] = 61825, + [SMALL_STATE(812)] = 61897, + [SMALL_STATE(813)] = 61957, + [SMALL_STATE(814)] = 62029, + [SMALL_STATE(815)] = 62073, + [SMALL_STATE(816)] = 62133, + [SMALL_STATE(817)] = 62205, + [SMALL_STATE(818)] = 62247, + [SMALL_STATE(819)] = 62293, + [SMALL_STATE(820)] = 62351, + [SMALL_STATE(821)] = 62407, + [SMALL_STATE(822)] = 62461, + [SMALL_STATE(823)] = 62513, + [SMALL_STATE(824)] = 62585, + [SMALL_STATE(825)] = 62635, + [SMALL_STATE(826)] = 62707, + [SMALL_STATE(827)] = 62779, + [SMALL_STATE(828)] = 62851, + [SMALL_STATE(829)] = 62907, + [SMALL_STATE(830)] = 62963, + [SMALL_STATE(831)] = 63035, + [SMALL_STATE(832)] = 63107, + [SMALL_STATE(833)] = 63184, + [SMALL_STATE(834)] = 63237, + [SMALL_STATE(835)] = 63290, + [SMALL_STATE(836)] = 63367, + [SMALL_STATE(837)] = 63444, + [SMALL_STATE(838)] = 63519, + [SMALL_STATE(839)] = 63592, + [SMALL_STATE(840)] = 63669, + [SMALL_STATE(841)] = 63722, + [SMALL_STATE(842)] = 63799, + [SMALL_STATE(843)] = 63874, + [SMALL_STATE(844)] = 63951, + [SMALL_STATE(845)] = 64028, + [SMALL_STATE(846)] = 64102, + [SMALL_STATE(847)] = 64176, + [SMALL_STATE(848)] = 64250, + [SMALL_STATE(849)] = 64324, + [SMALL_STATE(850)] = 64398, + [SMALL_STATE(851)] = 64472, + [SMALL_STATE(852)] = 64546, + [SMALL_STATE(853)] = 64620, + [SMALL_STATE(854)] = 64663, + [SMALL_STATE(855)] = 64726, + [SMALL_STATE(856)] = 64797, + [SMALL_STATE(857)] = 64860, + [SMALL_STATE(858)] = 64931, + [SMALL_STATE(859)] = 65002, + [SMALL_STATE(860)] = 65065, + [SMALL_STATE(861)] = 65136, + [SMALL_STATE(862)] = 65199, + [SMALL_STATE(863)] = 65256, + [SMALL_STATE(864)] = 65327, + [SMALL_STATE(865)] = 65398, + [SMALL_STATE(866)] = 65469, + [SMALL_STATE(867)] = 65532, + [SMALL_STATE(868)] = 65575, + [SMALL_STATE(869)] = 65646, + [SMALL_STATE(870)] = 65717, + [SMALL_STATE(871)] = 65760, + [SMALL_STATE(872)] = 65831, + [SMALL_STATE(873)] = 65902, + [SMALL_STATE(874)] = 65965, + [SMALL_STATE(875)] = 66036, + [SMALL_STATE(876)] = 66099, + [SMALL_STATE(877)] = 66170, + [SMALL_STATE(878)] = 66241, + [SMALL_STATE(879)] = 66312, + [SMALL_STATE(880)] = 66383, + [SMALL_STATE(881)] = 66454, + [SMALL_STATE(882)] = 66514, + [SMALL_STATE(883)] = 66580, + [SMALL_STATE(884)] = 66648, + [SMALL_STATE(885)] = 66714, + [SMALL_STATE(886)] = 66752, + [SMALL_STATE(887)] = 66790, + [SMALL_STATE(888)] = 66856, + [SMALL_STATE(889)] = 66898, + [SMALL_STATE(890)] = 66964, + [SMALL_STATE(891)] = 67024, + [SMALL_STATE(892)] = 67090, + [SMALL_STATE(893)] = 67156, + [SMALL_STATE(894)] = 67198, + [SMALL_STATE(895)] = 67258, + [SMALL_STATE(896)] = 67318, + [SMALL_STATE(897)] = 67378, + [SMALL_STATE(898)] = 67438, + [SMALL_STATE(899)] = 67476, + [SMALL_STATE(900)] = 67542, + [SMALL_STATE(901)] = 67580, + [SMALL_STATE(902)] = 67640, + [SMALL_STATE(903)] = 67678, + [SMALL_STATE(904)] = 67744, + [SMALL_STATE(905)] = 67782, + [SMALL_STATE(906)] = 67850, + [SMALL_STATE(907)] = 67910, + [SMALL_STATE(908)] = 67948, + [SMALL_STATE(909)] = 67990, + [SMALL_STATE(910)] = 68028, + [SMALL_STATE(911)] = 68070, + [SMALL_STATE(912)] = 68108, + [SMALL_STATE(913)] = 68146, + [SMALL_STATE(914)] = 68212, + [SMALL_STATE(915)] = 68278, + [SMALL_STATE(916)] = 68316, + [SMALL_STATE(917)] = 68382, + [SMALL_STATE(918)] = 68420, + [SMALL_STATE(919)] = 68486, + [SMALL_STATE(920)] = 68524, + [SMALL_STATE(921)] = 68562, + [SMALL_STATE(922)] = 68600, + [SMALL_STATE(923)] = 68666, + [SMALL_STATE(924)] = 68704, + [SMALL_STATE(925)] = 68751, + [SMALL_STATE(926)] = 68788, + [SMALL_STATE(927)] = 68825, + [SMALL_STATE(928)] = 68880, + [SMALL_STATE(929)] = 68943, + [SMALL_STATE(930)] = 68980, + [SMALL_STATE(931)] = 69043, + [SMALL_STATE(932)] = 69082, + [SMALL_STATE(933)] = 69147, + [SMALL_STATE(934)] = 69210, + [SMALL_STATE(935)] = 69271, + [SMALL_STATE(936)] = 69310, + [SMALL_STATE(937)] = 69347, + [SMALL_STATE(938)] = 69410, + [SMALL_STATE(939)] = 69449, + [SMALL_STATE(940)] = 69514, + [SMALL_STATE(941)] = 69559, + [SMALL_STATE(942)] = 69614, + [SMALL_STATE(943)] = 69677, + [SMALL_STATE(944)] = 69718, + [SMALL_STATE(945)] = 69773, + [SMALL_STATE(946)] = 69828, + [SMALL_STATE(947)] = 69883, + [SMALL_STATE(948)] = 69946, + [SMALL_STATE(949)] = 69999, + [SMALL_STATE(950)] = 70062, + [SMALL_STATE(951)] = 70113, + [SMALL_STATE(952)] = 70162, + [SMALL_STATE(953)] = 70225, + [SMALL_STATE(954)] = 70280, + [SMALL_STATE(955)] = 70335, + [SMALL_STATE(956)] = 70372, + [SMALL_STATE(957)] = 70435, + [SMALL_STATE(958)] = 70498, + [SMALL_STATE(959)] = 70561, + [SMALL_STATE(960)] = 70624, + [SMALL_STATE(961)] = 70661, + [SMALL_STATE(962)] = 70716, + [SMALL_STATE(963)] = 70753, + [SMALL_STATE(964)] = 70816, + [SMALL_STATE(965)] = 70881, + [SMALL_STATE(966)] = 70936, + [SMALL_STATE(967)] = 70973, + [SMALL_STATE(968)] = 71027, + [SMALL_STATE(969)] = 71081, + [SMALL_STATE(970)] = 71117, + [SMALL_STATE(971)] = 71153, + [SMALL_STATE(972)] = 71189, + [SMALL_STATE(973)] = 71243, + [SMALL_STATE(974)] = 71279, + [SMALL_STATE(975)] = 71333, + [SMALL_STATE(976)] = 71387, + [SMALL_STATE(977)] = 71447, + [SMALL_STATE(978)] = 71501, + [SMALL_STATE(979)] = 71537, + [SMALL_STATE(980)] = 71591, + [SMALL_STATE(981)] = 71651, + [SMALL_STATE(982)] = 71687, + [SMALL_STATE(983)] = 71741, + [SMALL_STATE(984)] = 71777, + [SMALL_STATE(985)] = 71825, + [SMALL_STATE(986)] = 71861, + [SMALL_STATE(987)] = 71915, + [SMALL_STATE(988)] = 71951, + [SMALL_STATE(989)] = 72011, + [SMALL_STATE(990)] = 72071, + [SMALL_STATE(991)] = 72131, + [SMALL_STATE(992)] = 72191, + [SMALL_STATE(993)] = 72237, + [SMALL_STATE(994)] = 72287, + [SMALL_STATE(995)] = 72347, + [SMALL_STATE(996)] = 72383, + [SMALL_STATE(997)] = 72437, + [SMALL_STATE(998)] = 72491, + [SMALL_STATE(999)] = 72545, + [SMALL_STATE(1000)] = 72599, + [SMALL_STATE(1001)] = 72653, + [SMALL_STATE(1002)] = 72707, + [SMALL_STATE(1003)] = 72747, + [SMALL_STATE(1004)] = 72801, + [SMALL_STATE(1005)] = 72861, + [SMALL_STATE(1006)] = 72913, + [SMALL_STATE(1007)] = 72973, + [SMALL_STATE(1008)] = 73027, + [SMALL_STATE(1009)] = 73081, + [SMALL_STATE(1010)] = 73135, + [SMALL_STATE(1011)] = 73189, + [SMALL_STATE(1012)] = 73243, + [SMALL_STATE(1013)] = 73303, + [SMALL_STATE(1014)] = 73357, + [SMALL_STATE(1015)] = 73411, + [SMALL_STATE(1016)] = 73447, + [SMALL_STATE(1017)] = 73501, + [SMALL_STATE(1018)] = 73545, + [SMALL_STATE(1019)] = 73599, + [SMALL_STATE(1020)] = 73653, + [SMALL_STATE(1021)] = 73713, + [SMALL_STATE(1022)] = 73767, + [SMALL_STATE(1023)] = 73821, + [SMALL_STATE(1024)] = 73857, + [SMALL_STATE(1025)] = 73895, + [SMALL_STATE(1026)] = 73955, + [SMALL_STATE(1027)] = 74009, + [SMALL_STATE(1028)] = 74069, + [SMALL_STATE(1029)] = 74109, + [SMALL_STATE(1030)] = 74163, + [SMALL_STATE(1031)] = 74199, + [SMALL_STATE(1032)] = 74259, + [SMALL_STATE(1033)] = 74319, + [SMALL_STATE(1034)] = 74355, + [SMALL_STATE(1035)] = 74415, + [SMALL_STATE(1036)] = 74451, + [SMALL_STATE(1037)] = 74505, + [SMALL_STATE(1038)] = 74565, + [SMALL_STATE(1039)] = 74619, + [SMALL_STATE(1040)] = 74655, + [SMALL_STATE(1041)] = 74715, + [SMALL_STATE(1042)] = 74751, + [SMALL_STATE(1043)] = 74787, + [SMALL_STATE(1044)] = 74841, + [SMALL_STATE(1045)] = 74877, + [SMALL_STATE(1046)] = 74913, + [SMALL_STATE(1047)] = 74967, + [SMALL_STATE(1048)] = 75003, + [SMALL_STATE(1049)] = 75063, + [SMALL_STATE(1050)] = 75120, + [SMALL_STATE(1051)] = 75177, + [SMALL_STATE(1052)] = 75234, + [SMALL_STATE(1053)] = 75271, + [SMALL_STATE(1054)] = 75328, + [SMALL_STATE(1055)] = 75363, + [SMALL_STATE(1056)] = 75420, + [SMALL_STATE(1057)] = 75477, + [SMALL_STATE(1058)] = 75534, + [SMALL_STATE(1059)] = 75591, + [SMALL_STATE(1060)] = 75628, + [SMALL_STATE(1061)] = 75685, + [SMALL_STATE(1062)] = 75742, + [SMALL_STATE(1063)] = 75776, + [SMALL_STATE(1064)] = 75814, + [SMALL_STATE(1065)] = 75848, + [SMALL_STATE(1066)] = 75882, + [SMALL_STATE(1067)] = 75916, + [SMALL_STATE(1068)] = 75950, + [SMALL_STATE(1069)] = 75984, + [SMALL_STATE(1070)] = 76018, + [SMALL_STATE(1071)] = 76052, + [SMALL_STATE(1072)] = 76086, + [SMALL_STATE(1073)] = 76120, + [SMALL_STATE(1074)] = 76154, + [SMALL_STATE(1075)] = 76188, + [SMALL_STATE(1076)] = 76222, + [SMALL_STATE(1077)] = 76256, + [SMALL_STATE(1078)] = 76290, + [SMALL_STATE(1079)] = 76324, + [SMALL_STATE(1080)] = 76358, + [SMALL_STATE(1081)] = 76392, + [SMALL_STATE(1082)] = 76426, + [SMALL_STATE(1083)] = 76474, + [SMALL_STATE(1084)] = 76520, + [SMALL_STATE(1085)] = 76554, + [SMALL_STATE(1086)] = 76598, + [SMALL_STATE(1087)] = 76640, + [SMALL_STATE(1088)] = 76674, + [SMALL_STATE(1089)] = 76724, + [SMALL_STATE(1090)] = 76758, + [SMALL_STATE(1091)] = 76792, + [SMALL_STATE(1092)] = 76826, + [SMALL_STATE(1093)] = 76876, + [SMALL_STATE(1094)] = 76910, + [SMALL_STATE(1095)] = 76952, + [SMALL_STATE(1096)] = 76986, + [SMALL_STATE(1097)] = 77018, + [SMALL_STATE(1098)] = 77052, + [SMALL_STATE(1099)] = 77086, + [SMALL_STATE(1100)] = 77124, + [SMALL_STATE(1101)] = 77172, + [SMALL_STATE(1102)] = 77222, + [SMALL_STATE(1103)] = 77268, + [SMALL_STATE(1104)] = 77312, + [SMALL_STATE(1105)] = 77346, + [SMALL_STATE(1106)] = 77393, + [SMALL_STATE(1107)] = 77440, + [SMALL_STATE(1108)] = 77487, + [SMALL_STATE(1109)] = 77534, + [SMALL_STATE(1110)] = 77581, + [SMALL_STATE(1111)] = 77628, + [SMALL_STATE(1112)] = 77672, + [SMALL_STATE(1113)] = 77700, + [SMALL_STATE(1114)] = 77744, + [SMALL_STATE(1115)] = 77788, + [SMALL_STATE(1116)] = 77832, + [SMALL_STATE(1117)] = 77876, + [SMALL_STATE(1118)] = 77920, + [SMALL_STATE(1119)] = 77946, + [SMALL_STATE(1120)] = 77990, + [SMALL_STATE(1121)] = 78034, + [SMALL_STATE(1122)] = 78078, + [SMALL_STATE(1123)] = 78108, + [SMALL_STATE(1124)] = 78152, + [SMALL_STATE(1125)] = 78195, + [SMALL_STATE(1126)] = 78238, + [SMALL_STATE(1127)] = 78279, + [SMALL_STATE(1128)] = 78304, + [SMALL_STATE(1129)] = 78345, + [SMALL_STATE(1130)] = 78386, + [SMALL_STATE(1131)] = 78427, + [SMALL_STATE(1132)] = 78468, + [SMALL_STATE(1133)] = 78509, + [SMALL_STATE(1134)] = 78538, + [SMALL_STATE(1135)] = 78579, + [SMALL_STATE(1136)] = 78620, + [SMALL_STATE(1137)] = 78663, + [SMALL_STATE(1138)] = 78704, + [SMALL_STATE(1139)] = 78745, + [SMALL_STATE(1140)] = 78786, + [SMALL_STATE(1141)] = 78824, + [SMALL_STATE(1142)] = 78862, + [SMALL_STATE(1143)] = 78902, + [SMALL_STATE(1144)] = 78940, + [SMALL_STATE(1145)] = 78978, + [SMALL_STATE(1146)] = 79016, + [SMALL_STATE(1147)] = 79054, + [SMALL_STATE(1148)] = 79094, + [SMALL_STATE(1149)] = 79132, + [SMALL_STATE(1150)] = 79170, + [SMALL_STATE(1151)] = 79208, + [SMALL_STATE(1152)] = 79246, + [SMALL_STATE(1153)] = 79284, + [SMALL_STATE(1154)] = 79322, + [SMALL_STATE(1155)] = 79360, + [SMALL_STATE(1156)] = 79398, + [SMALL_STATE(1157)] = 79422, + [SMALL_STATE(1158)] = 79446, + [SMALL_STATE(1159)] = 79484, + [SMALL_STATE(1160)] = 79522, + [SMALL_STATE(1161)] = 79546, + [SMALL_STATE(1162)] = 79586, + [SMALL_STATE(1163)] = 79624, + [SMALL_STATE(1164)] = 79648, + [SMALL_STATE(1165)] = 79672, + [SMALL_STATE(1166)] = 79712, + [SMALL_STATE(1167)] = 79750, + [SMALL_STATE(1168)] = 79788, + [SMALL_STATE(1169)] = 79828, + [SMALL_STATE(1170)] = 79866, + [SMALL_STATE(1171)] = 79904, + [SMALL_STATE(1172)] = 79942, + [SMALL_STATE(1173)] = 79980, + [SMALL_STATE(1174)] = 80020, + [SMALL_STATE(1175)] = 80058, + [SMALL_STATE(1176)] = 80096, + [SMALL_STATE(1177)] = 80120, + [SMALL_STATE(1178)] = 80160, + [SMALL_STATE(1179)] = 80198, + [SMALL_STATE(1180)] = 80222, + [SMALL_STATE(1181)] = 80246, + [SMALL_STATE(1182)] = 80284, + [SMALL_STATE(1183)] = 80322, + [SMALL_STATE(1184)] = 80346, + [SMALL_STATE(1185)] = 80370, + [SMALL_STATE(1186)] = 80394, + [SMALL_STATE(1187)] = 80418, + [SMALL_STATE(1188)] = 80456, + [SMALL_STATE(1189)] = 80479, + [SMALL_STATE(1190)] = 80502, + [SMALL_STATE(1191)] = 80525, + [SMALL_STATE(1192)] = 80548, + [SMALL_STATE(1193)] = 80571, + [SMALL_STATE(1194)] = 80594, + [SMALL_STATE(1195)] = 80617, + [SMALL_STATE(1196)] = 80640, + [SMALL_STATE(1197)] = 80663, + [SMALL_STATE(1198)] = 80686, + [SMALL_STATE(1199)] = 80723, + [SMALL_STATE(1200)] = 80746, + [SMALL_STATE(1201)] = 80769, + [SMALL_STATE(1202)] = 80806, + [SMALL_STATE(1203)] = 80829, + [SMALL_STATE(1204)] = 80852, + [SMALL_STATE(1205)] = 80879, + [SMALL_STATE(1206)] = 80902, + [SMALL_STATE(1207)] = 80925, + [SMALL_STATE(1208)] = 80948, + [SMALL_STATE(1209)] = 80971, + [SMALL_STATE(1210)] = 80994, + [SMALL_STATE(1211)] = 81017, + [SMALL_STATE(1212)] = 81044, + [SMALL_STATE(1213)] = 81067, + [SMALL_STATE(1214)] = 81094, + [SMALL_STATE(1215)] = 81117, + [SMALL_STATE(1216)] = 81140, + [SMALL_STATE(1217)] = 81167, + [SMALL_STATE(1218)] = 81190, + [SMALL_STATE(1219)] = 81213, + [SMALL_STATE(1220)] = 81236, + [SMALL_STATE(1221)] = 81273, + [SMALL_STATE(1222)] = 81296, + [SMALL_STATE(1223)] = 81333, + [SMALL_STATE(1224)] = 81356, + [SMALL_STATE(1225)] = 81384, + [SMALL_STATE(1226)] = 81412, + [SMALL_STATE(1227)] = 81436, + [SMALL_STATE(1228)] = 81461, + [SMALL_STATE(1229)] = 81482, + [SMALL_STATE(1230)] = 81503, + [SMALL_STATE(1231)] = 81544, + [SMALL_STATE(1232)] = 81565, + [SMALL_STATE(1233)] = 81606, + [SMALL_STATE(1234)] = 81627, + [SMALL_STATE(1235)] = 81648, + [SMALL_STATE(1236)] = 81689, + [SMALL_STATE(1237)] = 81714, + [SMALL_STATE(1238)] = 81739, + [SMALL_STATE(1239)] = 81780, + [SMALL_STATE(1240)] = 81805, + [SMALL_STATE(1241)] = 81830, + [SMALL_STATE(1242)] = 81855, + [SMALL_STATE(1243)] = 81876, + [SMALL_STATE(1244)] = 81897, + [SMALL_STATE(1245)] = 81918, + [SMALL_STATE(1246)] = 81939, + [SMALL_STATE(1247)] = 81980, + [SMALL_STATE(1248)] = 82021, + [SMALL_STATE(1249)] = 82042, + [SMALL_STATE(1250)] = 82062, + [SMALL_STATE(1251)] = 82096, + [SMALL_STATE(1252)] = 82116, + [SMALL_STATE(1253)] = 82138, + [SMALL_STATE(1254)] = 82160, + [SMALL_STATE(1255)] = 82194, + [SMALL_STATE(1256)] = 82216, + [SMALL_STATE(1257)] = 82236, + [SMALL_STATE(1258)] = 82274, + [SMALL_STATE(1259)] = 82294, + [SMALL_STATE(1260)] = 82315, + [SMALL_STATE(1261)] = 82334, + [SMALL_STATE(1262)] = 82353, + [SMALL_STATE(1263)] = 82372, + [SMALL_STATE(1264)] = 82391, + [SMALL_STATE(1265)] = 82410, + [SMALL_STATE(1266)] = 82429, + [SMALL_STATE(1267)] = 82448, + [SMALL_STATE(1268)] = 82467, + [SMALL_STATE(1269)] = 82486, + [SMALL_STATE(1270)] = 82505, + [SMALL_STATE(1271)] = 82524, + [SMALL_STATE(1272)] = 82543, + [SMALL_STATE(1273)] = 82562, + [SMALL_STATE(1274)] = 82581, + [SMALL_STATE(1275)] = 82600, + [SMALL_STATE(1276)] = 82619, + [SMALL_STATE(1277)] = 82638, + [SMALL_STATE(1278)] = 82657, + [SMALL_STATE(1279)] = 82680, + [SMALL_STATE(1280)] = 82699, + [SMALL_STATE(1281)] = 82718, + [SMALL_STATE(1282)] = 82739, + [SMALL_STATE(1283)] = 82766, + [SMALL_STATE(1284)] = 82785, + [SMALL_STATE(1285)] = 82804, + [SMALL_STATE(1286)] = 82823, + [SMALL_STATE(1287)] = 82842, + [SMALL_STATE(1288)] = 82861, + [SMALL_STATE(1289)] = 82880, + [SMALL_STATE(1290)] = 82899, + [SMALL_STATE(1291)] = 82918, + [SMALL_STATE(1292)] = 82950, + [SMALL_STATE(1293)] = 82968, + [SMALL_STATE(1294)] = 83000, + [SMALL_STATE(1295)] = 83018, + [SMALL_STATE(1296)] = 83050, + [SMALL_STATE(1297)] = 83070, + [SMALL_STATE(1298)] = 83088, + [SMALL_STATE(1299)] = 83117, + [SMALL_STATE(1300)] = 83146, + [SMALL_STATE(1301)] = 83175, + [SMALL_STATE(1302)] = 83204, + [SMALL_STATE(1303)] = 83221, + [SMALL_STATE(1304)] = 83250, + [SMALL_STATE(1305)] = 83279, + [SMALL_STATE(1306)] = 83308, + [SMALL_STATE(1307)] = 83332, + [SMALL_STATE(1308)] = 83354, + [SMALL_STATE(1309)] = 83378, + [SMALL_STATE(1310)] = 83404, + [SMALL_STATE(1311)] = 83426, + [SMALL_STATE(1312)] = 83448, + [SMALL_STATE(1313)] = 83468, + [SMALL_STATE(1314)] = 83492, + [SMALL_STATE(1315)] = 83514, + [SMALL_STATE(1316)] = 83536, + [SMALL_STATE(1317)] = 83558, + [SMALL_STATE(1318)] = 83580, + [SMALL_STATE(1319)] = 83602, + [SMALL_STATE(1320)] = 83626, + [SMALL_STATE(1321)] = 83648, + [SMALL_STATE(1322)] = 83672, + [SMALL_STATE(1323)] = 83694, + [SMALL_STATE(1324)] = 83712, + [SMALL_STATE(1325)] = 83734, + [SMALL_STATE(1326)] = 83756, + [SMALL_STATE(1327)] = 83778, + [SMALL_STATE(1328)] = 83802, + [SMALL_STATE(1329)] = 83824, + [SMALL_STATE(1330)] = 83848, + [SMALL_STATE(1331)] = 83870, + [SMALL_STATE(1332)] = 83892, + [SMALL_STATE(1333)] = 83914, + [SMALL_STATE(1334)] = 83936, + [SMALL_STATE(1335)] = 83958, + [SMALL_STATE(1336)] = 83980, + [SMALL_STATE(1337)] = 84004, + [SMALL_STATE(1338)] = 84026, + [SMALL_STATE(1339)] = 84048, + [SMALL_STATE(1340)] = 84070, + [SMALL_STATE(1341)] = 84092, + [SMALL_STATE(1342)] = 84114, + [SMALL_STATE(1343)] = 84138, + [SMALL_STATE(1344)] = 84162, + [SMALL_STATE(1345)] = 84186, + [SMALL_STATE(1346)] = 84210, + [SMALL_STATE(1347)] = 84232, + [SMALL_STATE(1348)] = 84254, + [SMALL_STATE(1349)] = 84275, + [SMALL_STATE(1350)] = 84296, + [SMALL_STATE(1351)] = 84319, + [SMALL_STATE(1352)] = 84338, + [SMALL_STATE(1353)] = 84361, + [SMALL_STATE(1354)] = 84380, + [SMALL_STATE(1355)] = 84399, + [SMALL_STATE(1356)] = 84420, + [SMALL_STATE(1357)] = 84441, + [SMALL_STATE(1358)] = 84460, + [SMALL_STATE(1359)] = 84479, + [SMALL_STATE(1360)] = 84500, + [SMALL_STATE(1361)] = 84523, + [SMALL_STATE(1362)] = 84544, + [SMALL_STATE(1363)] = 84565, + [SMALL_STATE(1364)] = 84586, + [SMALL_STATE(1365)] = 84605, + [SMALL_STATE(1366)] = 84624, + [SMALL_STATE(1367)] = 84643, + [SMALL_STATE(1368)] = 84666, + [SMALL_STATE(1369)] = 84689, + [SMALL_STATE(1370)] = 84710, + [SMALL_STATE(1371)] = 84729, + [SMALL_STATE(1372)] = 84748, + [SMALL_STATE(1373)] = 84771, + [SMALL_STATE(1374)] = 84785, + [SMALL_STATE(1375)] = 84805, + [SMALL_STATE(1376)] = 84825, + [SMALL_STATE(1377)] = 84843, + [SMALL_STATE(1378)] = 84859, + [SMALL_STATE(1379)] = 84879, + [SMALL_STATE(1380)] = 84897, + [SMALL_STATE(1381)] = 84915, + [SMALL_STATE(1382)] = 84931, + [SMALL_STATE(1383)] = 84951, + [SMALL_STATE(1384)] = 84967, + [SMALL_STATE(1385)] = 84987, + [SMALL_STATE(1386)] = 85007, + [SMALL_STATE(1387)] = 85025, + [SMALL_STATE(1388)] = 85045, + [SMALL_STATE(1389)] = 85065, + [SMALL_STATE(1390)] = 85083, + [SMALL_STATE(1391)] = 85099, + [SMALL_STATE(1392)] = 85119, + [SMALL_STATE(1393)] = 85139, + [SMALL_STATE(1394)] = 85157, + [SMALL_STATE(1395)] = 85177, + [SMALL_STATE(1396)] = 85197, + [SMALL_STATE(1397)] = 85215, + [SMALL_STATE(1398)] = 85235, + [SMALL_STATE(1399)] = 85253, + [SMALL_STATE(1400)] = 85273, + [SMALL_STATE(1401)] = 85291, + [SMALL_STATE(1402)] = 85309, + [SMALL_STATE(1403)] = 85325, + [SMALL_STATE(1404)] = 85345, + [SMALL_STATE(1405)] = 85363, + [SMALL_STATE(1406)] = 85381, + [SMALL_STATE(1407)] = 85399, + [SMALL_STATE(1408)] = 85417, + [SMALL_STATE(1409)] = 85435, + [SMALL_STATE(1410)] = 85453, + [SMALL_STATE(1411)] = 85471, + [SMALL_STATE(1412)] = 85489, + [SMALL_STATE(1413)] = 85503, + [SMALL_STATE(1414)] = 85521, + [SMALL_STATE(1415)] = 85539, + [SMALL_STATE(1416)] = 85557, + [SMALL_STATE(1417)] = 85575, + [SMALL_STATE(1418)] = 85591, + [SMALL_STATE(1419)] = 85611, + [SMALL_STATE(1420)] = 85627, + [SMALL_STATE(1421)] = 85643, + [SMALL_STATE(1422)] = 85661, + [SMALL_STATE(1423)] = 85679, + [SMALL_STATE(1424)] = 85697, + [SMALL_STATE(1425)] = 85717, + [SMALL_STATE(1426)] = 85735, + [SMALL_STATE(1427)] = 85755, + [SMALL_STATE(1428)] = 85775, + [SMALL_STATE(1429)] = 85795, + [SMALL_STATE(1430)] = 85815, + [SMALL_STATE(1431)] = 85833, + [SMALL_STATE(1432)] = 85850, + [SMALL_STATE(1433)] = 85863, + [SMALL_STATE(1434)] = 85880, + [SMALL_STATE(1435)] = 85897, + [SMALL_STATE(1436)] = 85914, + [SMALL_STATE(1437)] = 85931, + [SMALL_STATE(1438)] = 85948, + [SMALL_STATE(1439)] = 85965, + [SMALL_STATE(1440)] = 85982, + [SMALL_STATE(1441)] = 85995, + [SMALL_STATE(1442)] = 86012, + [SMALL_STATE(1443)] = 86029, + [SMALL_STATE(1444)] = 86046, + [SMALL_STATE(1445)] = 86063, + [SMALL_STATE(1446)] = 86080, + [SMALL_STATE(1447)] = 86097, + [SMALL_STATE(1448)] = 86114, + [SMALL_STATE(1449)] = 86131, + [SMALL_STATE(1450)] = 86148, + [SMALL_STATE(1451)] = 86165, + [SMALL_STATE(1452)] = 86182, + [SMALL_STATE(1453)] = 86199, + [SMALL_STATE(1454)] = 86216, + [SMALL_STATE(1455)] = 86233, + [SMALL_STATE(1456)] = 86250, + [SMALL_STATE(1457)] = 86267, + [SMALL_STATE(1458)] = 86284, + [SMALL_STATE(1459)] = 86301, + [SMALL_STATE(1460)] = 86318, + [SMALL_STATE(1461)] = 86335, + [SMALL_STATE(1462)] = 86352, + [SMALL_STATE(1463)] = 86369, + [SMALL_STATE(1464)] = 86386, + [SMALL_STATE(1465)] = 86403, + [SMALL_STATE(1466)] = 86420, + [SMALL_STATE(1467)] = 86437, + [SMALL_STATE(1468)] = 86454, + [SMALL_STATE(1469)] = 86471, + [SMALL_STATE(1470)] = 86488, + [SMALL_STATE(1471)] = 86505, + [SMALL_STATE(1472)] = 86522, + [SMALL_STATE(1473)] = 86539, + [SMALL_STATE(1474)] = 86556, + [SMALL_STATE(1475)] = 86573, + [SMALL_STATE(1476)] = 86590, + [SMALL_STATE(1477)] = 86607, + [SMALL_STATE(1478)] = 86624, + [SMALL_STATE(1479)] = 86641, + [SMALL_STATE(1480)] = 86658, + [SMALL_STATE(1481)] = 86675, + [SMALL_STATE(1482)] = 86692, + [SMALL_STATE(1483)] = 86709, + [SMALL_STATE(1484)] = 86726, + [SMALL_STATE(1485)] = 86743, + [SMALL_STATE(1486)] = 86760, + [SMALL_STATE(1487)] = 86777, + [SMALL_STATE(1488)] = 86794, + [SMALL_STATE(1489)] = 86811, + [SMALL_STATE(1490)] = 86824, + [SMALL_STATE(1491)] = 86841, + [SMALL_STATE(1492)] = 86854, + [SMALL_STATE(1493)] = 86871, + [SMALL_STATE(1494)] = 86888, + [SMALL_STATE(1495)] = 86905, + [SMALL_STATE(1496)] = 86922, + [SMALL_STATE(1497)] = 86939, + [SMALL_STATE(1498)] = 86956, + [SMALL_STATE(1499)] = 86973, + [SMALL_STATE(1500)] = 86990, + [SMALL_STATE(1501)] = 87007, + [SMALL_STATE(1502)] = 87024, + [SMALL_STATE(1503)] = 87041, + [SMALL_STATE(1504)] = 87056, + [SMALL_STATE(1505)] = 87069, + [SMALL_STATE(1506)] = 87086, + [SMALL_STATE(1507)] = 87103, + [SMALL_STATE(1508)] = 87120, + [SMALL_STATE(1509)] = 87133, + [SMALL_STATE(1510)] = 87150, + [SMALL_STATE(1511)] = 87167, + [SMALL_STATE(1512)] = 87184, + [SMALL_STATE(1513)] = 87201, + [SMALL_STATE(1514)] = 87218, + [SMALL_STATE(1515)] = 87231, + [SMALL_STATE(1516)] = 87248, + [SMALL_STATE(1517)] = 87265, + [SMALL_STATE(1518)] = 87282, + [SMALL_STATE(1519)] = 87299, + [SMALL_STATE(1520)] = 87316, + [SMALL_STATE(1521)] = 87333, + [SMALL_STATE(1522)] = 87346, + [SMALL_STATE(1523)] = 87363, + [SMALL_STATE(1524)] = 87380, + [SMALL_STATE(1525)] = 87397, + [SMALL_STATE(1526)] = 87410, + [SMALL_STATE(1527)] = 87427, + [SMALL_STATE(1528)] = 87444, + [SMALL_STATE(1529)] = 87461, + [SMALL_STATE(1530)] = 87474, + [SMALL_STATE(1531)] = 87491, + [SMALL_STATE(1532)] = 87504, + [SMALL_STATE(1533)] = 87517, + [SMALL_STATE(1534)] = 87530, + [SMALL_STATE(1535)] = 87543, + [SMALL_STATE(1536)] = 87560, + [SMALL_STATE(1537)] = 87577, + [SMALL_STATE(1538)] = 87590, + [SMALL_STATE(1539)] = 87607, + [SMALL_STATE(1540)] = 87624, + [SMALL_STATE(1541)] = 87637, + [SMALL_STATE(1542)] = 87654, + [SMALL_STATE(1543)] = 87671, + [SMALL_STATE(1544)] = 87688, + [SMALL_STATE(1545)] = 87705, + [SMALL_STATE(1546)] = 87722, + [SMALL_STATE(1547)] = 87739, + [SMALL_STATE(1548)] = 87756, + [SMALL_STATE(1549)] = 87773, + [SMALL_STATE(1550)] = 87790, + [SMALL_STATE(1551)] = 87807, + [SMALL_STATE(1552)] = 87824, + [SMALL_STATE(1553)] = 87841, + [SMALL_STATE(1554)] = 87858, + [SMALL_STATE(1555)] = 87875, + [SMALL_STATE(1556)] = 87890, + [SMALL_STATE(1557)] = 87907, + [SMALL_STATE(1558)] = 87922, + [SMALL_STATE(1559)] = 87939, + [SMALL_STATE(1560)] = 87956, + [SMALL_STATE(1561)] = 87971, + [SMALL_STATE(1562)] = 87988, + [SMALL_STATE(1563)] = 88003, + [SMALL_STATE(1564)] = 88020, + [SMALL_STATE(1565)] = 88033, + [SMALL_STATE(1566)] = 88050, + [SMALL_STATE(1567)] = 88067, + [SMALL_STATE(1568)] = 88084, + [SMALL_STATE(1569)] = 88101, + [SMALL_STATE(1570)] = 88118, + [SMALL_STATE(1571)] = 88135, + [SMALL_STATE(1572)] = 88152, + [SMALL_STATE(1573)] = 88169, + [SMALL_STATE(1574)] = 88186, + [SMALL_STATE(1575)] = 88203, + [SMALL_STATE(1576)] = 88220, + [SMALL_STATE(1577)] = 88237, + [SMALL_STATE(1578)] = 88250, + [SMALL_STATE(1579)] = 88267, + [SMALL_STATE(1580)] = 88280, + [SMALL_STATE(1581)] = 88297, + [SMALL_STATE(1582)] = 88314, + [SMALL_STATE(1583)] = 88327, + [SMALL_STATE(1584)] = 88344, + [SMALL_STATE(1585)] = 88361, + [SMALL_STATE(1586)] = 88374, + [SMALL_STATE(1587)] = 88391, + [SMALL_STATE(1588)] = 88404, + [SMALL_STATE(1589)] = 88421, + [SMALL_STATE(1590)] = 88438, + [SMALL_STATE(1591)] = 88455, + [SMALL_STATE(1592)] = 88472, + [SMALL_STATE(1593)] = 88489, + [SMALL_STATE(1594)] = 88506, + [SMALL_STATE(1595)] = 88523, + [SMALL_STATE(1596)] = 88536, + [SMALL_STATE(1597)] = 88553, + [SMALL_STATE(1598)] = 88570, + [SMALL_STATE(1599)] = 88585, + [SMALL_STATE(1600)] = 88600, + [SMALL_STATE(1601)] = 88613, + [SMALL_STATE(1602)] = 88630, + [SMALL_STATE(1603)] = 88647, + [SMALL_STATE(1604)] = 88664, + [SMALL_STATE(1605)] = 88681, + [SMALL_STATE(1606)] = 88698, + [SMALL_STATE(1607)] = 88715, + [SMALL_STATE(1608)] = 88732, + [SMALL_STATE(1609)] = 88749, + [SMALL_STATE(1610)] = 88766, + [SMALL_STATE(1611)] = 88783, + [SMALL_STATE(1612)] = 88800, + [SMALL_STATE(1613)] = 88817, + [SMALL_STATE(1614)] = 88830, + [SMALL_STATE(1615)] = 88847, + [SMALL_STATE(1616)] = 88860, + [SMALL_STATE(1617)] = 88877, + [SMALL_STATE(1618)] = 88894, + [SMALL_STATE(1619)] = 88907, + [SMALL_STATE(1620)] = 88924, + [SMALL_STATE(1621)] = 88937, + [SMALL_STATE(1622)] = 88954, + [SMALL_STATE(1623)] = 88971, + [SMALL_STATE(1624)] = 88988, + [SMALL_STATE(1625)] = 89005, + [SMALL_STATE(1626)] = 89017, + [SMALL_STATE(1627)] = 89029, + [SMALL_STATE(1628)] = 89043, + [SMALL_STATE(1629)] = 89057, + [SMALL_STATE(1630)] = 89071, + [SMALL_STATE(1631)] = 89085, + [SMALL_STATE(1632)] = 89099, + [SMALL_STATE(1633)] = 89113, + [SMALL_STATE(1634)] = 89127, + [SMALL_STATE(1635)] = 89141, + [SMALL_STATE(1636)] = 89155, + [SMALL_STATE(1637)] = 89169, + [SMALL_STATE(1638)] = 89183, + [SMALL_STATE(1639)] = 89197, + [SMALL_STATE(1640)] = 89211, + [SMALL_STATE(1641)] = 89225, + [SMALL_STATE(1642)] = 89239, + [SMALL_STATE(1643)] = 89253, + [SMALL_STATE(1644)] = 89267, + [SMALL_STATE(1645)] = 89281, + [SMALL_STATE(1646)] = 89295, + [SMALL_STATE(1647)] = 89309, + [SMALL_STATE(1648)] = 89323, + [SMALL_STATE(1649)] = 89337, + [SMALL_STATE(1650)] = 89351, + [SMALL_STATE(1651)] = 89365, + [SMALL_STATE(1652)] = 89379, + [SMALL_STATE(1653)] = 89393, + [SMALL_STATE(1654)] = 89407, + [SMALL_STATE(1655)] = 89421, + [SMALL_STATE(1656)] = 89435, + [SMALL_STATE(1657)] = 89449, + [SMALL_STATE(1658)] = 89463, + [SMALL_STATE(1659)] = 89477, + [SMALL_STATE(1660)] = 89491, + [SMALL_STATE(1661)] = 89503, + [SMALL_STATE(1662)] = 89517, + [SMALL_STATE(1663)] = 89531, + [SMALL_STATE(1664)] = 89545, + [SMALL_STATE(1665)] = 89559, + [SMALL_STATE(1666)] = 89573, + [SMALL_STATE(1667)] = 89587, + [SMALL_STATE(1668)] = 89601, + [SMALL_STATE(1669)] = 89615, + [SMALL_STATE(1670)] = 89629, + [SMALL_STATE(1671)] = 89643, + [SMALL_STATE(1672)] = 89657, + [SMALL_STATE(1673)] = 89669, + [SMALL_STATE(1674)] = 89683, + [SMALL_STATE(1675)] = 89697, + [SMALL_STATE(1676)] = 89711, + [SMALL_STATE(1677)] = 89725, + [SMALL_STATE(1678)] = 89739, + [SMALL_STATE(1679)] = 89753, + [SMALL_STATE(1680)] = 89767, + [SMALL_STATE(1681)] = 89781, + [SMALL_STATE(1682)] = 89795, + [SMALL_STATE(1683)] = 89809, + [SMALL_STATE(1684)] = 89823, + [SMALL_STATE(1685)] = 89837, + [SMALL_STATE(1686)] = 89851, + [SMALL_STATE(1687)] = 89865, + [SMALL_STATE(1688)] = 89877, + [SMALL_STATE(1689)] = 89891, + [SMALL_STATE(1690)] = 89905, + [SMALL_STATE(1691)] = 89919, + [SMALL_STATE(1692)] = 89933, + [SMALL_STATE(1693)] = 89947, + [SMALL_STATE(1694)] = 89961, + [SMALL_STATE(1695)] = 89973, + [SMALL_STATE(1696)] = 89987, + [SMALL_STATE(1697)] = 89999, + [SMALL_STATE(1698)] = 90013, + [SMALL_STATE(1699)] = 90025, + [SMALL_STATE(1700)] = 90039, + [SMALL_STATE(1701)] = 90051, + [SMALL_STATE(1702)] = 90063, + [SMALL_STATE(1703)] = 90077, + [SMALL_STATE(1704)] = 90089, + [SMALL_STATE(1705)] = 90103, + [SMALL_STATE(1706)] = 90115, + [SMALL_STATE(1707)] = 90129, + [SMALL_STATE(1708)] = 90141, + [SMALL_STATE(1709)] = 90153, + [SMALL_STATE(1710)] = 90165, + [SMALL_STATE(1711)] = 90177, + [SMALL_STATE(1712)] = 90189, + [SMALL_STATE(1713)] = 90203, + [SMALL_STATE(1714)] = 90215, + [SMALL_STATE(1715)] = 90227, + [SMALL_STATE(1716)] = 90241, + [SMALL_STATE(1717)] = 90253, + [SMALL_STATE(1718)] = 90267, + [SMALL_STATE(1719)] = 90281, + [SMALL_STATE(1720)] = 90293, + [SMALL_STATE(1721)] = 90305, + [SMALL_STATE(1722)] = 90317, + [SMALL_STATE(1723)] = 90331, + [SMALL_STATE(1724)] = 90343, + [SMALL_STATE(1725)] = 90355, + [SMALL_STATE(1726)] = 90369, + [SMALL_STATE(1727)] = 90383, + [SMALL_STATE(1728)] = 90397, + [SMALL_STATE(1729)] = 90409, + [SMALL_STATE(1730)] = 90421, + [SMALL_STATE(1731)] = 90435, + [SMALL_STATE(1732)] = 90447, + [SMALL_STATE(1733)] = 90461, + [SMALL_STATE(1734)] = 90473, + [SMALL_STATE(1735)] = 90485, + [SMALL_STATE(1736)] = 90497, + [SMALL_STATE(1737)] = 90509, + [SMALL_STATE(1738)] = 90523, + [SMALL_STATE(1739)] = 90537, + [SMALL_STATE(1740)] = 90551, + [SMALL_STATE(1741)] = 90563, + [SMALL_STATE(1742)] = 90577, + [SMALL_STATE(1743)] = 90591, + [SMALL_STATE(1744)] = 90605, + [SMALL_STATE(1745)] = 90617, + [SMALL_STATE(1746)] = 90629, + [SMALL_STATE(1747)] = 90641, + [SMALL_STATE(1748)] = 90655, + [SMALL_STATE(1749)] = 90669, + [SMALL_STATE(1750)] = 90681, + [SMALL_STATE(1751)] = 90693, + [SMALL_STATE(1752)] = 90705, + [SMALL_STATE(1753)] = 90717, + [SMALL_STATE(1754)] = 90729, + [SMALL_STATE(1755)] = 90741, + [SMALL_STATE(1756)] = 90753, + [SMALL_STATE(1757)] = 90765, + [SMALL_STATE(1758)] = 90777, + [SMALL_STATE(1759)] = 90789, + [SMALL_STATE(1760)] = 90801, + [SMALL_STATE(1761)] = 90815, + [SMALL_STATE(1762)] = 90829, + [SMALL_STATE(1763)] = 90841, + [SMALL_STATE(1764)] = 90853, + [SMALL_STATE(1765)] = 90867, + [SMALL_STATE(1766)] = 90879, + [SMALL_STATE(1767)] = 90891, + [SMALL_STATE(1768)] = 90905, + [SMALL_STATE(1769)] = 90917, + [SMALL_STATE(1770)] = 90929, + [SMALL_STATE(1771)] = 90943, + [SMALL_STATE(1772)] = 90957, + [SMALL_STATE(1773)] = 90971, + [SMALL_STATE(1774)] = 90985, + [SMALL_STATE(1775)] = 90999, + [SMALL_STATE(1776)] = 91013, + [SMALL_STATE(1777)] = 91024, + [SMALL_STATE(1778)] = 91035, + [SMALL_STATE(1779)] = 91046, + [SMALL_STATE(1780)] = 91057, + [SMALL_STATE(1781)] = 91068, + [SMALL_STATE(1782)] = 91079, + [SMALL_STATE(1783)] = 91090, + [SMALL_STATE(1784)] = 91101, + [SMALL_STATE(1785)] = 91112, + [SMALL_STATE(1786)] = 91123, + [SMALL_STATE(1787)] = 91134, + [SMALL_STATE(1788)] = 91145, + [SMALL_STATE(1789)] = 91156, + [SMALL_STATE(1790)] = 91167, + [SMALL_STATE(1791)] = 91178, + [SMALL_STATE(1792)] = 91189, + [SMALL_STATE(1793)] = 91200, + [SMALL_STATE(1794)] = 91211, + [SMALL_STATE(1795)] = 91222, + [SMALL_STATE(1796)] = 91233, + [SMALL_STATE(1797)] = 91244, + [SMALL_STATE(1798)] = 91255, + [SMALL_STATE(1799)] = 91266, + [SMALL_STATE(1800)] = 91277, + [SMALL_STATE(1801)] = 91288, + [SMALL_STATE(1802)] = 91299, + [SMALL_STATE(1803)] = 91310, + [SMALL_STATE(1804)] = 91321, + [SMALL_STATE(1805)] = 91332, + [SMALL_STATE(1806)] = 91343, + [SMALL_STATE(1807)] = 91354, + [SMALL_STATE(1808)] = 91365, + [SMALL_STATE(1809)] = 91376, + [SMALL_STATE(1810)] = 91387, + [SMALL_STATE(1811)] = 91398, + [SMALL_STATE(1812)] = 91409, + [SMALL_STATE(1813)] = 91420, + [SMALL_STATE(1814)] = 91431, + [SMALL_STATE(1815)] = 91442, + [SMALL_STATE(1816)] = 91453, + [SMALL_STATE(1817)] = 91464, + [SMALL_STATE(1818)] = 91475, + [SMALL_STATE(1819)] = 91486, + [SMALL_STATE(1820)] = 91497, + [SMALL_STATE(1821)] = 91508, + [SMALL_STATE(1822)] = 91519, + [SMALL_STATE(1823)] = 91530, + [SMALL_STATE(1824)] = 91541, + [SMALL_STATE(1825)] = 91552, + [SMALL_STATE(1826)] = 91563, + [SMALL_STATE(1827)] = 91574, + [SMALL_STATE(1828)] = 91585, + [SMALL_STATE(1829)] = 91596, + [SMALL_STATE(1830)] = 91607, + [SMALL_STATE(1831)] = 91618, + [SMALL_STATE(1832)] = 91629, + [SMALL_STATE(1833)] = 91640, + [SMALL_STATE(1834)] = 91651, + [SMALL_STATE(1835)] = 91662, + [SMALL_STATE(1836)] = 91673, + [SMALL_STATE(1837)] = 91684, + [SMALL_STATE(1838)] = 91695, + [SMALL_STATE(1839)] = 91706, + [SMALL_STATE(1840)] = 91717, + [SMALL_STATE(1841)] = 91728, + [SMALL_STATE(1842)] = 91739, + [SMALL_STATE(1843)] = 91750, + [SMALL_STATE(1844)] = 91761, + [SMALL_STATE(1845)] = 91772, + [SMALL_STATE(1846)] = 91783, + [SMALL_STATE(1847)] = 91794, + [SMALL_STATE(1848)] = 91805, + [SMALL_STATE(1849)] = 91816, + [SMALL_STATE(1850)] = 91827, + [SMALL_STATE(1851)] = 91838, + [SMALL_STATE(1852)] = 91849, + [SMALL_STATE(1853)] = 91860, + [SMALL_STATE(1854)] = 91871, + [SMALL_STATE(1855)] = 91882, + [SMALL_STATE(1856)] = 91893, + [SMALL_STATE(1857)] = 91904, + [SMALL_STATE(1858)] = 91915, + [SMALL_STATE(1859)] = 91926, + [SMALL_STATE(1860)] = 91937, + [SMALL_STATE(1861)] = 91948, + [SMALL_STATE(1862)] = 91959, + [SMALL_STATE(1863)] = 91970, + [SMALL_STATE(1864)] = 91981, + [SMALL_STATE(1865)] = 91992, + [SMALL_STATE(1866)] = 92003, + [SMALL_STATE(1867)] = 92014, + [SMALL_STATE(1868)] = 92025, + [SMALL_STATE(1869)] = 92036, + [SMALL_STATE(1870)] = 92047, + [SMALL_STATE(1871)] = 92058, + [SMALL_STATE(1872)] = 92069, + [SMALL_STATE(1873)] = 92080, + [SMALL_STATE(1874)] = 92091, + [SMALL_STATE(1875)] = 92102, + [SMALL_STATE(1876)] = 92113, + [SMALL_STATE(1877)] = 92124, + [SMALL_STATE(1878)] = 92135, + [SMALL_STATE(1879)] = 92146, + [SMALL_STATE(1880)] = 92157, + [SMALL_STATE(1881)] = 92168, + [SMALL_STATE(1882)] = 92179, + [SMALL_STATE(1883)] = 92190, + [SMALL_STATE(1884)] = 92201, + [SMALL_STATE(1885)] = 92212, + [SMALL_STATE(1886)] = 92223, + [SMALL_STATE(1887)] = 92234, + [SMALL_STATE(1888)] = 92245, + [SMALL_STATE(1889)] = 92256, + [SMALL_STATE(1890)] = 92267, + [SMALL_STATE(1891)] = 92278, + [SMALL_STATE(1892)] = 92289, + [SMALL_STATE(1893)] = 92300, + [SMALL_STATE(1894)] = 92311, + [SMALL_STATE(1895)] = 92322, + [SMALL_STATE(1896)] = 92333, + [SMALL_STATE(1897)] = 92344, + [SMALL_STATE(1898)] = 92355, + [SMALL_STATE(1899)] = 92366, + [SMALL_STATE(1900)] = 92377, + [SMALL_STATE(1901)] = 92388, + [SMALL_STATE(1902)] = 92399, + [SMALL_STATE(1903)] = 92410, + [SMALL_STATE(1904)] = 92421, + [SMALL_STATE(1905)] = 92432, + [SMALL_STATE(1906)] = 92443, + [SMALL_STATE(1907)] = 92454, + [SMALL_STATE(1908)] = 92465, + [SMALL_STATE(1909)] = 92476, + [SMALL_STATE(1910)] = 92487, + [SMALL_STATE(1911)] = 92498, + [SMALL_STATE(1912)] = 92509, + [SMALL_STATE(1913)] = 92520, + [SMALL_STATE(1914)] = 92531, + [SMALL_STATE(1915)] = 92542, + [SMALL_STATE(1916)] = 92553, + [SMALL_STATE(1917)] = 92564, + [SMALL_STATE(1918)] = 92575, + [SMALL_STATE(1919)] = 92586, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -88202,2070 +84064,2017 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_echo, 1), [67] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_echo, 1), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1551), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1672), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1676), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1383), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1687), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1950), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(276), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(341), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(543), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1471), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(125), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(124), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(374), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(286), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(895), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(922), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(887), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(534), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1416), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1919), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1373), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), - [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(117), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1950), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(276), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(341), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(543), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1696), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(125), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(124), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(374), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(286), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(895), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(922), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(887), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(534), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1373), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(230), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(120), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(120), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(118), - [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(116), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(117), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1950), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(276), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(341), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(543), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1696), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(125), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(124), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(374), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(286), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(895), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(922), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(887), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(534), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1373), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(230), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(120), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(120), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(118), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(116), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1503), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1656), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1635), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1308), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1636), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(256), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(411), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(527), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1426), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1638), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(333), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(271), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(849), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(855), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(844), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1322), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(136), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(28), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1913), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(256), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(411), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(527), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1730), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(78), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(77), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(333), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(271), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(849), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(855), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(844), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(526), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1322), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(136), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(71), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(71), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(67), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(64), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(28), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1913), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(256), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(411), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(527), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1730), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(78), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(77), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(333), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(271), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(849), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(855), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(844), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(526), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1322), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(136), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(71), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(71), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(67), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(64), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(111), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1822), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(292), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(467), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(570), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1741), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(514), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(512), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(328), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(293), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(894), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(921), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(885), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(563), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1357), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(582), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(235), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(235), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(128), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(236), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 21), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 21), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 20), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 20), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 31), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 31), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 46), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 46), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 22), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 22), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 8), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 8), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [634] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1753), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 72), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 72), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 68), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 68), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 9), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 9), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 41), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 41), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [678] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1795), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 19), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 19), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 14), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 14), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 4, .production_id = 14), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 4, .production_id = 14), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 34), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 34), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 40), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 40), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 5), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 5), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [393] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1684), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(32), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1780), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(269), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(378), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(502), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1640), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(480), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(478), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(426), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(266), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(852), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(876), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(841), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(483), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1315), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(544), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(195), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(195), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(109), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(194), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 23), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 23), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 33), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 33), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 8), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 8), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 48), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 48), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 21), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 21), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 22), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 22), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 43), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 43), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, .production_id = 13), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, .production_id = 13), + [616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1651), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 74), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 74), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 9), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 9), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 60), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 60), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 70), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 70), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 54), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 54), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 42), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 42), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 36), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 36), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 4, .production_id = 15), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 4, .production_id = 15), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 15), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 15), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 20), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 20), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 15), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 15), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 15), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 15), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo, 2), [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo, 2), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 52), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 52), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 14), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 14), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 14), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 14), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 57), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 57), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 67), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 67), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 17), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 17), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 5, .production_id = 51), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 5, .production_id = 51), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 36), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 36), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 38), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 5), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 5), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 38), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 38), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 5, .production_id = 53), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 5, .production_id = 53), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 18), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 18), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 40), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [894] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1689), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 2, .production_id = 40), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 2, .production_id = 38), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1759), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(84), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(84), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1502] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1689), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1630] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1708), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 9), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 9), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 70), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 70), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 60), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 60), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 21), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 21), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1850), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 3), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1785] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1694), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 2), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, .production_id = 2), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 22), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 22), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 13), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 13), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 16), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 16), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 24), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 24), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 37), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 37), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 11), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 11), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 56), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 56), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 55), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 55), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 53), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 53), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 76), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 76), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 77), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 77), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1864), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(876), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(892), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1462), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1378), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1386), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1344), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1344), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1112), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1306), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1308), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 66), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 66), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 64), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 64), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 10), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 10), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 44), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 44), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 13), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 13), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 39), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 39), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 9), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 9), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 23), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 23), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 75), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 75), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 23), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 23), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 44), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 44), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 74), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 74), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 71), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 71), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 58), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 58), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 25), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 25), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 27), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 27), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 63), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 63), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 37), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 37), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 64), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 64), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 7), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 7), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 47), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 47), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 2, .production_id = 38), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2447] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1770), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 2, .production_id = 38), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 4), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 54), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 54), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 19), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 19), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 59), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 59), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 20), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 20), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1773), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1775), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1370), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1796), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1671), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1792), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1417), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1903), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 49), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 32), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 49), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 48), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 32), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 61), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 19), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 61), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 49), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 6), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 32), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1846), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 9), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 33), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 32), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1463), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1388), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(386), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 47), SHIFT_REPEAT(950), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 47), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 47), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(236), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 47), SHIFT_REPEAT(961), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 7), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(1092), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(889), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 12), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 12), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 30), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 7), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(901), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(875), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(878), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(877), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 26), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 66), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(1154), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(1394), - [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(515), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(1172), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(1031), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(429), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 4), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1211), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 62), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1537), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1175), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(1298), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 56), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(996), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1680), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 15), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 2), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(973), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(237), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 35), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(1231), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(913), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(896), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(1194), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 4), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 43), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 9), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(1346), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 43), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 50), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 9), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 18), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 42), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 29), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 45), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 29), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 65), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 54), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 28), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 73), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 54), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 28), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 54), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 4), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 4), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 69), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 26), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4195] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(25), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(25), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1406] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1685), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1582] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1675), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 22), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 22), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 9), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 9), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 72), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 72), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 63), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 63), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1887), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1728] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1688), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 14), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 14), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 3), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 39), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 39), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 23), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 23), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 2), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, .production_id = 2), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 11), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 11), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 17), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 17), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 25), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 25), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 46), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 46), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 67), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 67), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 76), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 76), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 61), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 61), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 73), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 73), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 55), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 55), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 9), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 9), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 26), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 26), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 69), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 69), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 24), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 24), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 24), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 24), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 77), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 77), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 59), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 59), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 41), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 41), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 10), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 10), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 66), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 66), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1895), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(835), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(847), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1420), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1328), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1312), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1297), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1297), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1096), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1262), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1267), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 58), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 58), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 56), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 56), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 28), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 28), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 32), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 32), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 7), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 7), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 2, .production_id = 40), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 49), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 49), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2405] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1683), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 2, .production_id = 40), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 57), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 4), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 57), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 20), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 20), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 62), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 62), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 21), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 21), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1682), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1681), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1319), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1770), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1697), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1678), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1360), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1880), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 51), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 64), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 34), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 6), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 64), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 50), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 20), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 9), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 51), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1874), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 34), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 50), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 51), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 34), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 35), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 34), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1412), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1326), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 49), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 49), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 49), SHIFT_REPEAT(905), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(384), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(194), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 7), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 49), SHIFT_REPEAT(883), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 27), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(833), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(840), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 12), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(834), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(851), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 12), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 31), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(1057), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(857), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 7), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(479), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(949), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(1113), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1144), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1726), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 37), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(858), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1132), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(1222), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(1147), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(1130), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(879), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1539), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 69), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 4), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 2), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 16), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(1309), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 4), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(1006), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(957), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 59), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 45), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 45), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 65), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(1304), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(1257), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(353), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 9), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(193), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 4), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 19), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 57), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 75), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 57), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 29), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 71), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 30), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 68), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 29), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 9), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 44), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 30), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 4), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 47), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 57), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 52), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 27), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4169] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), }; #ifdef __cplusplus