diff --git a/grammar.js b/grammar.js index 5babbd4..7f81bbd 100644 --- a/grammar.js +++ b/grammar.js @@ -94,7 +94,7 @@ module.exports = grammar({ print: $ => seq("print", field("msg", $.expression)), assert: $ => seq("assert", field("test", $.expression)), - return: $ => seq("return", optional(field("rv", $.expression))), + return: $ => prec.right(seq("return", optional(field("rv", $.expression)))), // TODO Should we make expression a hidden node? @@ -106,7 +106,7 @@ module.exports = grammar({ $.access, $.parenthesized_expression, $.vec, - // $.map, + $.map, $.unary_expression, $.binary_expression, $.index, @@ -187,9 +187,8 @@ module.exports = grammar({ ), ), - // map_item: $ => seq(field("key", $.expression), ":", field("value", $.expression)), - // map_item_list: $ => choice($.map_item, seq($.map_item, ",", $.map_item_list)), - // map: $ => prec(-1, seq("{", optional($.map_item_list), "}")), + map_item: $ => seq(field("key", $.expression), ":", field("value", $.expression)), + map: $ => prec(PREC.literal, seq("{", optional(comma_sep($.map_item)), "}")), overloadable_operator: _ => choice("++", "==="), primitive_type: _ => choice("any", "int", "str", "bool", "void"), diff --git a/src/grammar.json b/src/grammar.json index e26a1cb..255de44 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -646,29 +646,33 @@ ] }, "return": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "return" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "rv", - "content": { - "type": "SYMBOL", - "name": "expression" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "rv", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - } - ] + ] + } + ] + } }, "expression": { "type": "CHOICE", @@ -697,6 +701,10 @@ "type": "SYMBOL", "name": "vec" }, + { + "type": "SYMBOL", + "name": "map" + }, { "type": "SYMBOL", "name": "unary_expression" @@ -1618,6 +1626,93 @@ ] } }, + "map_item": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "map": { + "type": "PREC", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "map_item" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "map_item" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, "overloadable_operator": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index cb7443a..29c92dd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -314,6 +314,10 @@ "type": "literal", "named": true }, + { + "type": "map", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -548,6 +552,47 @@ ] } }, + { + "type": "map", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "map_item", + "named": true + } + ] + } + }, + { + "type": "map_item", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "multiplicative_operator", "named": true, diff --git a/src/parser.c b/src/parser.c index 1feeb9e..3d1b895 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 303 -#define LARGE_STATE_COUNT 10 -#define SYMBOL_COUNT 107 +#define STATE_COUNT 333 +#define LARGE_STATE_COUNT 13 +#define SYMBOL_COUNT 110 #define ALIAS_COUNT 0 #define TOKEN_COUNT 60 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 28 +#define FIELD_COUNT 30 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 53 +#define PRODUCTION_ID_COUNT 54 enum ts_symbol_identifiers { anon_sym_SEMI = 1, @@ -115,13 +115,16 @@ enum ts_symbol_identifiers { sym_vec = 97, sym_index = 98, sym_slice = 99, - sym_overloadable_operator = 100, - sym_primitive_type = 101, - sym_identifier = 102, - sym_bool = 103, - aux_sym_qualifier_list_repeat1 = 104, - aux_sym_param_list_repeat1 = 105, - aux_sym_arg_list_repeat1 = 106, + sym_map_item = 100, + sym_map = 101, + sym_overloadable_operator = 102, + sym_primitive_type = 103, + sym_identifier = 104, + sym_bool = 105, + aux_sym_qualifier_list_repeat1 = 106, + aux_sym_param_list_repeat1 = 107, + aux_sym_arg_list_repeat1 = 108, + aux_sym_map_repeat1 = 109, }; static const char * const ts_symbol_names[] = { @@ -225,6 +228,8 @@ static const char * const ts_symbol_names[] = { [sym_vec] = "vec", [sym_index] = "index", [sym_slice] = "slice", + [sym_map_item] = "map_item", + [sym_map] = "map", [sym_overloadable_operator] = "overloadable_operator", [sym_primitive_type] = "primitive_type", [sym_identifier] = "identifier", @@ -232,6 +237,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_qualifier_list_repeat1] = "qualifier_list_repeat1", [aux_sym_param_list_repeat1] = "param_list_repeat1", [aux_sym_arg_list_repeat1] = "arg_list_repeat1", + [aux_sym_map_repeat1] = "map_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -335,6 +341,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_vec] = sym_vec, [sym_index] = sym_index, [sym_slice] = sym_slice, + [sym_map_item] = sym_map_item, + [sym_map] = sym_map, [sym_overloadable_operator] = sym_overloadable_operator, [sym_primitive_type] = sym_primitive_type, [sym_identifier] = sym_identifier, @@ -342,6 +350,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_qualifier_list_repeat1] = aux_sym_qualifier_list_repeat1, [aux_sym_param_list_repeat1] = aux_sym_param_list_repeat1, [aux_sym_arg_list_repeat1] = aux_sym_arg_list_repeat1, + [aux_sym_map_repeat1] = aux_sym_map_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -745,6 +754,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_map_item] = { + .visible = true, + .named = true, + }, + [sym_map] = { + .visible = true, + .named = true, + }, [sym_overloadable_operator] = { .visible = true, .named = true, @@ -773,6 +790,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_map_repeat1] = { + .visible = false, + .named = false, + }, }; enum ts_field_identifiers { @@ -787,23 +808,25 @@ enum ts_field_identifiers { field_index = 9, field_indexed = 10, field_initial = 11, - field_left = 12, - field_msg = 13, - field_name = 14, - field_operand = 15, - field_operator = 16, - field_params = 17, - field_path = 18, - field_qualifiers = 19, - field_relative = 20, - field_rest = 21, - field_ret_type = 22, - field_right = 23, - field_rv = 24, - field_slice_begin = 25, - field_slice_end = 26, - field_test = 27, - field_type = 28, + field_key = 12, + field_left = 13, + field_msg = 14, + field_name = 15, + field_operand = 16, + field_operator = 17, + field_params = 18, + field_path = 19, + field_qualifiers = 20, + field_relative = 21, + field_rest = 22, + field_ret_type = 23, + field_right = 24, + field_rv = 25, + field_slice_begin = 26, + field_slice_end = 27, + field_test = 28, + field_type = 29, + field_value = 30, }; static const char * const ts_field_names[] = { @@ -819,6 +842,7 @@ static const char * const ts_field_names[] = { [field_index] = "index", [field_indexed] = "indexed", [field_initial] = "initial", + [field_key] = "key", [field_left] = "left", [field_msg] = "msg", [field_name] = "name", @@ -836,6 +860,7 @@ static const char * const ts_field_names[] = { [field_slice_end] = "slice_end", [field_test] = "test", [field_type] = "type", + [field_value] = "value", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { @@ -863,34 +888,35 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [22] = {.index = 32, .length = 2}, [23] = {.index = 34, .length = 2}, [24] = {.index = 36, .length = 2}, - [25] = {.index = 38, .length = 3}, - [26] = {.index = 41, .length = 2}, - [27] = {.index = 43, .length = 1}, - [28] = {.index = 44, .length = 2}, + [25] = {.index = 38, .length = 2}, + [26] = {.index = 40, .length = 3}, + [27] = {.index = 43, .length = 2}, + [28] = {.index = 45, .length = 1}, [29] = {.index = 46, .length = 2}, [30] = {.index = 48, .length = 2}, - [31] = {.index = 50, .length = 3}, - [32] = {.index = 53, .length = 3}, - [33] = {.index = 56, .length = 3}, - [34] = {.index = 59, .length = 3}, - [35] = {.index = 62, .length = 2}, + [31] = {.index = 50, .length = 2}, + [32] = {.index = 52, .length = 3}, + [33] = {.index = 55, .length = 3}, + [34] = {.index = 58, .length = 3}, + [35] = {.index = 61, .length = 3}, [36] = {.index = 64, .length = 2}, [37] = {.index = 66, .length = 2}, - [38] = {.index = 68, .length = 3}, - [39] = {.index = 71, .length = 3}, - [40] = {.index = 74, .length = 3}, - [41] = {.index = 77, .length = 3}, - [42] = {.index = 80, .length = 4}, - [43] = {.index = 84, .length = 3}, - [44] = {.index = 87, .length = 3}, - [45] = {.index = 90, .length = 3}, - [46] = {.index = 93, .length = 3}, - [47] = {.index = 96, .length = 4}, - [48] = {.index = 100, .length = 4}, - [49] = {.index = 104, .length = 4}, - [50] = {.index = 108, .length = 4}, - [51] = {.index = 112, .length = 4}, - [52] = {.index = 116, .length = 5}, + [38] = {.index = 68, .length = 2}, + [39] = {.index = 70, .length = 3}, + [40] = {.index = 73, .length = 3}, + [41] = {.index = 76, .length = 3}, + [42] = {.index = 79, .length = 3}, + [43] = {.index = 82, .length = 4}, + [44] = {.index = 86, .length = 3}, + [45] = {.index = 89, .length = 3}, + [46] = {.index = 92, .length = 3}, + [47] = {.index = 95, .length = 3}, + [48] = {.index = 98, .length = 4}, + [49] = {.index = 102, .length = 4}, + [50] = {.index = 106, .length = 4}, + [51] = {.index = 110, .length = 4}, + [52] = {.index = 114, .length = 4}, + [53] = {.index = 118, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -939,129 +965,132 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_left, 0}, {field_right, 2}, [26] = + {field_key, 0}, + {field_value, 2}, + [28] = {field_bit, 0}, {field_rest, 2}, - [28] = + [30] = {field_name, 1}, {field_ret_type, 3}, - [30] = + [32] = {field_body, 3}, {field_params, 1}, - [32] = + [34] = {field_ident, 0}, {field_type, 2}, - [34] = + [36] = {field_name, 1}, {field_type, 3}, - [36] = + [38] = {field_initial, 3}, {field_name, 1}, - [38] = + [40] = {field_body, 3}, {field_name, 2}, {field_qualifiers, 0}, - [41] = + [43] = {field_args, 2}, {field_callable, 0}, - [43] = + [45] = {field_indexed, 0}, - [44] = + [46] = {field_index, 2}, {field_indexed, 0}, - [46] = + [48] = {field_name, 1}, {field_params, 3}, - [48] = + [50] = {field_body, 4}, {field_name, 1}, - [50] = + [52] = {field_body, 4}, {field_name, 1}, {field_ret_type, 3}, - [53] = + [55] = {field_name, 2}, {field_qualifiers, 0}, {field_ret_type, 4}, - [56] = + [58] = {field_name, 2}, {field_qualifiers, 0}, {field_type, 4}, - [59] = + [61] = {field_initial, 4}, {field_name, 2}, {field_qualifiers, 0}, - [62] = + [64] = {field_indexed, 0}, {field_slice_end, 3}, - [64] = + [66] = {field_indexed, 0}, {field_slice_begin, 2}, - [66] = + [68] = {field_name, 1}, {field_ret_type, 5}, - [68] = + [70] = {field_body, 5}, {field_name, 1}, {field_params, 3}, - [71] = + [73] = {field_initial, 5}, {field_name, 1}, {field_type, 3}, - [74] = + [76] = {field_name, 2}, {field_params, 4}, {field_qualifiers, 0}, - [77] = + [79] = {field_body, 5}, {field_name, 2}, {field_qualifiers, 0}, - [80] = + [82] = {field_body, 5}, {field_name, 2}, {field_qualifiers, 0}, {field_ret_type, 4}, - [84] = + [86] = {field_indexed, 0}, {field_slice_begin, 2}, {field_slice_end, 4}, - [87] = + [89] = {field_name, 1}, {field_params, 3}, {field_ret_type, 6}, - [90] = + [92] = {field_body, 6}, {field_name, 1}, {field_ret_type, 5}, - [93] = + [95] = {field_name, 2}, {field_qualifiers, 0}, {field_ret_type, 6}, - [96] = + [98] = {field_body, 6}, {field_name, 2}, {field_params, 4}, {field_qualifiers, 0}, - [100] = + [102] = {field_initial, 6}, {field_name, 2}, {field_qualifiers, 0}, {field_type, 4}, - [104] = + [106] = {field_body, 7}, {field_name, 1}, {field_params, 3}, {field_ret_type, 6}, - [108] = + [110] = {field_name, 2}, {field_params, 4}, {field_qualifiers, 0}, {field_ret_type, 7}, - [112] = + [114] = {field_body, 7}, {field_name, 2}, {field_qualifiers, 0}, {field_ret_type, 6}, - [116] = + [118] = {field_body, 8}, {field_name, 2}, {field_params, 4}, @@ -1081,88 +1110,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 4, - [5] = 3, - [6] = 4, - [7] = 4, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 6, + [7] = 7, [8] = 8, - [9] = 3, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 11, - [14] = 14, - [15] = 12, - [16] = 14, + [9] = 9, + [10] = 9, + [11] = 9, + [12] = 7, + [13] = 13, + [14] = 13, + [15] = 15, + [16] = 16, [17] = 17, - [18] = 18, - [19] = 19, + [18] = 17, + [19] = 16, [20] = 20, - [21] = 21, + [21] = 20, [22] = 22, - [23] = 17, - [24] = 22, - [25] = 18, + [23] = 22, + [24] = 24, + [25] = 25, [26] = 26, - [27] = 27, - [28] = 27, - [29] = 20, + [27] = 24, + [28] = 28, + [29] = 29, [30] = 26, [31] = 31, [32] = 32, [33] = 33, - [34] = 34, - [35] = 35, + [34] = 28, + [35] = 25, [36] = 36, [37] = 37, [38] = 38, - [39] = 39, - [40] = 40, - [41] = 33, - [42] = 42, + [39] = 33, + [40] = 36, + [41] = 29, + [42] = 37, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, [48] = 48, - [49] = 49, + [49] = 47, [50] = 50, [51] = 51, [52] = 52, - [53] = 53, + [53] = 43, [54] = 54, [55] = 55, [56] = 56, - [57] = 57, + [57] = 54, [58] = 58, - [59] = 59, - [60] = 60, + [59] = 51, + [60] = 55, [61] = 61, - [62] = 62, + [62] = 45, [63] = 63, - [64] = 64, + [64] = 52, [65] = 65, - [66] = 66, + [66] = 46, [67] = 67, [68] = 68, [69] = 69, - [70] = 31, + [70] = 70, [71] = 71, [72] = 72, - [73] = 71, - [74] = 69, - [75] = 67, + [73] = 73, + [74] = 74, + [75] = 75, [76] = 76, [77] = 77, - [78] = 72, + [78] = 78, [79] = 79, [80] = 80, - [81] = 68, + [81] = 81, [82] = 82, [83] = 83, - [84] = 37, + [84] = 84, [85] = 85, [86] = 86, [87] = 87, @@ -1174,7 +1203,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 93, [94] = 94, [95] = 95, - [96] = 40, + [96] = 96, [97] = 97, [98] = 98, [99] = 99, @@ -1188,90 +1217,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [107] = 107, [108] = 108, [109] = 109, - [110] = 79, + [110] = 110, [111] = 111, [112] = 112, [113] = 113, [114] = 114, - [115] = 64, - [116] = 62, - [117] = 82, - [118] = 61, - [119] = 86, - [120] = 59, - [121] = 45, - [122] = 66, - [123] = 77, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 13, + [121] = 121, + [122] = 122, + [123] = 80, [124] = 124, [125] = 125, [126] = 126, - [127] = 125, - [128] = 92, + [127] = 127, + [128] = 128, [129] = 129, - [130] = 129, - [131] = 93, + [130] = 130, + [131] = 131, [132] = 132, - [133] = 133, - [134] = 134, - [135] = 132, - [136] = 133, - [137] = 134, - [138] = 101, - [139] = 104, - [140] = 105, - [141] = 98, - [142] = 107, - [143] = 114, - [144] = 79, - [145] = 112, - [146] = 113, - [147] = 108, - [148] = 111, - [149] = 102, - [150] = 94, - [151] = 103, - [152] = 100, - [153] = 106, - [154] = 40, - [155] = 99, - [156] = 109, - [157] = 97, - [158] = 158, - [159] = 158, - [160] = 158, + [133] = 75, + [134] = 74, + [135] = 73, + [136] = 69, + [137] = 70, + [138] = 77, + [139] = 76, + [140] = 68, + [141] = 72, + [142] = 142, + [143] = 106, + [144] = 107, + [145] = 142, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 148, + [150] = 150, + [151] = 126, + [152] = 116, + [153] = 153, + [154] = 127, + [155] = 153, + [156] = 122, + [157] = 109, + [158] = 117, + [159] = 13, + [160] = 128, [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, + [162] = 121, + [163] = 131, + [164] = 80, [165] = 165, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, + [166] = 165, + [167] = 113, + [168] = 112, + [169] = 132, + [170] = 111, [171] = 171, - [172] = 172, - [173] = 173, - [174] = 174, - [175] = 175, - [176] = 170, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 179, - [182] = 171, + [172] = 130, + [173] = 171, + [174] = 115, + [175] = 110, + [176] = 129, + [177] = 119, + [178] = 118, + [179] = 125, + [180] = 114, + [181] = 124, + [182] = 182, [183] = 183, [184] = 184, [185] = 185, [186] = 186, - [187] = 187, - [188] = 188, + [187] = 184, + [188] = 184, [189] = 189, [190] = 190, [191] = 191, [192] = 192, - [193] = 169, + [193] = 193, [194] = 194, [195] = 195, [196] = 196, @@ -1282,21 +1311,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [201] = 201, [202] = 202, [203] = 203, - [204] = 204, + [204] = 196, [205] = 205, [206] = 206, [207] = 207, - [208] = 208, + [208] = 194, [209] = 209, [210] = 210, [211] = 211, [212] = 212, - [213] = 213, + [213] = 212, [214] = 214, [215] = 215, - [216] = 216, + [216] = 195, [217] = 217, - [218] = 214, + [218] = 218, [219] = 219, [220] = 220, [221] = 221, @@ -1304,59 +1333,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [223] = 223, [224] = 224, [225] = 225, - [226] = 223, + [226] = 226, [227] = 227, [228] = 228, [229] = 229, [230] = 230, - [231] = 222, + [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 235, - [236] = 234, - [237] = 237, + [236] = 236, + [237] = 221, [238] = 238, [239] = 239, [240] = 240, - [241] = 237, + [241] = 241, [242] = 242, [243] = 243, - [244] = 185, - [245] = 245, - [246] = 186, - [247] = 212, - [248] = 206, - [249] = 203, - [250] = 205, - [251] = 251, + [244] = 244, + [245] = 243, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 249, [252] = 252, - [253] = 92, + [253] = 253, [254] = 254, [255] = 255, - [256] = 93, + [256] = 256, [257] = 257, - [258] = 258, + [258] = 257, [259] = 259, - [260] = 172, + [260] = 260, [261] = 261, - [262] = 262, + [262] = 261, [263] = 263, - [264] = 258, + [264] = 264, [265] = 265, [266] = 266, - [267] = 257, + [267] = 267, [268] = 268, - [269] = 269, - [270] = 270, + [269] = 193, + [270] = 197, [271] = 271, - [272] = 272, - [273] = 269, - [274] = 263, - [275] = 275, - [276] = 261, - [277] = 277, - [278] = 278, + [272] = 227, + [273] = 229, + [274] = 230, + [275] = 226, + [276] = 276, + [277] = 106, + [278] = 107, [279] = 279, [280] = 280, [281] = 281, @@ -1365,22 +1394,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [284] = 284, [285] = 285, [286] = 286, - [287] = 287, + [287] = 286, [288] = 288, [289] = 289, - [290] = 287, - [291] = 291, + [290] = 290, + [291] = 288, [292] = 292, [293] = 293, - [294] = 286, - [295] = 291, + [294] = 284, + [295] = 295, [296] = 296, - [297] = 297, - [298] = 289, + [297] = 289, + [298] = 282, [299] = 299, - [300] = 300, - [301] = 300, + [300] = 205, + [301] = 301, [302] = 302, + [303] = 290, + [304] = 304, + [305] = 302, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 315, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 327, + [329] = 317, + [330] = 320, + [331] = 326, + [332] = 332, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1388,314 +1447,317 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(42); + if (eof) ADVANCE(43); ADVANCE_MAP( - '!', 85, + '!', 87, '"', 8, '#', 9, - '%', 89, + '%', 91, '&', 10, - '(', 59, - ')', 60, - '*', 87, - '+', 91, - ',', 76, - '-', 83, - '.', 52, - '/', 88, - ':', 77, - ';', 43, - '<', 73, - '=', 80, - '>', 75, - '[', 100, - ']', 101, + '(', 60, + ')', 61, + '*', 89, + '+', 93, + ',', 78, + '-', 85, + '.', 53, + '/', 90, + ':', 79, + ';', 44, + '<', 75, + '=', 82, + '>', 77, + '[', 102, + ']', 103, '^', 18, - 'a', 132, - 'b', 141, - 'c', 129, - 'e', 151, - 'f', 109, - 'i', 131, - 'l', 122, - 'm', 112, - 'n', 138, - 'p', 147, - 'r', 123, - 's', 161, - 't', 148, - 'v', 117, - '{', 49, - '|', 64, - '}', 50, + 'a', 134, + 'b', 143, + 'c', 131, + 'e', 153, + 'f', 111, + 'i', 133, + 'l', 124, + 'm', 114, + 'n', 140, + 'p', 149, + 'r', 125, + 's', 163, + 't', 150, + 'v', 119, + '{', 50, + '|', 66, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 1: ADVANCE_MAP( - '\n', 44, - '!', 84, + '\n', 45, + '!', 86, '"', 8, '#', 9, - '(', 59, - '-', 82, - ';', 43, - '[', 100, - 'a', 133, - 'b', 141, - 'c', 129, - 'e', 151, - 'f', 109, - 'i', 135, - 'n', 138, - 'p', 171, - 's', 161, - 't', 148, - 'v', 139, - '{', 49, - '|', 64, - '}', 50, + '(', 60, + '-', 84, + ';', 44, + '[', 102, + 'a', 135, + 'b', 143, + 'c', 131, + 'e', 153, + 'f', 111, + 'i', 137, + 'n', 140, + 'p', 173, + 's', 163, + 't', 150, + 'v', 141, + '{', 50, + '|', 65, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 2: ADVANCE_MAP( - '\n', 44, + '\n', 45, '!', 13, '#', 9, - '%', 89, + '%', 91, '&', 10, - '(', 59, - '*', 87, - '+', 90, - '-', 83, - '.', 52, - '/', 88, - ':', 77, - ';', 43, - '<', 73, - '=', 81, - '>', 75, - '[', 100, + '(', 60, + '*', 89, + '+', 92, + '-', 85, + '.', 53, + '/', 90, + ':', 79, + ';', 44, + '<', 75, + '=', 83, + '>', 77, + '[', 102, '^', 18, 'c', 26, 'f', 27, 'p', 38, 's', 36, - '{', 49, + '{', 50, '|', 39, - '}', 50, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); END_STATE(); case 3: ADVANCE_MAP( - '\n', 44, + '\n', 45, '!', 13, '#', 9, - '%', 89, + '%', 91, '&', 10, - '(', 59, - '*', 87, - '+', 90, - '-', 82, - '.', 52, - '/', 88, - ':', 77, - ';', 43, - '<', 73, - '=', 81, - '>', 75, - '[', 100, + '(', 60, + '*', 89, + '+', 92, + '-', 84, + '.', 53, + '/', 90, + ':', 79, + ';', 44, + '<', 75, + '=', 83, + '>', 77, + '[', 102, '^', 18, 'c', 26, 'f', 27, 'p', 38, 's', 36, - '{', 49, + '{', 50, '|', 39, - '}', 50, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); END_STATE(); case 4: ADVANCE_MAP( - '\n', 44, + '\n', 45, '#', 9, - '(', 59, + '(', 60, '-', 17, - ';', 43, + ';', 44, 'c', 26, 'f', 27, 'p', 38, 's', 36, - '{', 49, - '}', 50, + '{', 50, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '!', 84, + '!', 86, '"', 8, - '(', 59, - ')', 60, - '-', 82, - ':', 77, - '[', 100, - ']', 101, - 'a', 133, - 'b', 141, - 'e', 151, - 'f', 110, - 'i', 135, - 'n', 138, - 's', 170, - 't', 148, - 'v', 139, - '{', 49, - '|', 64, + '(', 60, + ')', 61, + '-', 84, + ':', 79, + '[', 102, + ']', 103, + 'a', 135, + 'b', 143, + 'e', 153, + 'f', 112, + 'i', 137, + 'n', 140, + 's', 172, + 't', 150, + 'v', 141, + '{', 50, + '|', 65, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 6: ADVANCE_MAP( '!', 13, - '%', 89, + '%', 91, '&', 10, - '(', 59, - ')', 60, - '*', 87, - '+', 90, - ',', 76, - '-', 83, - '.', 52, - '/', 88, - ':', 77, - '<', 73, + '(', 60, + ')', 61, + '*', 89, + '+', 92, + ',', 78, + '-', 85, + '.', 53, + '/', 90, + ':', 79, + '<', 75, '=', 15, - '>', 75, - '[', 100, - ']', 101, + '>', 77, + '[', 102, + ']', 103, '^', 18, - 'a', 133, - 'b', 141, - 'i', 135, - 's', 170, - 'v', 139, - '{', 49, + 'a', 135, + 'b', 143, + 'i', 137, + 's', 172, + 'v', 141, + '{', 50, '|', 39, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 7: ADVANCE_MAP( '!', 13, - '%', 89, + '%', 91, '&', 10, - '(', 59, - ')', 60, - '*', 87, - '+', 90, - ',', 76, - '-', 82, - '.', 52, - '/', 88, - ':', 77, - '<', 73, + '(', 60, + ')', 61, + '*', 89, + '+', 92, + ',', 78, + '-', 84, + '.', 53, + '/', 90, + ':', 79, + '<', 75, '=', 15, - '>', 75, - '[', 100, - ']', 101, + '>', 77, + '[', 102, + ']', 103, '^', 18, - 'a', 133, - 'b', 141, - 'i', 135, - 'm', 112, - 's', 170, - 'v', 117, + 'a', 135, + 'b', 143, + 'i', 137, + 'm', 114, + 's', 172, + 'v', 119, '|', 39, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(177); + if (lookahead == '"') ADVANCE(179); if (lookahead == '\\') ADVANCE(40); if (lookahead != 0) ADVANCE(8); END_STATE(); case 9: - if (lookahead == '#') ADVANCE(46); - if (lookahead != 0) ADVANCE(45); + if (lookahead == '#') ADVANCE(47); + if (lookahead != 0) ADVANCE(46); END_STATE(); case 10: - if (lookahead == '&') ADVANCE(97); + if (lookahead == '&') ADVANCE(99); END_STATE(); case 11: ADVANCE_MAP( - '(', 59, + '(', 60, '+', 12, '-', 17, '=', 16, - 'a', 133, - 'b', 141, - 'i', 135, - 's', 170, - 'v', 139, - '{', 49, - '|', 64, + 'a', 135, + 'b', 143, + 'i', 137, + 's', 172, + 'v', 141, + '{', 50, + '|', 65, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 12: - if (lookahead == '+') ADVANCE(102); + if (lookahead == '+') ADVANCE(104); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(94); + if (lookahead == '=') ADVANCE(96); END_STATE(); case 14: - if (lookahead == '=') ADVANCE(103); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 15: - if (lookahead == '=') ADVANCE(92); + if (lookahead == '=') ADVANCE(94); END_STATE(); case 16: if (lookahead == '=') ADVANCE(14); END_STATE(); case 17: - if (lookahead == '>') ADVANCE(61); + if (lookahead == '>') ADVANCE(62); END_STATE(); case 18: - if (lookahead == '^') ADVANCE(99); + if (lookahead == '^') ADVANCE(101); END_STATE(); case 19: if (lookahead == 'a') ADVANCE(33); @@ -1704,10 +1766,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(34); END_STATE(); case 21: - if (lookahead == 'c') ADVANCE(53); + if (lookahead == 'c') ADVANCE(54); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 23: if (lookahead == 'e') ADVANCE(35); @@ -1727,10 +1789,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(19); END_STATE(); case 27: - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'n') ADVANCE(63); END_STATE(); case 28: - if (lookahead == 'o') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); END_STATE(); case 29: if (lookahead == 'o') ADVANCE(37); @@ -1743,7 +1805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(30); END_STATE(); case 32: - if (lookahead == 's') ADVANCE(65); + if (lookahead == 's') ADVANCE(67); END_STATE(); case 33: if (lookahead == 's') ADVANCE(32); @@ -1752,7 +1814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(25); END_STATE(); case 35: - if (lookahead == 't') ADVANCE(78); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 36: if (lookahead == 't') ADVANCE(20); @@ -1764,567 +1826,601 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(30); END_STATE(); case 39: - if (lookahead == '|') ADVANCE(98); + if (lookahead == '|') ADVANCE(100); END_STATE(); case 40: if (lookahead != 0 && lookahead != '\n') ADVANCE(8); END_STATE(); case 41: - if (eof) ADVANCE(42); + if (eof) ADVANCE(43); ADVANCE_MAP( - '!', 84, + '\n', 45, + '!', 87, '"', 8, '#', 9, - '(', 59, - ')', 60, - ',', 76, - '-', 82, - ':', 77, - '<', 72, - '>', 74, - '[', 100, - 'a', 132, - 'b', 141, - 'c', 129, - 'e', 151, - 'f', 109, - 'i', 131, - 'l', 122, - 'n', 138, - 'p', 147, - 'r', 123, - 's', 161, - 't', 148, - 'v', 139, - '{', 49, - '|', 64, - '}', 50, + '%', 91, + '&', 10, + '(', 60, + '*', 89, + '+', 92, + '-', 84, + '.', 53, + '/', 90, + ':', 79, + ';', 44, + '<', 75, + '=', 15, + '>', 77, + '[', 102, + '^', 18, + 'a', 134, + 'b', 143, + 'c', 131, + 'e', 153, + 'f', 111, + 'i', 133, + 'l', 124, + 'n', 140, + 'p', 149, + 'r', 125, + 's', 163, + 't', 150, + 'v', 141, + '{', 50, + '|', 66, + '}', 51, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 42: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(43); + ADVANCE_MAP( + '!', 86, + '"', 8, + '#', 9, + '(', 60, + ')', 61, + ',', 78, + '-', 84, + ':', 79, + '<', 74, + '>', 76, + '[', 102, + 'a', 134, + 'b', 143, + 'c', 131, + 'e', 153, + 'f', 111, + 'i', 133, + 'l', 124, + 'n', 140, + 'p', 149, + 'r', 125, + 's', 163, + 't', 150, + 'v', 141, + '{', 50, + '|', 65, + '}', 51, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(44); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 45: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(45); + END_STATE(); + case 46: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(45); + lookahead != '\n') ADVANCE(46); END_STATE(); - case 46: + case 47: ACCEPT_TOKEN(anon_sym_POUND_POUND); END_STATE(); - case 47: + case 48: ACCEPT_TOKEN(sym_doc_comment_content); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(47); + lookahead == ' ') ADVANCE(48); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(48); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(49); END_STATE(); - case 48: + case 49: ACCEPT_TOKEN(sym_doc_comment_content); if (lookahead != 0 && - lookahead != '\n') ADVANCE(48); + lookahead != '\n') ADVANCE(49); END_STATE(); - case 49: + case 50: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 50: + case 51: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 51: + case 52: ACCEPT_TOKEN(anon_sym_import); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 52: + case 53: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 53: + case 54: ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 54: + case 55: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 55: + case 56: ACCEPT_TOKEN(anon_sym_pure); END_STATE(); - case 56: + case 57: ACCEPT_TOKEN(anon_sym_pure); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 57: + case 58: ACCEPT_TOKEN(anon_sym_proto); END_STATE(); - case 58: + case 59: ACCEPT_TOKEN(anon_sym_proto); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 59: + case 60: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 60: + case 61: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 61: + case 62: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 62: + case 63: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 63: + case 64: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 64: + case 65: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 65: + case 66: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(100); + END_STATE(); + case 67: ACCEPT_TOKEN(anon_sym_class); END_STATE(); - case 66: + case 68: ACCEPT_TOKEN(anon_sym_class); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 67: + case 69: ACCEPT_TOKEN(anon_sym_print); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 68: + case 70: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 69: + case 71: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 70: + case 72: ACCEPT_TOKEN(anon_sym_vec); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 71: + case 73: ACCEPT_TOKEN(anon_sym_map); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 72: + case 74: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 73: + case 75: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(95); + if (lookahead == '=') ADVANCE(97); END_STATE(); - case 74: + case 76: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 75: + case 77: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(96); + if (lookahead == '=') ADVANCE(98); END_STATE(); - case 76: + case 78: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 77: + case 79: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 78: + case 80: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 79: + case 81: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(93); - END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(92); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(95); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(61); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(94); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(62); END_STATE(); case 86: - ACCEPT_TOKEN(sym_power_operator); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(86); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(96); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(sym_power_operator); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(88); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(104); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 97: - ACCEPT_TOKEN(sym_and_operator); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_CARET_CARET); + ACCEPT_TOKEN(sym_and_operator); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_any); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_int); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_str); + ACCEPT_TOKEN(anon_sym_any); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_bool); + ACCEPT_TOKEN(anon_sym_int); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_void); + ACCEPT_TOKEN(anon_sym_str); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 109: - ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(130); - if (lookahead == 'n') ADVANCE(63); + ACCEPT_TOKEN(anon_sym_bool); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 110: - ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_void); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 111: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'n') ADVANCE(64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 112: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'a') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 113: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(168); - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 'a') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 114: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'c') ADVANCE(70); + if (lookahead == 'a') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 115: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'c') ADVANCE(54); + if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'r') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 116: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'd') ADVANCE(108); + if (lookahead == 'c') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 117: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(114); - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'c') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 118: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'd') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 119: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'o') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 120: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'e') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 121: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'e') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 122: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'e') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 123: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'e') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 124: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(155); + if (lookahead == 'e') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 125: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'i') ADVANCE(116); + if (lookahead == 'e') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 126: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'i') ADVANCE(137); - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'e') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 127: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'i') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 128: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'o') ADVANCE(171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 129: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'i') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 130: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(160); + if (lookahead == 'l') ADVANCE(109); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 131: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'm') ADVANCE(146); - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'l') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 132: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(174); - if (lookahead == 's') ADVANCE(158); + if (lookahead == 'l') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 133: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'm') ADVANCE(148); + if (lookahead == 'n') ADVANCE(164); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 134: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(69); + if (lookahead == 'n') ADVANCE(176); + if (lookahead == 's') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 135: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'n') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 136: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(118); + if (lookahead == 'n') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 137: ACCEPT_TOKEN(aux_sym_identifier_token1); @@ -2332,346 +2428,362 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 138: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(136); + if (lookahead == 'n') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 139: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'n') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 140: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'o') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 141: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(142); + if (lookahead == 'o') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 142: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(128); + if (lookahead == 'o') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 143: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(150); + if (lookahead == 'o') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 144: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'o') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 145: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'p') ADVANCE(71); + if (lookahead == 'o') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 146: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'p') ADVANCE(144); + if (lookahead == 'o') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 147: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(126); - if (lookahead == 'u') ADVANCE(154); + if (lookahead == 'p') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 148: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'p') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 149: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 'r') ADVANCE(128); + if (lookahead == 'u') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 150: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'r') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 151: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(153); + if (lookahead == 'r') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 152: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 'r') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 153: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'r') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 154: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'r') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 155: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(165); + if (lookahead == 'r') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 156: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'r') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 157: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(66); + if (lookahead == 'r') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 158: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'r') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 159: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(157); + if (lookahead == 's') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 160: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(121); + if (lookahead == 's') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 161: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(113); + if (lookahead == 's') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 162: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 's') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 163: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(79); + if (lookahead == 't') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 164: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(67); + if (lookahead == 't') ADVANCE(107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 165: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(68); + if (lookahead == 't') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 166: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(51); + if (lookahead == 't') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 167: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(173); + if (lookahead == 't') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 168: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(127); + if (lookahead == 't') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 169: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(140); + if (lookahead == 't') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 170: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(149); + if (lookahead == 't') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 171: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'u') ADVANCE(154); + if (lookahead == 't') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 172: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'u') ADVANCE(120); + if (lookahead == 't') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 173: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'u') ADVANCE(152); + if (lookahead == 'u') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 174: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'y') ADVANCE(104); + if (lookahead == 'u') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 175: ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 176: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'y') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 177: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 178: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym_string); + END_STATE(); + case 180: ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 179: + case 181: ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 180: + case 182: ACCEPT_TOKEN(anon_sym_error); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 181: + case 183: ACCEPT_TOKEN(sym_none); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); default: return false; @@ -2680,21 +2792,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 41}, - [2] = {.lex_state = 41}, - [3] = {.lex_state = 41}, - [4] = {.lex_state = 41}, - [5] = {.lex_state = 41}, - [6] = {.lex_state = 41}, - [7] = {.lex_state = 41}, - [8] = {.lex_state = 41}, - [9] = {.lex_state = 41}, - [10] = {.lex_state = 1}, - [11] = {.lex_state = 5}, - [12] = {.lex_state = 5}, - [13] = {.lex_state = 5}, - [14] = {.lex_state = 5}, - [15] = {.lex_state = 5}, + [1] = {.lex_state = 42}, + [2] = {.lex_state = 42}, + [3] = {.lex_state = 42}, + [4] = {.lex_state = 42}, + [5] = {.lex_state = 42}, + [6] = {.lex_state = 42}, + [7] = {.lex_state = 42}, + [8] = {.lex_state = 42}, + [9] = {.lex_state = 42}, + [10] = {.lex_state = 42}, + [11] = {.lex_state = 42}, + [12] = {.lex_state = 42}, + [13] = {.lex_state = 41}, + [14] = {.lex_state = 41}, + [15] = {.lex_state = 1}, [16] = {.lex_state = 5}, [17] = {.lex_state = 5}, [18] = {.lex_state = 5}, @@ -2713,80 +2825,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 5}, [32] = {.lex_state = 5}, [33] = {.lex_state = 5}, - [34] = {.lex_state = 3}, - [35] = {.lex_state = 3}, + [34] = {.lex_state = 5}, + [35] = {.lex_state = 5}, [36] = {.lex_state = 5}, [37] = {.lex_state = 5}, [38] = {.lex_state = 5}, - [39] = {.lex_state = 41}, - [40] = {.lex_state = 41}, + [39] = {.lex_state = 5}, + [40] = {.lex_state = 5}, [41] = {.lex_state = 5}, - [42] = {.lex_state = 41}, - [43] = {.lex_state = 41}, + [42] = {.lex_state = 5}, + [43] = {.lex_state = 5}, [44] = {.lex_state = 5}, - [45] = {.lex_state = 3}, - [46] = {.lex_state = 41}, + [45] = {.lex_state = 5}, + [46] = {.lex_state = 5}, [47] = {.lex_state = 5}, - [48] = {.lex_state = 41}, + [48] = {.lex_state = 5}, [49] = {.lex_state = 5}, - [50] = {.lex_state = 3}, - [51] = {.lex_state = 41}, - [52] = {.lex_state = 41}, - [53] = {.lex_state = 3}, - [54] = {.lex_state = 3}, - [55] = {.lex_state = 3}, - [56] = {.lex_state = 3}, - [57] = {.lex_state = 41}, - [58] = {.lex_state = 3}, - [59] = {.lex_state = 3}, - [60] = {.lex_state = 41}, - [61] = {.lex_state = 3}, - [62] = {.lex_state = 3}, - [63] = {.lex_state = 41}, - [64] = {.lex_state = 3}, - [65] = {.lex_state = 41}, - [66] = {.lex_state = 3}, + [50] = {.lex_state = 5}, + [51] = {.lex_state = 5}, + [52] = {.lex_state = 5}, + [53] = {.lex_state = 5}, + [54] = {.lex_state = 5}, + [55] = {.lex_state = 5}, + [56] = {.lex_state = 5}, + [57] = {.lex_state = 5}, + [58] = {.lex_state = 5}, + [59] = {.lex_state = 5}, + [60] = {.lex_state = 5}, + [61] = {.lex_state = 5}, + [62] = {.lex_state = 5}, + [63] = {.lex_state = 5}, + [64] = {.lex_state = 5}, + [65] = {.lex_state = 5}, + [66] = {.lex_state = 5}, [67] = {.lex_state = 5}, - [68] = {.lex_state = 5}, - [69] = {.lex_state = 5}, - [70] = {.lex_state = 5}, - [71] = {.lex_state = 5}, - [72] = {.lex_state = 5}, - [73] = {.lex_state = 5}, - [74] = {.lex_state = 5}, - [75] = {.lex_state = 5}, - [76] = {.lex_state = 5}, + [68] = {.lex_state = 3}, + [69] = {.lex_state = 3}, + [70] = {.lex_state = 3}, + [71] = {.lex_state = 3}, + [72] = {.lex_state = 3}, + [73] = {.lex_state = 3}, + [74] = {.lex_state = 3}, + [75] = {.lex_state = 3}, + [76] = {.lex_state = 3}, [77] = {.lex_state = 3}, - [78] = {.lex_state = 5}, - [79] = {.lex_state = 41}, - [80] = {.lex_state = 5}, - [81] = {.lex_state = 5}, - [82] = {.lex_state = 3}, - [83] = {.lex_state = 41}, - [84] = {.lex_state = 5}, - [85] = {.lex_state = 41}, - [86] = {.lex_state = 3}, - [87] = {.lex_state = 41}, - [88] = {.lex_state = 41}, - [89] = {.lex_state = 41}, - [90] = {.lex_state = 41}, - [91] = {.lex_state = 3}, - [92] = {.lex_state = 2}, - [93] = {.lex_state = 2}, - [94] = {.lex_state = 3}, + [78] = {.lex_state = 42}, + [79] = {.lex_state = 42}, + [80] = {.lex_state = 42}, + [81] = {.lex_state = 3}, + [82] = {.lex_state = 42}, + [83] = {.lex_state = 42}, + [84] = {.lex_state = 42}, + [85] = {.lex_state = 42}, + [86] = {.lex_state = 42}, + [87] = {.lex_state = 3}, + [88] = {.lex_state = 42}, + [89] = {.lex_state = 42}, + [90] = {.lex_state = 42}, + [91] = {.lex_state = 42}, + [92] = {.lex_state = 3}, + [93] = {.lex_state = 42}, + [94] = {.lex_state = 42}, [95] = {.lex_state = 3}, [96] = {.lex_state = 3}, [97] = {.lex_state = 3}, [98] = {.lex_state = 3}, [99] = {.lex_state = 3}, - [100] = {.lex_state = 3}, + [100] = {.lex_state = 42}, [101] = {.lex_state = 3}, - [102] = {.lex_state = 3}, - [103] = {.lex_state = 3}, - [104] = {.lex_state = 3}, - [105] = {.lex_state = 3}, - [106] = {.lex_state = 3}, - [107] = {.lex_state = 3}, + [102] = {.lex_state = 42}, + [103] = {.lex_state = 42}, + [104] = {.lex_state = 42}, + [105] = {.lex_state = 42}, + [106] = {.lex_state = 2}, + [107] = {.lex_state = 2}, [108] = {.lex_state = 3}, [109] = {.lex_state = 3}, [110] = {.lex_state = 3}, @@ -2794,24 +2906,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 3}, [113] = {.lex_state = 3}, [114] = {.lex_state = 3}, - [115] = {.lex_state = 7}, - [116] = {.lex_state = 7}, - [117] = {.lex_state = 7}, - [118] = {.lex_state = 7}, - [119] = {.lex_state = 7}, - [120] = {.lex_state = 7}, - [121] = {.lex_state = 7}, - [122] = {.lex_state = 7}, - [123] = {.lex_state = 7}, - [124] = {.lex_state = 7}, - [125] = {.lex_state = 7}, - [126] = {.lex_state = 7}, - [127] = {.lex_state = 7}, - [128] = {.lex_state = 6}, - [129] = {.lex_state = 7}, - [130] = {.lex_state = 7}, - [131] = {.lex_state = 6}, - [132] = {.lex_state = 7}, + [115] = {.lex_state = 3}, + [116] = {.lex_state = 3}, + [117] = {.lex_state = 3}, + [118] = {.lex_state = 3}, + [119] = {.lex_state = 3}, + [120] = {.lex_state = 3}, + [121] = {.lex_state = 3}, + [122] = {.lex_state = 3}, + [123] = {.lex_state = 3}, + [124] = {.lex_state = 3}, + [125] = {.lex_state = 3}, + [126] = {.lex_state = 3}, + [127] = {.lex_state = 3}, + [128] = {.lex_state = 3}, + [129] = {.lex_state = 3}, + [130] = {.lex_state = 3}, + [131] = {.lex_state = 3}, + [132] = {.lex_state = 3}, [133] = {.lex_state = 7}, [134] = {.lex_state = 7}, [135] = {.lex_state = 7}, @@ -2822,8 +2934,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, [142] = {.lex_state = 7}, - [143] = {.lex_state = 7}, - [144] = {.lex_state = 7}, + [143] = {.lex_state = 6}, + [144] = {.lex_state = 6}, [145] = {.lex_state = 7}, [146] = {.lex_state = 7}, [147] = {.lex_state = 7}, @@ -2837,151 +2949,181 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 7}, [156] = {.lex_state = 7}, [157] = {.lex_state = 7}, - [158] = {.lex_state = 3}, - [159] = {.lex_state = 3}, - [160] = {.lex_state = 3}, - [161] = {.lex_state = 5}, - [162] = {.lex_state = 5}, - [163] = {.lex_state = 5}, - [164] = {.lex_state = 3}, - [165] = {.lex_state = 5}, - [166] = {.lex_state = 5}, + [158] = {.lex_state = 7}, + [159] = {.lex_state = 7}, + [160] = {.lex_state = 7}, + [161] = {.lex_state = 7}, + [162] = {.lex_state = 7}, + [163] = {.lex_state = 7}, + [164] = {.lex_state = 7}, + [165] = {.lex_state = 7}, + [166] = {.lex_state = 7}, [167] = {.lex_state = 7}, [168] = {.lex_state = 7}, [169] = {.lex_state = 7}, [170] = {.lex_state = 7}, [171] = {.lex_state = 7}, - [172] = {.lex_state = 4}, - [173] = {.lex_state = 4}, + [172] = {.lex_state = 7}, + [173] = {.lex_state = 7}, [174] = {.lex_state = 7}, [175] = {.lex_state = 7}, [176] = {.lex_state = 7}, [177] = {.lex_state = 7}, - [178] = {.lex_state = 4}, + [178] = {.lex_state = 7}, [179] = {.lex_state = 7}, [180] = {.lex_state = 7}, [181] = {.lex_state = 7}, - [182] = {.lex_state = 7}, - [183] = {.lex_state = 7}, - [184] = {.lex_state = 7}, - [185] = {.lex_state = 3}, - [186] = {.lex_state = 3}, - [187] = {.lex_state = 7}, - [188] = {.lex_state = 7}, - [189] = {.lex_state = 7}, - [190] = {.lex_state = 7}, + [182] = {.lex_state = 5}, + [183] = {.lex_state = 5}, + [184] = {.lex_state = 3}, + [185] = {.lex_state = 5}, + [186] = {.lex_state = 5}, + [187] = {.lex_state = 3}, + [188] = {.lex_state = 3}, + [189] = {.lex_state = 5}, + [190] = {.lex_state = 3}, [191] = {.lex_state = 7}, - [192] = {.lex_state = 3}, - [193] = {.lex_state = 7}, + [192] = {.lex_state = 7}, + [193] = {.lex_state = 3}, [194] = {.lex_state = 7}, - [195] = {.lex_state = 3}, - [196] = {.lex_state = 6}, - [197] = {.lex_state = 4}, - [198] = {.lex_state = 11}, - [199] = {.lex_state = 11}, - [200] = {.lex_state = 4}, - [201] = {.lex_state = 6}, - [202] = {.lex_state = 4}, - [203] = {.lex_state = 3}, - [204] = {.lex_state = 11}, - [205] = {.lex_state = 3}, - [206] = {.lex_state = 3}, - [207] = {.lex_state = 11}, - [208] = {.lex_state = 4}, - [209] = {.lex_state = 6}, - [210] = {.lex_state = 6}, + [195] = {.lex_state = 7}, + [196] = {.lex_state = 7}, + [197] = {.lex_state = 3}, + [198] = {.lex_state = 7}, + [199] = {.lex_state = 7}, + [200] = {.lex_state = 7}, + [201] = {.lex_state = 7}, + [202] = {.lex_state = 7}, + [203] = {.lex_state = 7}, + [204] = {.lex_state = 7}, + [205] = {.lex_state = 4}, + [206] = {.lex_state = 4}, + [207] = {.lex_state = 7}, + [208] = {.lex_state = 7}, + [209] = {.lex_state = 7}, + [210] = {.lex_state = 7}, [211] = {.lex_state = 3}, - [212] = {.lex_state = 3}, - [213] = {.lex_state = 3}, - [214] = {.lex_state = 11}, - [215] = {.lex_state = 6}, - [216] = {.lex_state = 6}, + [212] = {.lex_state = 7}, + [213] = {.lex_state = 7}, + [214] = {.lex_state = 4}, + [215] = {.lex_state = 7}, + [216] = {.lex_state = 7}, [217] = {.lex_state = 3}, - [218] = {.lex_state = 11}, - [219] = {.lex_state = 3}, - [220] = {.lex_state = 3}, - [221] = {.lex_state = 3}, - [222] = {.lex_state = 11}, - [223] = {.lex_state = 11}, + [218] = {.lex_state = 7}, + [219] = {.lex_state = 7}, + [220] = {.lex_state = 4}, + [221] = {.lex_state = 11}, + [222] = {.lex_state = 4}, + [223] = {.lex_state = 4}, [224] = {.lex_state = 3}, - [225] = {.lex_state = 3}, - [226] = {.lex_state = 6}, + [225] = {.lex_state = 6}, + [226] = {.lex_state = 3}, [227] = {.lex_state = 3}, [228] = {.lex_state = 3}, [229] = {.lex_state = 3}, [230] = {.lex_state = 3}, [231] = {.lex_state = 6}, - [232] = {.lex_state = 3}, + [232] = {.lex_state = 6}, [233] = {.lex_state = 6}, [234] = {.lex_state = 6}, - [235] = {.lex_state = 6}, + [235] = {.lex_state = 11}, [236] = {.lex_state = 6}, - [237] = {.lex_state = 6}, - [238] = {.lex_state = 6}, - [239] = {.lex_state = 6}, - [240] = {.lex_state = 6}, - [241] = {.lex_state = 6}, - [242] = {.lex_state = 24}, - [243] = {.lex_state = 24}, - [244] = {.lex_state = 41}, - [245] = {.lex_state = 6}, - [246] = {.lex_state = 41}, - [247] = {.lex_state = 41}, - [248] = {.lex_state = 41}, - [249] = {.lex_state = 41}, - [250] = {.lex_state = 41}, - [251] = {.lex_state = 24}, - [252] = {.lex_state = 11}, - [253] = {.lex_state = 41}, - [254] = {.lex_state = 11}, - [255] = {.lex_state = 0}, - [256] = {.lex_state = 41}, - [257] = {.lex_state = 0}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 0}, - [260] = {.lex_state = 11}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 11}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 0}, - [266] = {.lex_state = 11}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, - [270] = {.lex_state = 11}, + [237] = {.lex_state = 11}, + [238] = {.lex_state = 11}, + [239] = {.lex_state = 11}, + [240] = {.lex_state = 4}, + [241] = {.lex_state = 11}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 6}, + [244] = {.lex_state = 3}, + [245] = {.lex_state = 11}, + [246] = {.lex_state = 3}, + [247] = {.lex_state = 3}, + [248] = {.lex_state = 3}, + [249] = {.lex_state = 6}, + [250] = {.lex_state = 3}, + [251] = {.lex_state = 11}, + [252] = {.lex_state = 3}, + [253] = {.lex_state = 3}, + [254] = {.lex_state = 3}, + [255] = {.lex_state = 3}, + [256] = {.lex_state = 3}, + [257] = {.lex_state = 6}, + [258] = {.lex_state = 6}, + [259] = {.lex_state = 6}, + [260] = {.lex_state = 6}, + [261] = {.lex_state = 6}, + [262] = {.lex_state = 6}, + [263] = {.lex_state = 6}, + [264] = {.lex_state = 6}, + [265] = {.lex_state = 6}, + [266] = {.lex_state = 24}, + [267] = {.lex_state = 24}, + [268] = {.lex_state = 6}, + [269] = {.lex_state = 42}, + [270] = {.lex_state = 42}, [271] = {.lex_state = 24}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 0}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 11}, - [276] = {.lex_state = 0}, - [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, + [272] = {.lex_state = 42}, + [273] = {.lex_state = 42}, + [274] = {.lex_state = 42}, + [275] = {.lex_state = 42}, + [276] = {.lex_state = 11}, + [277] = {.lex_state = 42}, + [278] = {.lex_state = 42}, + [279] = {.lex_state = 11}, [280] = {.lex_state = 0}, [281] = {.lex_state = 0}, [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, + [283] = {.lex_state = 11}, [284] = {.lex_state = 0}, - [285] = {.lex_state = 24}, - [286] = {.lex_state = 0}, - [287] = {.lex_state = 41}, + [285] = {.lex_state = 42}, + [286] = {.lex_state = 42}, + [287] = {.lex_state = 0}, [288] = {.lex_state = 0}, - [289] = {.lex_state = 41}, - [290] = {.lex_state = 41}, - [291] = {.lex_state = 0}, - [292] = {.lex_state = 0}, + [289] = {.lex_state = 0}, + [290] = {.lex_state = 0}, + [291] = {.lex_state = 42}, + [292] = {.lex_state = 11}, [293] = {.lex_state = 0}, [294] = {.lex_state = 0}, - [295] = {.lex_state = 0}, - [296] = {.lex_state = 0}, - [297] = {.lex_state = 47}, - [298] = {.lex_state = 41}, + [295] = {.lex_state = 24}, + [296] = {.lex_state = 11}, + [297] = {.lex_state = 42}, + [298] = {.lex_state = 0}, [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, + [300] = {.lex_state = 11}, + [301] = {.lex_state = 42}, [302] = {.lex_state = 0}, + [303] = {.lex_state = 42}, + [304] = {.lex_state = 11}, + [305] = {.lex_state = 0}, + [306] = {.lex_state = 0}, + [307] = {.lex_state = 0}, + [308] = {.lex_state = 0}, + [309] = {.lex_state = 0}, + [310] = {.lex_state = 0}, + [311] = {.lex_state = 0}, + [312] = {.lex_state = 0}, + [313] = {.lex_state = 0}, + [314] = {.lex_state = 0}, + [315] = {.lex_state = 42}, + [316] = {.lex_state = 42}, + [317] = {.lex_state = 42}, + [318] = {.lex_state = 0}, + [319] = {.lex_state = 24}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 0}, + [322] = {.lex_state = 48}, + [323] = {.lex_state = 0}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 0}, + [326] = {.lex_state = 0}, + [327] = {.lex_state = 42}, + [328] = {.lex_state = 42}, + [329] = {.lex_state = 42}, + [330] = {.lex_state = 0}, + [331] = {.lex_state = 0}, + [332] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3026,6 +3168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [sym_and_operator] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_CARET_CARET] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -3045,39 +3188,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(288), - [aux_sym__statement_list] = STATE(8), - [sym_doc_comment] = STATE(8), - [sym__line_insensitive_statement] = STATE(8), - [sym_statement] = STATE(164), - [sym_block] = STATE(8), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(8), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(8), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), + [sym_source_file] = STATE(318), + [aux_sym__statement_list] = STATE(6), + [sym_doc_comment] = STATE(6), + [sym__line_insensitive_statement] = STATE(6), + [sym_statement] = STATE(190), + [sym_block] = STATE(6), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(6), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(6), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), [ts_builtin_sym_end] = ACTIONS(3), [sym_comment] = ACTIONS(5), [anon_sym_POUND_POUND] = ACTIONS(7), @@ -3111,108 +3255,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(45), }, [2] = { - [aux_sym__statement_list] = STATE(2), - [sym_doc_comment] = STATE(2), - [sym__line_insensitive_statement] = STATE(2), - [sym_statement] = STATE(164), - [sym_block] = STATE(2), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(2), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(2), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [ts_builtin_sym_end] = ACTIONS(47), - [sym_comment] = ACTIONS(49), - [anon_sym_POUND_POUND] = ACTIONS(52), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_RBRACE] = ACTIONS(47), - [anon_sym_import] = ACTIONS(58), - [anon_sym_static] = ACTIONS(61), - [anon_sym_pure] = ACTIONS(61), - [anon_sym_proto] = ACTIONS(64), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_fn] = ACTIONS(70), - [anon_sym_PIPE] = ACTIONS(73), - [anon_sym_class] = ACTIONS(76), - [anon_sym_print] = ACTIONS(79), - [anon_sym_assert] = ACTIONS(82), - [anon_sym_return] = ACTIONS(85), - [anon_sym_let] = ACTIONS(88), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(91), - [anon_sym_LBRACK] = ACTIONS(94), - [anon_sym_any] = ACTIONS(97), - [anon_sym_int] = ACTIONS(97), - [anon_sym_str] = ACTIONS(97), - [anon_sym_bool] = ACTIONS(97), - [anon_sym_void] = ACTIONS(97), - [aux_sym_identifier_token1] = ACTIONS(100), - [sym_number] = ACTIONS(103), - [sym_string] = ACTIONS(103), - [anon_sym_true] = ACTIONS(106), - [anon_sym_false] = ACTIONS(106), - [anon_sym_error] = ACTIONS(106), - [sym_none] = ACTIONS(109), - }, - [3] = { - [aux_sym__statement_list] = STATE(6), - [sym_doc_comment] = STATE(6), - [sym__line_insensitive_statement] = STATE(6), - [sym_statement] = STATE(158), - [sym_block] = STATE(6), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(6), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(6), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(112), + [aux_sym__statement_list] = STATE(10), + [sym_doc_comment] = STATE(10), + [sym__line_insensitive_statement] = STATE(10), + [sym_statement] = STATE(187), + [sym_block] = STATE(10), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(10), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(10), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(71), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map_item] = STATE(284), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(47), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(49), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3241,43 +3321,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, - [4] = { - [aux_sym__statement_list] = STATE(2), - [sym_doc_comment] = STATE(2), - [sym__line_insensitive_statement] = STATE(2), - [sym_statement] = STATE(164), - [sym_block] = STATE(2), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(2), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(2), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(116), + [3] = { + [aux_sym__statement_list] = STATE(9), + [sym_doc_comment] = STATE(9), + [sym__line_insensitive_statement] = STATE(9), + [sym_statement] = STATE(188), + [sym_block] = STATE(9), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(9), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(9), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(71), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map_item] = STATE(294), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(51), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3306,43 +3388,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, - [5] = { - [aux_sym__statement_list] = STATE(4), - [sym_doc_comment] = STATE(4), - [sym__line_insensitive_statement] = STATE(4), - [sym_statement] = STATE(160), - [sym_block] = STATE(4), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(4), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(4), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(120), + [4] = { + [aux_sym__statement_list] = STATE(11), + [sym_doc_comment] = STATE(11), + [sym__line_insensitive_statement] = STATE(11), + [sym_statement] = STATE(184), + [sym_block] = STATE(11), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(11), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(11), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(71), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map_item] = STATE(284), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(55), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3371,43 +3455,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, - [6] = { - [aux_sym__statement_list] = STATE(2), - [sym_doc_comment] = STATE(2), - [sym__line_insensitive_statement] = STATE(2), - [sym_statement] = STATE(164), - [sym_block] = STATE(2), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(2), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(2), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(116), + [5] = { + [aux_sym__statement_list] = STATE(10), + [sym_doc_comment] = STATE(10), + [sym__line_insensitive_statement] = STATE(10), + [sym_statement] = STATE(187), + [sym_block] = STATE(10), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(10), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(10), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(71), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map_item] = STATE(284), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(47), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(59), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3436,43 +3522,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, - [7] = { - [aux_sym__statement_list] = STATE(2), - [sym_doc_comment] = STATE(2), - [sym__line_insensitive_statement] = STATE(2), - [sym_statement] = STATE(164), - [sym_block] = STATE(2), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(2), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(2), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(116), + [6] = { + [aux_sym__statement_list] = STATE(7), + [sym_doc_comment] = STATE(7), + [sym__line_insensitive_statement] = STATE(7), + [sym_statement] = STATE(190), + [sym_block] = STATE(7), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(7), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(7), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(61), + [sym_comment] = ACTIONS(63), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3501,43 +3588,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, + [7] = { + [aux_sym__statement_list] = STATE(7), + [sym_doc_comment] = STATE(7), + [sym__line_insensitive_statement] = STATE(7), + [sym_statement] = STATE(190), + [sym_block] = STATE(7), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(7), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(7), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_comment] = ACTIONS(67), + [anon_sym_POUND_POUND] = ACTIONS(70), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_import] = ACTIONS(76), + [anon_sym_static] = ACTIONS(79), + [anon_sym_pure] = ACTIONS(79), + [anon_sym_proto] = ACTIONS(82), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_fn] = ACTIONS(88), + [anon_sym_PIPE] = ACTIONS(91), + [anon_sym_class] = ACTIONS(94), + [anon_sym_print] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(100), + [anon_sym_return] = ACTIONS(103), + [anon_sym_let] = ACTIONS(106), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(112), + [anon_sym_any] = ACTIONS(115), + [anon_sym_int] = ACTIONS(115), + [anon_sym_str] = ACTIONS(115), + [anon_sym_bool] = ACTIONS(115), + [anon_sym_void] = ACTIONS(115), + [aux_sym_identifier_token1] = ACTIONS(118), + [sym_number] = ACTIONS(121), + [sym_string] = ACTIONS(121), + [anon_sym_true] = ACTIONS(124), + [anon_sym_false] = ACTIONS(124), + [anon_sym_error] = ACTIONS(124), + [sym_none] = ACTIONS(127), + }, [8] = { - [aux_sym__statement_list] = STATE(2), - [sym_doc_comment] = STATE(2), - [sym__line_insensitive_statement] = STATE(2), - [sym_statement] = STATE(164), - [sym_block] = STATE(2), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(2), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(2), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [ts_builtin_sym_end] = ACTIONS(128), - [sym_comment] = ACTIONS(116), + [aux_sym__statement_list] = STATE(10), + [sym_doc_comment] = STATE(10), + [sym__line_insensitive_statement] = STATE(10), + [sym_statement] = STATE(187), + [sym_block] = STATE(10), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(10), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(10), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(47), [anon_sym_POUND_POUND] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(130), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3567,42 +3721,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(45), }, [9] = { - [aux_sym__statement_list] = STATE(7), - [sym_doc_comment] = STATE(7), - [sym__line_insensitive_statement] = STATE(7), - [sym_statement] = STATE(159), - [sym_block] = STATE(7), - [sym_import] = STATE(220), - [sym_qualifier] = STATE(242), - [sym_qualifier_list] = STATE(271), - [sym_proto] = STATE(220), - [sym_function_declaration] = STATE(7), - [sym_lambda] = STATE(105), - [sym_class_declaration] = STATE(7), - [sym_print] = STATE(220), - [sym_assert] = STATE(220), - [sym_return] = STATE(220), - [sym_expression] = STATE(35), - [sym_parenthesized_expression] = STATE(105), - [sym_access] = STATE(95), - [sym_call] = STATE(105), - [sym_literal] = STATE(105), - [sym_var_decl] = STATE(220), - [sym_assignment] = STATE(220), - [sym_unary_operator] = STATE(37), - [sym_unary_expression] = STATE(105), - [sym_binary_expression] = STATE(105), - [sym_vec] = STATE(105), - [sym_index] = STATE(105), - [sym_slice] = STATE(105), - [sym_primitive_type] = STATE(92), - [sym_identifier] = STATE(95), - [sym_bool] = STATE(107), - [aux_sym_qualifier_list_repeat1] = STATE(242), - [sym_comment] = ACTIONS(130), + [aux_sym__statement_list] = STATE(12), + [sym_doc_comment] = STATE(12), + [sym__line_insensitive_statement] = STATE(12), + [sym_statement] = STATE(190), + [sym_block] = STATE(12), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(12), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(12), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(132), [anon_sym_POUND_POUND] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_LBRACE] = ACTIONS(134), + [anon_sym_RBRACE] = ACTIONS(136), + [anon_sym_import] = ACTIONS(11), + [anon_sym_static] = ACTIONS(13), + [anon_sym_pure] = ACTIONS(13), + [anon_sym_proto] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_fn] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_return] = ACTIONS(29), + [anon_sym_let] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_any] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_str] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_void] = ACTIONS(37), + [aux_sym_identifier_token1] = ACTIONS(39), + [sym_number] = ACTIONS(41), + [sym_string] = ACTIONS(41), + [anon_sym_true] = ACTIONS(43), + [anon_sym_false] = ACTIONS(43), + [anon_sym_error] = ACTIONS(43), + [sym_none] = ACTIONS(45), + }, + [10] = { + [aux_sym__statement_list] = STATE(12), + [sym_doc_comment] = STATE(12), + [sym__line_insensitive_statement] = STATE(12), + [sym_statement] = STATE(190), + [sym_block] = STATE(12), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(12), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(12), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(132), + [anon_sym_POUND_POUND] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(134), + [anon_sym_RBRACE] = ACTIONS(138), + [anon_sym_import] = ACTIONS(11), + [anon_sym_static] = ACTIONS(13), + [anon_sym_pure] = ACTIONS(13), + [anon_sym_proto] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_fn] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [anon_sym_class] = ACTIONS(23), + [anon_sym_print] = ACTIONS(25), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_return] = ACTIONS(29), + [anon_sym_let] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_any] = ACTIONS(37), + [anon_sym_int] = ACTIONS(37), + [anon_sym_str] = ACTIONS(37), + [anon_sym_bool] = ACTIONS(37), + [anon_sym_void] = ACTIONS(37), + [aux_sym_identifier_token1] = ACTIONS(39), + [sym_number] = ACTIONS(41), + [sym_string] = ACTIONS(41), + [anon_sym_true] = ACTIONS(43), + [anon_sym_false] = ACTIONS(43), + [anon_sym_error] = ACTIONS(43), + [sym_none] = ACTIONS(45), + }, + [11] = { + [aux_sym__statement_list] = STATE(12), + [sym_doc_comment] = STATE(12), + [sym__line_insensitive_statement] = STATE(12), + [sym_statement] = STATE(190), + [sym_block] = STATE(12), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(12), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(12), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(132), + [anon_sym_POUND_POUND] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(134), + [anon_sym_RBRACE] = ACTIONS(140), [anon_sym_import] = ACTIONS(11), [anon_sym_static] = ACTIONS(13), [anon_sym_pure] = ACTIONS(13), @@ -3631,29 +3918,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_error] = ACTIONS(43), [sym_none] = ACTIONS(45), }, + [12] = { + [aux_sym__statement_list] = STATE(12), + [sym_doc_comment] = STATE(12), + [sym__line_insensitive_statement] = STATE(12), + [sym_statement] = STATE(190), + [sym_block] = STATE(12), + [sym_import] = STATE(248), + [sym_qualifier] = STATE(266), + [sym_qualifier_list] = STATE(295), + [sym_proto] = STATE(248), + [sym_function_declaration] = STATE(12), + [sym_lambda] = STATE(129), + [sym_class_declaration] = STATE(12), + [sym_print] = STATE(248), + [sym_assert] = STATE(248), + [sym_return] = STATE(248), + [sym_expression] = STATE(97), + [sym_parenthesized_expression] = STATE(129), + [sym_access] = STATE(108), + [sym_call] = STATE(129), + [sym_literal] = STATE(129), + [sym_var_decl] = STATE(248), + [sym_assignment] = STATE(248), + [sym_unary_operator] = STATE(62), + [sym_unary_expression] = STATE(129), + [sym_binary_expression] = STATE(129), + [sym_vec] = STATE(129), + [sym_index] = STATE(129), + [sym_slice] = STATE(129), + [sym_map] = STATE(129), + [sym_primitive_type] = STATE(107), + [sym_identifier] = STATE(108), + [sym_bool] = STATE(118), + [aux_sym_qualifier_list_repeat1] = STATE(266), + [sym_comment] = ACTIONS(142), + [anon_sym_POUND_POUND] = ACTIONS(70), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_import] = ACTIONS(76), + [anon_sym_static] = ACTIONS(79), + [anon_sym_pure] = ACTIONS(79), + [anon_sym_proto] = ACTIONS(82), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_fn] = ACTIONS(88), + [anon_sym_PIPE] = ACTIONS(91), + [anon_sym_class] = ACTIONS(94), + [anon_sym_print] = ACTIONS(97), + [anon_sym_assert] = ACTIONS(100), + [anon_sym_return] = ACTIONS(103), + [anon_sym_let] = ACTIONS(106), + [anon_sym_DASH] = ACTIONS(109), + [anon_sym_BANG] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(112), + [anon_sym_any] = ACTIONS(115), + [anon_sym_int] = ACTIONS(115), + [anon_sym_str] = ACTIONS(115), + [anon_sym_bool] = ACTIONS(115), + [anon_sym_void] = ACTIONS(115), + [aux_sym_identifier_token1] = ACTIONS(118), + [sym_number] = ACTIONS(121), + [sym_string] = ACTIONS(121), + [anon_sym_true] = ACTIONS(124), + [anon_sym_false] = ACTIONS(124), + [anon_sym_error] = ACTIONS(124), + [sym_none] = ACTIONS(127), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 15, + [0] = 4, + ACTIONS(148), 1, + ts_builtin_sym_end, + ACTIONS(152), 1, + anon_sym_LF, + ACTIONS(154), 20, + anon_sym_import, + anon_sym_proto, + anon_sym_PIPE, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_BANG, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + sym_number, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + ACTIONS(150), 28, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [59] = 3, + ACTIONS(152), 1, + anon_sym_LF, + ACTIONS(154), 21, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_proto, + anon_sym_PIPE, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_BANG, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + sym_number, + sym_string, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + ACTIONS(150), 26, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [114] = 16, ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(136), 1, + ACTIONS(158), 1, anon_sym_LF, - ACTIONS(138), 1, + ACTIONS(160), 1, + anon_sym_LBRACE, + ACTIONS(162), 1, anon_sym_LPAREN, - ACTIONS(140), 1, + ACTIONS(164), 1, anon_sym_PIPE, - ACTIONS(144), 1, + ACTIONS(168), 1, anon_sym_LBRACK, - STATE(37), 1, + STATE(62), 1, sym_unary_operator, - STATE(56), 1, + STATE(95), 1, sym_expression, - STATE(92), 1, - sym_primitive_type, STATE(107), 1, + sym_primitive_type, + STATE(118), 1, sym_bool, - ACTIONS(142), 2, + ACTIONS(166), 2, anon_sym_DASH, anon_sym_BANG, ACTIONS(43), 3, @@ -3670,17 +4132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - ACTIONS(134), 9, + ACTIONS(156), 8, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_static, anon_sym_pure, anon_sym_fn, anon_sym_class, - STATE(105), 11, + STATE(129), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3691,47 +4152,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [73] = 16, - ACTIONS(146), 1, + [190] = 17, + ACTIONS(170), 1, anon_sym_LBRACE, - ACTIONS(148), 1, + ACTIONS(172), 1, + anon_sym_RBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(119), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, - STATE(149), 1, - sym_block, + STATE(313), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3742,47 +4206,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [140] = 16, - ACTIONS(148), 1, + [261] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(164), 1, - anon_sym_RPAREN, - STATE(84), 1, + ACTIONS(190), 1, + anon_sym_RBRACE, + STATE(45), 1, sym_unary_operator, - STATE(126), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, - STATE(286), 1, - sym_arg_list, + STATE(284), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3793,47 +4260,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [207] = 16, - ACTIONS(17), 1, + [332] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(166), 1, - anon_sym_LBRACE, - STATE(37), 1, + ACTIONS(192), 1, + anon_sym_RBRACE, + STATE(45), 1, sym_unary_operator, - STATE(86), 1, - sym_expression, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(102), 1, - sym_block, - STATE(107), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, + STATE(294), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3844,47 +4314,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [274] = 16, - ACTIONS(17), 1, + [403] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(166), 1, - anon_sym_LBRACE, - STATE(37), 1, - sym_unary_operator, + ACTIONS(194), 1, + anon_sym_RBRACE, STATE(45), 1, - sym_expression, - STATE(92), 1, + sym_unary_operator, + STATE(144), 1, sym_primitive_type, - STATE(104), 1, - sym_block, - STATE(107), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, + STATE(313), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3895,47 +4368,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [341] = 16, - ACTIONS(148), 1, + [474] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(168), 1, + ACTIONS(196), 1, anon_sym_RPAREN, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(126), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(146), 1, + sym_expression, + STATE(178), 1, sym_bool, - STATE(294), 1, + STATE(330), 1, sym_arg_list, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3946,47 +4422,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [408] = 16, - ACTIONS(146), 1, + [545] = 17, + ACTIONS(170), 1, anon_sym_LBRACE, - ACTIONS(148), 1, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - STATE(84), 1, + ACTIONS(198), 1, + anon_sym_RPAREN, + STATE(45), 1, sym_unary_operator, - STATE(121), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(139), 1, - sym_block, - STATE(142), 1, + STATE(146), 1, + sym_expression, + STATE(178), 1, sym_bool, + STATE(320), 1, + sym_arg_list, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -3997,45 +4476,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [475] = 15, - ACTIONS(148), 1, + [616] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(170), 1, - anon_sym_RBRACK, - STATE(84), 1, + ACTIONS(200), 1, + anon_sym_RBRACE, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, + STATE(313), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4046,45 +4530,50 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [539] = 15, - ACTIONS(148), 1, + [687] = 17, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(172), 1, - anon_sym_RBRACK, - STATE(84), 1, + ACTIONS(202), 1, + anon_sym_RBRACE, + STATE(45), 1, sym_unary_operator, - STATE(125), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(161), 1, + sym_expression, + STATE(178), 1, sym_bool, + STATE(313), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4095,45 +4584,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [603] = 15, - ACTIONS(148), 1, + [758] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(174), 1, - anon_sym_RPAREN, - STATE(84), 1, + ACTIONS(204), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, + STATE(142), 1, sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4144,45 +4636,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [667] = 15, - ACTIONS(148), 1, + [826] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(176), 1, - anon_sym_RBRACK, - STATE(84), 1, + ACTIONS(206), 1, + anon_sym_COLON, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(137), 1, + STATE(148), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4193,45 +4688,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [731] = 15, - ACTIONS(148), 1, + [894] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(178), 1, - anon_sym_RPAREN, - STATE(84), 1, + ACTIONS(208), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(165), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4242,45 +4740,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [795] = 15, - ACTIONS(148), 1, + [962] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(180), 1, - anon_sym_COLON, - STATE(84), 1, + ACTIONS(210), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(130), 1, + STATE(145), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4291,45 +4792,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [859] = 15, - ACTIONS(148), 1, + [1030] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(182), 1, + ACTIONS(212), 1, anon_sym_RBRACK, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(153), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4340,45 +4844,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [923] = 15, - ACTIONS(148), 1, + [1098] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(184), 1, - anon_sym_COLON, - STATE(84), 1, + ACTIONS(214), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(129), 1, + STATE(147), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4389,45 +4896,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [987] = 15, - ACTIONS(148), 1, + [1166] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(186), 1, + ACTIONS(216), 1, anon_sym_RBRACK, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(127), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(166), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4438,45 +4948,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1051] = 15, - ACTIONS(148), 1, + [1234] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, ACTIONS(188), 1, - anon_sym_RBRACK, - STATE(84), 1, + sym_none, + ACTIONS(218), 1, + anon_sym_RPAREN, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(147), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4487,45 +5000,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1115] = 15, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, + [1302] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(190), 1, - anon_sym_RBRACK, - STATE(84), 1, + ACTIONS(220), 1, + anon_sym_RPAREN, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(136), 1, + STATE(147), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4536,45 +5052,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1179] = 15, - ACTIONS(148), 1, + [1370] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(192), 1, + ACTIONS(222), 1, anon_sym_RBRACK, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(133), 1, + STATE(147), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4585,45 +5104,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1243] = 15, - ACTIONS(148), 1, + [1438] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(194), 1, + ACTIONS(224), 1, anon_sym_RBRACK, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(134), 1, + STATE(155), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4634,45 +5156,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1307] = 15, - ACTIONS(148), 1, + [1506] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - ACTIONS(196), 1, - anon_sym_RBRACK, - STATE(84), 1, + ACTIONS(226), 1, + anon_sym_COLON, + STATE(45), 1, sym_unary_operator, - STATE(124), 1, - sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(149), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4683,43 +5208,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1371] = 14, - ACTIONS(148), 1, + [1574] = 16, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - STATE(84), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + STATE(45), 1, sym_unary_operator, - STATE(122), 1, + STATE(135), 1, sym_expression, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(142), 1, + STATE(170), 1, + sym_block, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4730,43 +5260,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1432] = 14, - ACTIONS(148), 1, + [1642] = 16, + ACTIONS(17), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(45), 1, sym_none, - STATE(84), 1, + ACTIONS(230), 1, + anon_sym_LBRACE, + STATE(62), 1, sym_unary_operator, - STATE(124), 1, + STATE(74), 1, sym_expression, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(142), 1, + STATE(118), 1, sym_bool, + STATE(128), 1, + sym_block, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(41), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(43), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(129), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4777,43 +5312,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1493] = 14, - ACTIONS(148), 1, + [1710] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(150), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(156), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, + ACTIONS(188), 1, sym_none, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(135), 1, + STATE(161), 1, sym_expression, - STATE(142), 1, + STATE(178), 1, sym_bool, + STATE(313), 1, + sym_map_item, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4824,139 +5364,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1554] = 15, - ACTIONS(200), 1, - anon_sym_LF, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(198), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [1617] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(222), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(220), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, + [1778] = 16, + ACTIONS(170), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [1680] = 14, - ACTIONS(17), 1, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - STATE(37), 1, + ACTIONS(232), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(91), 1, - sym_expression, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(107), 1, + STATE(147), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -4967,8 +5416,9 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1741] = 14, + [1846] = 16, ACTIONS(17), 1, anon_sym_LPAREN, ACTIONS(21), 1, @@ -4979,13 +5429,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_identifier_token1, ACTIONS(45), 1, sym_none, - STATE(37), 1, + ACTIONS(230), 1, + anon_sym_LBRACE, + STATE(62), 1, sym_unary_operator, - STATE(77), 1, + STATE(73), 1, sym_expression, - STATE(92), 1, - sym_primitive_type, STATE(107), 1, + sym_primitive_type, + STATE(111), 1, + sym_block, + STATE(118), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, @@ -5003,7 +5457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(129), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5014,43 +5468,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1802] = 14, - ACTIONS(17), 1, + [1914] = 16, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - STATE(37), 1, + ACTIONS(234), 1, + anon_sym_RBRACK, + STATE(45), 1, sym_unary_operator, - STATE(50), 1, - sym_expression, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(107), 1, + STATE(147), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5061,113 +5520,48 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1863] = 2, - ACTIONS(224), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, + [1982] = 16, + ACTIONS(174), 1, anon_sym_LPAREN, + ACTIONS(176), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, + ACTIONS(178), 1, anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(226), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, + ACTIONS(182), 1, aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, + ACTIONS(188), 1, sym_none, - [1900] = 2, - ACTIONS(228), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + ACTIONS(228), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(230), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [1937] = 14, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, + STATE(45), 1, sym_unary_operator, - STATE(128), 1, - sym_primitive_type, - STATE(132), 1, + STATE(134), 1, sym_expression, - STATE(142), 1, + STATE(144), 1, + sym_primitive_type, + STATE(160), 1, + sym_block, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5178,78 +5572,59 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [1998] = 2, - ACTIONS(232), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + [2050] = 15, + ACTIONS(170), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, + ACTIONS(176), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, + ACTIONS(178), 1, anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(234), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, + ACTIONS(182), 1, aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, + ACTIONS(188), 1, sym_none, - [2035] = 2, - ACTIONS(236), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + STATE(45), 1, + sym_unary_operator, + STATE(139), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - anon_sym_LBRACK, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(238), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [2072] = 14, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2115] = 15, ACTIONS(17), 1, anon_sym_LPAREN, ACTIONS(21), 1, @@ -5260,13 +5635,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_identifier_token1, ACTIONS(45), 1, sym_none, - STATE(37), 1, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, sym_unary_operator, - STATE(54), 1, + STATE(99), 1, sym_expression, - STATE(92), 1, - sym_primitive_type, STATE(107), 1, + sym_primitive_type, + STATE(118), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, @@ -5284,7 +5661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(129), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5295,126 +5672,46 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [2133] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(242), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(240), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [2196] = 2, - ACTIONS(244), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + [2180] = 15, + ACTIONS(170), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(246), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [2233] = 14, - ACTIONS(17), 1, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - STATE(37), 1, + STATE(45), 1, sym_unary_operator, - STATE(55), 1, + STATE(133), 1, sym_expression, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(107), 1, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5425,78 +5722,146 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [2294] = 2, - ACTIONS(248), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + [2245] = 15, + ACTIONS(170), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, + ACTIONS(176), 1, anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(136), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - anon_sym_LBRACK, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(250), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2310] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(144), 1, + sym_primitive_type, + STATE(173), 1, + sym_expression, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - sym_none, - [2331] = 14, - ACTIONS(17), 1, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2375] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(176), 1, anon_sym_PIPE, - ACTIONS(35), 1, + ACTIONS(178), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + ACTIONS(188), 1, sym_none, - STATE(37), 1, + STATE(45), 1, sym_unary_operator, - STATE(53), 1, - sym_expression, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(107), 1, + STATE(150), 1, + sym_expression, + STATE(178), 1, sym_bool, ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(43), 3, + ACTIONS(186), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, + STATE(176), 12, sym_lambda, sym_parenthesized_expression, sym_access, @@ -5507,212 +5872,1134 @@ static const uint16_t ts_small_parse_table[] = { sym_vec, sym_index, sym_slice, + sym_map, sym_identifier, - [2392] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(254), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(252), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [2455] = 2, - ACTIONS(256), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + [2440] = 15, + ACTIONS(170), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, + ACTIONS(176), 1, anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(144), 1, + sym_primitive_type, + STATE(171), 1, + sym_expression, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - anon_sym_LBRACK, + ACTIONS(184), 2, sym_number, sym_string, - ACTIONS(258), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2505] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, + ACTIONS(45), 1, sym_none, - [2492] = 2, - ACTIONS(260), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, + ACTIONS(236), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, + STATE(62), 1, + sym_unary_operator, + STATE(101), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - anon_sym_LBRACK, + ACTIONS(41), 2, sym_number, sym_string, - ACTIONS(262), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2570] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, + ACTIONS(45), 1, sym_none, - [2529] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(77), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2635] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(137), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2700] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(76), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2765] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(68), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2830] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(141), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2895] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(98), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [2960] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(140), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3025] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(81), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3090] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, + anon_sym_LPAREN, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(138), 1, + sym_expression, + STATE(144), 1, + sym_primitive_type, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3155] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(72), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3220] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(92), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3285] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(75), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3350] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(96), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3415] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(70), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3480] = 15, + ACTIONS(170), 1, + anon_sym_LBRACE, + ACTIONS(174), 1, anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(176), 1, + anon_sym_PIPE, + ACTIONS(178), 1, + anon_sym_LBRACK, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(188), 1, + sym_none, + STATE(45), 1, + sym_unary_operator, + STATE(144), 1, + sym_primitive_type, + STATE(147), 1, + sym_expression, + STATE(178), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(184), 2, + sym_number, + sym_string, + ACTIONS(186), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(176), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3545] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(69), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3610] = 15, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(266), 1, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(45), 1, + sym_none, + ACTIONS(236), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_unary_operator, + STATE(87), 1, + sym_expression, + STATE(107), 1, + sym_primitive_type, + STATE(118), 1, + sym_bool, + ACTIONS(33), 2, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(41), 2, + sym_number, + sym_string, + ACTIONS(43), 3, + anon_sym_true, + anon_sym_false, + anon_sym_error, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + STATE(129), 12, + sym_lambda, + sym_parenthesized_expression, + sym_access, + sym_call, + sym_literal, + sym_unary_expression, + sym_binary_expression, + sym_vec, + sym_index, + sym_slice, + sym_map, + sym_identifier, + [3675] = 11, + ACTIONS(240), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(238), 21, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(216), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(212), 3, + [3731] = 13, + ACTIONS(240), 1, + anon_sym_LF, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(238), 13, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + anon_sym_COLON, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + [3791] = 9, + ACTIONS(240), 1, + anon_sym_LF, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_LBRACK, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(238), 25, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(264), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [2592] = 15, - ACTIONS(202), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + [3843] = 16, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(270), 1, + ACTIONS(258), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + ACTIONS(260), 1, + anon_sym_COLON, + ACTIONS(262), 1, + sym_and_operator, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(216), 2, + ACTIONS(264), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(212), 3, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(268), 9, + ACTIONS(256), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -5722,45 +7009,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [2655] = 15, - ACTIONS(202), 1, + [3909] = 10, + ACTIONS(240), 1, + anon_sym_LF, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(274), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(272), 9, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(238), 24, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -5770,45 +7038,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [2718] = 15, - ACTIONS(202), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + [3963] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(268), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(216), 2, + ACTIONS(264), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(212), 3, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(276), 9, + ACTIONS(266), 10, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -5818,80 +7101,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [2781] = 2, - ACTIONS(280), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(282), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [2818] = 15, - ACTIONS(202), 1, + anon_sym_COLON, + [4027] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(286), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(272), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(216), 2, + ACTIONS(264), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(212), 3, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(284), 9, + ACTIONS(270), 10, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -5901,42 +7150,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [2881] = 14, - ACTIONS(202), 1, + anon_sym_COLON, + [4091] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(276), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(212), 3, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(288), 11, + ACTIONS(274), 10, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -5946,70 +7199,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - [2942] = 2, - ACTIONS(47), 12, - ts_builtin_sym_end, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(292), 20, - anon_sym_import, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [2979] = 12, - ACTIONS(202), 1, + anon_sym_COLON, + [4155] = 12, + ACTIONS(240), 1, + anon_sym_LF, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(290), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(212), 3, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(288), 18, + ACTIONS(238), 19, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -6021,6 +7238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -6028,30 +7246,42 @@ static const uint16_t ts_small_parse_table[] = { sym_and_operator, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - [3036] = 11, - ACTIONS(202), 1, + [4213] = 14, + ACTIONS(240), 1, + anon_sym_LF, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(290), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(262), 1, + sym_and_operator, + STATE(51), 1, sym_or_operator, - ACTIONS(212), 3, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(288), 20, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(238), 12, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -6061,19 +7291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_and_operator, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - [3091] = 2, - ACTIONS(294), 12, + [4275] = 2, + ACTIONS(278), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -6086,7 +7308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(296), 20, + ACTIONS(280), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -6107,51 +7329,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [3128] = 10, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(290), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(288), 23, - anon_sym_SEMI, + [4312] = 2, + ACTIONS(282), 12, + ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(284), 20, + anon_sym_import, anon_sym_static, anon_sym_pure, + anon_sym_proto, anon_sym_fn, anon_sym_class, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - [3181] = 2, - ACTIONS(298), 12, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [4349] = 2, + ACTIONS(286), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -6164,7 +7378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(300), 20, + ACTIONS(288), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -6185,561 +7399,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [3218] = 13, - ACTIONS(202), 1, + [4386] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(292), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(212), 3, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(288), 12, + ACTIONS(290), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - [3277] = 14, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(120), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(158), 2, - sym_number, - sym_string, - ACTIONS(160), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3338] = 14, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(82), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(41), 2, - sym_number, - sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3399] = 14, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(118), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(158), 2, - sym_number, - sym_string, - ACTIONS(160), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3460] = 14, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(66), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [4449] = 2, + ACTIONS(294), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(296), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3521] = 14, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(116), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(158), 2, - sym_number, - sym_string, - ACTIONS(160), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3582] = 14, - ACTIONS(17), 1, + sym_none, + [4486] = 2, + ACTIONS(298), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(64), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(300), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3643] = 14, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(62), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(41), 2, - sym_number, - sym_string, - ACTIONS(43), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(37), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3704] = 14, - ACTIONS(17), 1, + sym_none, + [4523] = 2, + ACTIONS(302), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(61), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(304), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3765] = 14, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + anon_sym_true, + anon_sym_false, + anon_sym_error, sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(59), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, + [4560] = 2, + ACTIONS(306), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(308), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3826] = 14, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(45), 1, + anon_sym_true, + anon_sym_false, + anon_sym_error, sym_none, - STATE(37), 1, - sym_unary_operator, - STATE(58), 1, - sym_expression, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, + [4597] = 2, + ACTIONS(148), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(154), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [3887] = 15, - ACTIONS(202), 1, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [4634] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(210), 1, + ACTIONS(246), 1, sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(304), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(312), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, + STATE(51), 1, sym_or_operator, - ACTIONS(208), 2, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(216), 2, + ACTIONS(264), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(212), 3, + ACTIONS(248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, + ACTIONS(252), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(302), 9, + ACTIONS(310), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -6749,55 +7670,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [3950] = 14, - ACTIONS(148), 1, + [4697] = 2, + ACTIONS(314), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(150), 1, anon_sym_PIPE, - ACTIONS(152), 1, + anon_sym_DASH, + anon_sym_BANG, anon_sym_LBRACK, - ACTIONS(156), 1, + sym_number, + sym_string, + ACTIONS(316), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, aux_sym_identifier_token1, - ACTIONS(162), 1, + anon_sym_true, + anon_sym_false, + anon_sym_error, sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(115), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, + [4734] = 2, + ACTIONS(318), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, anon_sym_DASH, anon_sym_BANG, - ACTIONS(158), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(160), 3, + ACTIONS(320), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, + sym_none, + [4771] = 2, + ACTIONS(322), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(324), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [4011] = 2, - ACTIONS(306), 12, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [4808] = 2, + ACTIONS(65), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(326), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [4845] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(330), 1, + anon_sym_LF, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(328), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [4908] = 2, + ACTIONS(332), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -6810,7 +7872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(308), 20, + ACTIONS(334), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -6831,118 +7893,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [4048] = 14, - ACTIONS(17), 1, + [4945] = 2, + ACTIONS(336), 12, + ts_builtin_sym_end, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(45), 1, - sym_none, - STATE(34), 1, - sym_expression, - STATE(37), 1, - sym_unary_operator, - STATE(92), 1, - sym_primitive_type, - STATE(107), 1, - sym_bool, - ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - ACTIONS(41), 2, + anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(43), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(37), 5, + ACTIONS(338), 20, + anon_sym_import, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_class, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - STATE(105), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [4109] = 14, - ACTIONS(148), 1, - anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(117), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(158), 2, - sym_number, - sym_string, - ACTIONS(160), 3, anon_sym_true, anon_sym_false, anon_sym_error, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [4170] = 9, - ACTIONS(202), 1, + sym_none, + [4982] = 15, + ACTIONS(242), 1, anon_sym_DOT, - ACTIONS(204), 1, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(218), 1, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(342), 1, anon_sym_LF, - STATE(72), 1, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, sym_multiplicative_operator, - STATE(73), 1, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(340), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [5045] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(346), 1, + anon_sym_LF, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, sym_additive_operator, - STATE(74), 1, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(344), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [5108] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(258), 1, + anon_sym_LF, + ACTIONS(262), 1, + sym_and_operator, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, sym_comparative_operator, - STATE(75), 1, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(256), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [5171] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(350), 1, + anon_sym_LF, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(348), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [5234] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, + anon_sym_LBRACK, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(354), 1, + anon_sym_LF, + STATE(51), 1, sym_or_operator, - ACTIONS(288), 24, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(352), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -6952,23 +8168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - sym_power_operator, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - [4221] = 2, - ACTIONS(310), 12, + [5297] = 2, + ACTIONS(356), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -6981,7 +8182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(312), 20, + ACTIONS(358), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -7002,55 +8203,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [4258] = 14, - ACTIONS(148), 1, + [5334] = 15, + ACTIONS(242), 1, + anon_sym_DOT, + ACTIONS(244), 1, anon_sym_LPAREN, - ACTIONS(150), 1, - anon_sym_PIPE, - ACTIONS(152), 1, + ACTIONS(246), 1, + sym_power_operator, + ACTIONS(250), 1, anon_sym_LBRACK, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(162), 1, - sym_none, - STATE(84), 1, - sym_unary_operator, - STATE(123), 1, - sym_expression, - STATE(128), 1, - sym_primitive_type, - STATE(142), 1, - sym_bool, - ACTIONS(33), 2, + ACTIONS(262), 1, + sym_and_operator, + ACTIONS(362), 1, + anon_sym_LF, + STATE(51), 1, + sym_or_operator, + STATE(53), 1, + sym_comparative_operator, + STATE(54), 1, + sym_additive_operator, + STATE(60), 1, + sym_multiplicative_operator, + ACTIONS(254), 2, anon_sym_DASH, - anon_sym_BANG, - ACTIONS(158), 2, - sym_number, - sym_string, - ACTIONS(160), 3, - anon_sym_true, - anon_sym_false, - anon_sym_error, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - STATE(140), 11, - sym_lambda, - sym_parenthesized_expression, - sym_access, - sym_call, - sym_literal, - sym_unary_expression, - sym_binary_expression, - sym_vec, - sym_index, - sym_slice, - sym_identifier, - [4319] = 2, - ACTIONS(314), 12, + anon_sym_PLUS, + ACTIONS(264), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(252), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(360), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [5397] = 2, + ACTIONS(364), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -7063,7 +8265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(316), 20, + ACTIONS(366), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -7084,56 +8286,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [4356] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, - sym_power_operator, - ACTIONS(214), 1, - sym_and_operator, - ACTIONS(218), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(318), 9, - anon_sym_SEMI, + [5434] = 2, + ACTIONS(368), 12, + ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(370), 20, + anon_sym_import, anon_sym_static, anon_sym_pure, + anon_sym_proto, anon_sym_fn, anon_sym_class, - [4419] = 2, - ACTIONS(322), 12, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_let, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [5471] = 2, + ACTIONS(372), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -7146,7 +8335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(324), 20, + ACTIONS(374), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -7167,8 +8356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [4456] = 2, - ACTIONS(326), 12, + [5508] = 2, + ACTIONS(376), 12, ts_builtin_sym_end, sym_comment, anon_sym_POUND_POUND, @@ -7181,7 +8370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(328), 20, + ACTIONS(378), 20, anon_sym_import, anon_sym_static, anon_sym_pure, @@ -7202,128 +8391,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [4493] = 2, - ACTIONS(330), 12, - ts_builtin_sym_end, + [5545] = 2, + ACTIONS(382), 1, + anon_sym_LF, + ACTIONS(380), 30, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5581] = 2, + ACTIONS(386), 1, + anon_sym_LF, + ACTIONS(384), 30, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5617] = 3, + ACTIONS(390), 1, + anon_sym_LF, + ACTIONS(392), 1, + anon_sym_EQ, + ACTIONS(388), 28, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5654] = 2, + ACTIONS(396), 1, + anon_sym_LF, + ACTIONS(394), 29, + anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(332), 20, - anon_sym_import, + anon_sym_DOT, anon_sym_static, anon_sym_pure, - anon_sym_proto, + anon_sym_LPAREN, anon_sym_fn, anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [4530] = 2, - ACTIONS(334), 12, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5689] = 2, + ACTIONS(400), 1, + anon_sym_LF, + ACTIONS(398), 28, + anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(336), 20, - anon_sym_import, + anon_sym_DOT, anon_sym_static, anon_sym_pure, - anon_sym_proto, + anon_sym_LPAREN, anon_sym_fn, anon_sym_class, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_let, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [4567] = 15, - ACTIONS(202), 1, - anon_sym_DOT, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(210), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, sym_power_operator, - ACTIONS(214), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_and_operator, - ACTIONS(218), 1, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, anon_sym_LBRACK, - ACTIONS(340), 1, + [5723] = 2, + ACTIONS(268), 1, anon_sym_LF, - STATE(72), 1, - sym_multiplicative_operator, - STATE(73), 1, - sym_additive_operator, - STATE(74), 1, - sym_comparative_operator, - STATE(75), 1, - sym_or_operator, - ACTIONS(208), 2, + ACTIONS(266), 28, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_class, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(216), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(212), 3, + sym_power_operator, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(206), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(338), 9, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5757] = 2, + ACTIONS(404), 1, + anon_sym_LF, + ACTIONS(402), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_static, anon_sym_pure, + anon_sym_LPAREN, anon_sym_fn, anon_sym_class, - [4630] = 2, - ACTIONS(344), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [5791] = 2, + ACTIONS(408), 1, anon_sym_LF, - ACTIONS(342), 30, + ACTIONS(406), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7333,13 +8635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_pure, anon_sym_LPAREN, - anon_sym_DASH_GT, anon_sym_fn, anon_sym_class, anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_EQ, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7354,10 +8654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4666] = 2, - ACTIONS(348), 1, + [5825] = 2, + ACTIONS(412), 1, anon_sym_LF, - ACTIONS(346), 30, + ACTIONS(410), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7367,13 +8667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_pure, anon_sym_LPAREN, - anon_sym_DASH_GT, anon_sym_fn, anon_sym_class, anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_EQ, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7388,10 +8686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4702] = 2, - ACTIONS(352), 1, + [5859] = 2, + ACTIONS(416), 1, anon_sym_LF, - ACTIONS(350), 28, + ACTIONS(414), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7405,7 +8703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, - anon_sym_EQ, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7420,12 +8718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4736] = 3, - ACTIONS(356), 1, + [5893] = 2, + ACTIONS(420), 1, anon_sym_LF, - ACTIONS(358), 1, - anon_sym_EQ, - ACTIONS(354), 27, + ACTIONS(418), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7439,6 +8735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7453,10 +8750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4772] = 2, - ACTIONS(228), 1, + [5927] = 2, + ACTIONS(424), 1, anon_sym_LF, - ACTIONS(230), 27, + ACTIONS(422), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7470,6 +8767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7484,10 +8782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4805] = 2, - ACTIONS(362), 1, + [5961] = 2, + ACTIONS(428), 1, anon_sym_LF, - ACTIONS(360), 27, + ACTIONS(426), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7501,6 +8799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7515,10 +8814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4838] = 2, - ACTIONS(366), 1, + [5995] = 2, + ACTIONS(432), 1, anon_sym_LF, - ACTIONS(364), 27, + ACTIONS(430), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7532,6 +8831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7546,10 +8846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4871] = 2, - ACTIONS(370), 1, + [6029] = 2, + ACTIONS(152), 1, anon_sym_LF, - ACTIONS(368), 27, + ACTIONS(150), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7563,6 +8863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7577,10 +8878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4904] = 2, - ACTIONS(374), 1, + [6063] = 2, + ACTIONS(436), 1, anon_sym_LF, - ACTIONS(372), 27, + ACTIONS(434), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7594,6 +8895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7608,10 +8910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4937] = 2, - ACTIONS(378), 1, + [6097] = 2, + ACTIONS(440), 1, anon_sym_LF, - ACTIONS(376), 27, + ACTIONS(438), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7625,6 +8927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7639,10 +8942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [4970] = 2, - ACTIONS(320), 1, + [6131] = 2, + ACTIONS(286), 1, anon_sym_LF, - ACTIONS(318), 27, + ACTIONS(288), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7656,6 +8959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7670,10 +8974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5003] = 2, - ACTIONS(382), 1, + [6165] = 2, + ACTIONS(444), 1, anon_sym_LF, - ACTIONS(380), 27, + ACTIONS(442), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7687,6 +8991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7701,10 +9006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5036] = 2, - ACTIONS(242), 1, + [6199] = 2, + ACTIONS(448), 1, anon_sym_LF, - ACTIONS(240), 27, + ACTIONS(446), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7718,6 +9023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7732,10 +9038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5069] = 2, - ACTIONS(356), 1, + [6233] = 2, + ACTIONS(152), 1, anon_sym_LF, - ACTIONS(354), 27, + ACTIONS(150), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7749,6 +9055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7763,10 +9070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5102] = 2, - ACTIONS(386), 1, + [6267] = 2, + ACTIONS(452), 1, anon_sym_LF, - ACTIONS(384), 27, + ACTIONS(450), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7780,6 +9087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7794,10 +9102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5135] = 2, - ACTIONS(390), 1, + [6301] = 2, + ACTIONS(272), 1, anon_sym_LF, - ACTIONS(388), 27, + ACTIONS(270), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7811,6 +9119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7825,10 +9134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5168] = 2, - ACTIONS(394), 1, + [6335] = 2, + ACTIONS(390), 1, anon_sym_LF, - ACTIONS(392), 27, + ACTIONS(388), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7842,6 +9151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7856,10 +9166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5201] = 2, - ACTIONS(398), 1, + [6369] = 2, + ACTIONS(456), 1, anon_sym_LF, - ACTIONS(396), 27, + ACTIONS(454), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7873,6 +9183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7887,10 +9198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5234] = 2, - ACTIONS(306), 1, + [6403] = 2, + ACTIONS(460), 1, anon_sym_LF, - ACTIONS(308), 27, + ACTIONS(458), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7904,6 +9215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, anon_sym_STAR, @@ -7918,10 +9230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_LBRACK, - [5267] = 2, - ACTIONS(402), 1, + [6437] = 2, + ACTIONS(464), 1, anon_sym_LF, - ACTIONS(400), 27, + ACTIONS(462), 28, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -7935,102 +9247,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + [6471] = 16, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, + anon_sym_DOT, + ACTIONS(468), 1, + anon_sym_LPAREN, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(276), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [6531] = 16, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, + anon_sym_DOT, + ACTIONS(468), 1, + anon_sym_LPAREN, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_LBRACK, - [5300] = 2, - ACTIONS(406), 1, - anon_sym_LF, - ACTIONS(404), 27, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, + ACTIONS(272), 5, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [6591] = 16, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, anon_sym_DOT, - anon_sym_static, - anon_sym_pure, + ACTIONS(468), 1, anon_sym_LPAREN, - anon_sym_fn, - anon_sym_class, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_LBRACK, - [5333] = 2, - ACTIONS(410), 1, - anon_sym_LF, - ACTIONS(408), 27, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, + ACTIONS(268), 5, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [6651] = 14, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, anon_sym_DOT, - anon_sym_static, - anon_sym_pure, + ACTIONS(468), 1, anon_sym_LPAREN, - anon_sym_fn, - anon_sym_class, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(240), 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, sym_and_operator, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - anon_sym_LBRACK, - [5366] = 2, - ACTIONS(414), 1, - anon_sym_LF, - ACTIONS(412), 27, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_RBRACK, + [6707] = 9, + ACTIONS(466), 1, anon_sym_DOT, - anon_sym_static, - anon_sym_pure, + ACTIONS(468), 1, anon_sym_LPAREN, - anon_sym_fn, - anon_sym_class, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(238), 3, anon_sym_LT, anon_sym_GT, + anon_sym_STAR, + ACTIONS(240), 17, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_DASH, sym_power_operator, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PLUS, @@ -8041,75 +9472,83 @@ static const uint16_t ts_small_parse_table[] = { sym_and_operator, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - anon_sym_LBRACK, - [5399] = 10, - ACTIONS(416), 1, + anon_sym_RBRACK, + [6753] = 15, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, anon_sym_LBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(288), 3, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(290), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(470), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, + ACTIONS(240), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_RBRACK, - [5446] = 12, - ACTIONS(212), 1, + [6811] = 13, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, + ACTIONS(482), 1, anon_sym_LBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(288), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(238), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, + ACTIONS(470), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(290), 13, + ACTIONS(240), 12, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -8118,33 +9557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_RBRACK, - [5497] = 9, - ACTIONS(416), 1, + [6865] = 12, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(422), 1, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(482), 1, anon_sym_LBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(288), 3, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(238), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(290), 16, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(240), 14, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DASH, - sym_power_operator, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -8154,38 +9597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_RBRACK, - [5542] = 13, - ACTIONS(212), 1, - anon_sym_STAR, - ACTIONS(416), 1, + [6917] = 10, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, + ACTIONS(482), 1, anon_sym_LBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(288), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(238), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(290), 11, + anon_sym_STAR, + ACTIONS(240), 16, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -8194,406 +9635,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, anon_sym_RBRACK, - [5595] = 16, - ACTIONS(212), 1, + [6965] = 18, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(484), 1, + anon_sym_COMMA, + ACTIONS(486), 1, + anon_sym_RBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + STATE(298), 1, + aux_sym_arg_list_repeat1, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(320), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_GT_EQ, - [5654] = 15, - ACTIONS(212), 1, - anon_sym_STAR, - ACTIONS(416), 1, - anon_sym_DOT, - ACTIONS(418), 1, - anon_sym_LPAREN, - ACTIONS(420), 1, - sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - sym_and_operator, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, + anon_sym_GT_EQ, + [7027] = 2, + ACTIONS(380), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(382), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(290), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + sym_and_operator, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, + anon_sym_LBRACK, anon_sym_RBRACK, - [5711] = 16, - ACTIONS(212), 1, + [7057] = 2, + ACTIONS(384), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(386), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(418), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - sym_and_operator, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(424), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(242), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5770] = 14, - ACTIONS(212), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7087] = 18, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, anon_sym_LBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(488), 1, + anon_sym_COMMA, + ACTIONS(490), 1, + anon_sym_RBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + STATE(282), 1, + aux_sym_arg_list_repeat1, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(428), 4, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(290), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_RBRACK, - [5825] = 16, - ACTIONS(212), 1, + [7149] = 18, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(492), 1, + anon_sym_RPAREN, + ACTIONS(494), 1, + anon_sym_COMMA, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + STATE(299), 1, + aux_sym_arg_list_repeat1, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(304), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5884] = 16, - ACTIONS(212), 1, + [7211] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(434), 3, + ACTIONS(496), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5942] = 18, - ACTIONS(212), 1, + [7269] = 17, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(436), 1, - anon_sym_COMMA, - ACTIONS(438), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(498), 1, + anon_sym_COLON, + ACTIONS(500), 1, anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - STATE(273), 1, - aux_sym_arg_list_repeat1, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6004] = 18, - ACTIONS(212), 1, + [7328] = 17, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(440), 1, - anon_sym_RPAREN, - ACTIONS(442), 1, - anon_sym_COMMA, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(502), 1, + anon_sym_COLON, + ACTIONS(504), 1, + anon_sym_RBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - STATE(272), 1, - aux_sym_arg_list_repeat1, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6066] = 18, - ACTIONS(212), 1, + [7387] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(444), 1, - anon_sym_COMMA, - ACTIONS(446), 1, - anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - STATE(269), 1, - aux_sym_arg_list_repeat1, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(506), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6128] = 2, - ACTIONS(342), 4, + [7444] = 2, + ACTIONS(150), 3, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, - ACTIONS(344), 20, - anon_sym_LBRACE, + ACTIONS(152), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DASH, sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, @@ -8607,104 +10016,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6157] = 17, - ACTIONS(212), 1, + [7472] = 2, + ACTIONS(418), 3, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(420), 20, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(418), 1, anon_sym_LPAREN, - ACTIONS(420), 1, - sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - sym_and_operator, - ACTIONS(448), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(450), 1, - anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(424), 2, + anon_sym_DASH, + sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6216] = 17, - ACTIONS(212), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7500] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(452), 1, - anon_sym_COLON, - ACTIONS(454), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6275] = 2, - ACTIONS(346), 4, + [7556] = 2, + ACTIONS(450), 3, anon_sym_LT, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, - ACTIONS(348), 20, - anon_sym_LBRACE, + ACTIONS(452), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DASH, sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, @@ -8718,252 +10108,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6304] = 16, - ACTIONS(212), 1, + [7584] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(456), 1, - anon_sym_RPAREN, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(510), 1, + anon_sym_RBRACK, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6360] = 16, - ACTIONS(212), 1, + [7640] = 2, + ACTIONS(438), 3, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(440), 20, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(418), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - sym_and_operator, - ACTIONS(458), 1, - anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(424), 2, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6416] = 16, - ACTIONS(212), 1, - anon_sym_STAR, - ACTIONS(416), 1, - anon_sym_DOT, - ACTIONS(418), 1, - anon_sym_LPAREN, - ACTIONS(420), 1, - sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, sym_and_operator, - ACTIONS(460), 1, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, + [7668] = 2, + ACTIONS(394), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, + anon_sym_STAR, + ACTIONS(396), 20, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6472] = 16, - ACTIONS(212), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7696] = 2, + ACTIONS(422), 3, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(424), 20, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(418), 1, anon_sym_LPAREN, - ACTIONS(420), 1, - sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, - sym_and_operator, - ACTIONS(462), 1, anon_sym_RPAREN, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(424), 2, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6528] = 16, - ACTIONS(212), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7724] = 2, + ACTIONS(150), 3, + anon_sym_LT, + anon_sym_GT, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(152), 20, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(418), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_and_operator, - ACTIONS(464), 1, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, - sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, - sym_multiplicative_operator, - ACTIONS(206), 2, + [7752] = 2, + ACTIONS(270), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, + anon_sym_STAR, + ACTIONS(272), 20, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH, + sym_power_operator, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(426), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - ACTIONS(428), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6584] = 16, - ACTIONS(212), 1, + sym_and_operator, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7780] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(416), 1, + ACTIONS(466), 1, anon_sym_DOT, - ACTIONS(418), 1, + ACTIONS(468), 1, anon_sym_LPAREN, - ACTIONS(420), 1, + ACTIONS(472), 1, sym_power_operator, - ACTIONS(422), 1, - anon_sym_LBRACK, - ACTIONS(430), 1, + ACTIONS(478), 1, sym_and_operator, - ACTIONS(466), 1, - anon_sym_RBRACK, - STATE(67), 1, - sym_or_operator, - STATE(69), 1, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(512), 1, + anon_sym_COLON, + STATE(43), 1, sym_comparative_operator, - STATE(71), 1, - sym_additive_operator, - STATE(78), 1, + STATE(55), 1, sym_multiplicative_operator, - ACTIONS(206), 2, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(424), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(426), 2, + ACTIONS(470), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(432), 2, + ACTIONS(474), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(480), 2, anon_sym_PIPE_PIPE, anon_sym_CARET_CARET, - ACTIONS(428), 4, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6640] = 2, - ACTIONS(376), 3, + [7836] = 2, + ACTIONS(434), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(378), 19, + ACTIONS(436), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8983,12 +10344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6667] = 2, - ACTIONS(240), 3, + [7864] = 2, + ACTIONS(458), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(242), 19, + ACTIONS(460), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9008,12 +10370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6694] = 2, - ACTIONS(354), 3, + [7892] = 2, + ACTIONS(288), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(356), 19, + ACTIONS(286), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9033,62 +10396,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6721] = 2, - ACTIONS(364), 3, - anon_sym_LT, - anon_sym_GT, + [7920] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(366), 19, + ACTIONS(466), 1, anon_sym_DOT, + ACTIONS(468), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH, + ACTIONS(472), 1, sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(514), 1, + anon_sym_RBRACK, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + [7976] = 16, + ACTIONS(248), 1, + anon_sym_STAR, + ACTIONS(466), 1, + anon_sym_DOT, + ACTIONS(468), 1, + anon_sym_LPAREN, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, + ACTIONS(482), 1, anon_sym_LBRACK, + ACTIONS(516), 1, anon_sym_RBRACK, - [6748] = 2, - ACTIONS(388), 3, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, anon_sym_LT, anon_sym_GT, - anon_sym_STAR, - ACTIONS(390), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_LBRACK, - anon_sym_RBRACK, - [6775] = 2, - ACTIONS(412), 3, + [8032] = 2, + ACTIONS(406), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(414), 19, + ACTIONS(408), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9108,12 +10502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6802] = 2, - ACTIONS(308), 3, + [8060] = 2, + ACTIONS(402), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(306), 19, + ACTIONS(404), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9133,12 +10528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6829] = 2, - ACTIONS(404), 3, + [8088] = 2, + ACTIONS(462), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(406), 19, + ACTIONS(464), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9158,12 +10554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6856] = 2, - ACTIONS(408), 3, + [8116] = 2, + ACTIONS(266), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(410), 19, + ACTIONS(268), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9183,37 +10580,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6883] = 2, - ACTIONS(392), 3, - anon_sym_LT, - anon_sym_GT, + [8144] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(394), 19, + ACTIONS(466), 1, anon_sym_DOT, + ACTIONS(468), 1, anon_sym_LPAREN, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(518), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_LBRACK, - anon_sym_RBRACK, - [6910] = 2, - ACTIONS(400), 3, + [8200] = 2, + ACTIONS(454), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(402), 19, + ACTIONS(456), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9233,37 +10646,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6937] = 2, - ACTIONS(318), 3, - anon_sym_LT, - anon_sym_GT, + [8228] = 16, + ACTIONS(248), 1, anon_sym_STAR, - ACTIONS(320), 19, + ACTIONS(466), 1, anon_sym_DOT, + ACTIONS(468), 1, anon_sym_LPAREN, + ACTIONS(472), 1, + sym_power_operator, + ACTIONS(478), 1, + sym_and_operator, + ACTIONS(482), 1, + anon_sym_LBRACK, + ACTIONS(520), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + STATE(43), 1, + sym_comparative_operator, + STATE(55), 1, + sym_multiplicative_operator, + STATE(57), 1, + sym_additive_operator, + STATE(59), 1, + sym_or_operator, + ACTIONS(252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 2, anon_sym_DASH, - sym_power_operator, + anon_sym_PLUS, + ACTIONS(474), 2, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET_CARET, + ACTIONS(476), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_and_operator, - anon_sym_PIPE_PIPE, - anon_sym_CARET_CARET, - anon_sym_LBRACK, - anon_sym_RBRACK, - [6964] = 2, - ACTIONS(350), 3, + [8284] = 2, + ACTIONS(414), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(352), 19, + ACTIONS(416), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9283,12 +10712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [6991] = 2, - ACTIONS(380), 3, + [8312] = 2, + ACTIONS(398), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(382), 19, + ACTIONS(400), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9308,12 +10738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7018] = 2, - ACTIONS(372), 3, + [8340] = 2, + ACTIONS(388), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(374), 19, + ACTIONS(390), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9333,12 +10764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7045] = 2, - ACTIONS(384), 3, + [8368] = 2, + ACTIONS(430), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(386), 19, + ACTIONS(432), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9358,12 +10790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7072] = 2, - ACTIONS(230), 3, + [8396] = 2, + ACTIONS(426), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(228), 19, + ACTIONS(428), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9383,12 +10816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7099] = 2, - ACTIONS(368), 3, + [8424] = 2, + ACTIONS(446), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(370), 19, + ACTIONS(448), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9408,12 +10842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7126] = 2, - ACTIONS(396), 3, + [8452] = 2, + ACTIONS(410), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(398), 19, + ACTIONS(412), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9433,12 +10868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7153] = 2, - ACTIONS(360), 3, + [8480] = 2, + ACTIONS(442), 3, anon_sym_LT, anon_sym_GT, anon_sym_STAR, - ACTIONS(362), 19, + ACTIONS(444), 20, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9458,118 +10894,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET, anon_sym_LBRACK, anon_sym_RBRACK, - [7180] = 11, - ACTIONS(19), 1, - anon_sym_fn, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(470), 1, - anon_sym_LF, - ACTIONS(472), 1, - anon_sym_POUND_POUND, - ACTIONS(474), 1, + [8508] = 2, + ACTIONS(522), 8, anon_sym_LBRACE, - ACTIONS(476), 1, - anon_sym_RBRACE, - STATE(285), 1, - sym_qualifier_list, - ACTIONS(13), 2, - anon_sym_static, - anon_sym_pure, - ACTIONS(468), 2, - anon_sym_SEMI, - sym_comment, - STATE(242), 2, - sym_qualifier, - aux_sym_qualifier_list_repeat1, - STATE(60), 5, - sym_doc_comment, - sym__line_insensitive_statement, - sym_block, - sym_function_declaration, - sym_class_declaration, - [7221] = 11, - ACTIONS(19), 1, - anon_sym_fn, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(470), 1, - anon_sym_LF, - ACTIONS(472), 1, - anon_sym_POUND_POUND, - ACTIONS(474), 1, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(524), 10, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [8531] = 2, + ACTIONS(526), 8, anon_sym_LBRACE, - ACTIONS(478), 1, - anon_sym_RBRACE, - STATE(285), 1, - sym_qualifier_list, - ACTIONS(13), 2, - anon_sym_static, - anon_sym_pure, - ACTIONS(468), 2, - anon_sym_SEMI, - sym_comment, - STATE(242), 2, - sym_qualifier, - aux_sym_qualifier_list_repeat1, - STATE(60), 5, - sym_doc_comment, - sym__line_insensitive_statement, - sym_block, - sym_function_declaration, - sym_class_declaration, - [7262] = 11, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LBRACK, + sym_number, + sym_string, + ACTIONS(528), 10, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + aux_sym_identifier_token1, + anon_sym_true, + anon_sym_false, + anon_sym_error, + sym_none, + [8554] = 11, ACTIONS(19), 1, anon_sym_fn, ACTIONS(23), 1, anon_sym_class, - ACTIONS(470), 1, + ACTIONS(532), 1, anon_sym_LF, - ACTIONS(472), 1, + ACTIONS(534), 1, anon_sym_POUND_POUND, - ACTIONS(474), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(480), 1, + ACTIONS(538), 1, anon_sym_RBRACE, - STATE(285), 1, + STATE(319), 1, sym_qualifier_list, ACTIONS(13), 2, anon_sym_static, anon_sym_pure, - ACTIONS(468), 2, + ACTIONS(530), 2, anon_sym_SEMI, sym_comment, - STATE(242), 2, + STATE(266), 2, sym_qualifier, aux_sym_qualifier_list_repeat1, - STATE(60), 5, + STATE(91), 5, sym_doc_comment, sym__line_insensitive_statement, sym_block, sym_function_declaration, sym_class_declaration, - [7303] = 2, - ACTIONS(482), 7, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(484), 10, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [7325] = 2, - ACTIONS(486), 7, + [8595] = 2, + ACTIONS(540), 8, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DASH, @@ -9577,7 +10976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(488), 10, + ACTIONS(542), 10, anon_sym_any, anon_sym_int, anon_sym_str, @@ -9588,8 +10987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [7347] = 2, - ACTIONS(490), 7, + [8618] = 2, + ACTIONS(544), 8, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DASH, @@ -9597,7 +10997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(492), 10, + ACTIONS(546), 10, anon_sym_any, anon_sym_int, anon_sym_str, @@ -9608,56 +11008,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [7369] = 10, + [8641] = 11, ACTIONS(19), 1, anon_sym_fn, ACTIONS(23), 1, anon_sym_class, - ACTIONS(470), 1, + ACTIONS(532), 1, anon_sym_LF, - ACTIONS(472), 1, + ACTIONS(534), 1, anon_sym_POUND_POUND, - ACTIONS(474), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - STATE(285), 1, + ACTIONS(548), 1, + anon_sym_RBRACE, + STATE(319), 1, sym_qualifier_list, ACTIONS(13), 2, anon_sym_static, anon_sym_pure, - ACTIONS(468), 2, + ACTIONS(530), 2, anon_sym_SEMI, sym_comment, - STATE(242), 2, + STATE(266), 2, sym_qualifier, aux_sym_qualifier_list_repeat1, - STATE(60), 5, + STATE(91), 5, sym_doc_comment, sym__line_insensitive_statement, sym_block, sym_function_declaration, sym_class_declaration, - [7407] = 2, - ACTIONS(494), 7, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LBRACK, - sym_number, - sym_string, - ACTIONS(496), 10, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - aux_sym_identifier_token1, - anon_sym_true, - anon_sym_false, - anon_sym_error, - sym_none, - [7429] = 2, - ACTIONS(498), 7, + [8682] = 11, + ACTIONS(19), 1, + anon_sym_fn, + ACTIONS(23), 1, + anon_sym_class, + ACTIONS(532), 1, + anon_sym_LF, + ACTIONS(534), 1, + anon_sym_POUND_POUND, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(550), 1, + anon_sym_RBRACE, + STATE(319), 1, + sym_qualifier_list, + ACTIONS(13), 2, + anon_sym_static, + anon_sym_pure, + ACTIONS(530), 2, + anon_sym_SEMI, + sym_comment, + STATE(266), 2, + sym_qualifier, + aux_sym_qualifier_list_repeat1, + STATE(91), 5, + sym_doc_comment, + sym__line_insensitive_statement, + sym_block, + sym_function_declaration, + sym_class_declaration, + [8723] = 2, + ACTIONS(552), 8, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DASH, @@ -9665,7 +11078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_number, sym_string, - ACTIONS(500), 10, + ACTIONS(554), 10, anon_sym_any, anon_sym_int, anon_sym_str, @@ -9676,20 +11089,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_error, sym_none, - [7451] = 8, + [8746] = 10, + ACTIONS(19), 1, + anon_sym_fn, + ACTIONS(23), 1, + anon_sym_class, + ACTIONS(532), 1, + anon_sym_LF, + ACTIONS(534), 1, + anon_sym_POUND_POUND, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(319), 1, + sym_qualifier_list, + ACTIONS(13), 2, + anon_sym_static, + anon_sym_pure, + ACTIONS(530), 2, + anon_sym_SEMI, + sym_comment, + STATE(266), 2, + sym_qualifier, + aux_sym_qualifier_list_repeat1, + STATE(91), 5, + sym_doc_comment, + sym__line_insensitive_statement, + sym_block, + sym_function_declaration, + sym_class_declaration, + [8784] = 8, ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(203), 1, - sym_identifier, - STATE(205), 1, + STATE(226), 1, sym_type_name, - STATE(228), 1, + STATE(227), 1, + sym_identifier, + STATE(244), 1, sym_type, ACTIONS(37), 5, anon_sym_any, @@ -9697,113 +11138,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [7480] = 8, - ACTIONS(156), 1, + [8813] = 8, + ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(249), 1, - sym_identifier, - STATE(250), 1, + STATE(226), 1, sym_type_name, - STATE(284), 1, + STATE(227), 1, + sym_identifier, + STATE(246), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7509] = 8, - ACTIONS(506), 1, + [8842] = 3, + ACTIONS(562), 1, + anon_sym_LF, + ACTIONS(564), 1, + anon_sym_LT, + ACTIONS(560), 10, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + anon_sym_EQ, + [8861] = 8, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - ACTIONS(512), 1, - aux_sym_identifier_token1, - STATE(249), 1, + STATE(144), 1, + sym_primitive_type, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(253), 1, - sym_primitive_type, - STATE(290), 1, + STATE(331), 1, sym_type, - ACTIONS(510), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7538] = 8, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(506), 1, + [8890] = 8, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(128), 1, - sym_primitive_type, - STATE(249), 1, + ACTIONS(572), 1, + aux_sym_identifier_token1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(265), 1, + STATE(278), 1, + sym_primitive_type, + STATE(315), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7567] = 8, - ACTIONS(506), 1, + [8919] = 8, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - ACTIONS(512), 1, + ACTIONS(572), 1, aux_sym_identifier_token1, - STATE(249), 1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(253), 1, + STATE(278), 1, sym_primitive_type, - STATE(289), 1, + STATE(317), 1, sym_type, - ACTIONS(510), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7596] = 2, - ACTIONS(516), 1, - anon_sym_LF, - ACTIONS(514), 11, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_fn, - anon_sym_class, - [7613] = 4, - ACTIONS(520), 1, + [8948] = 3, + ACTIONS(562), 1, anon_sym_LF, - ACTIONS(522), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DASH_GT, - ACTIONS(518), 9, + ACTIONS(574), 1, + anon_sym_LT, + ACTIONS(560), 10, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -9813,41 +11253,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [7634] = 8, - ACTIONS(156), 1, + anon_sym_EQ, + [8967] = 8, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(249), 1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(278), 1, + STATE(309), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7663] = 8, + [8996] = 8, ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(203), 1, - sym_identifier, - STATE(205), 1, + STATE(226), 1, sym_type_name, - STATE(221), 1, + STATE(227), 1, + sym_identifier, + STATE(252), 1, sym_type, ACTIONS(37), 5, anon_sym_any, @@ -9855,41 +11296,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [7692] = 8, - ACTIONS(506), 1, + [9025] = 8, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - ACTIONS(512), 1, - aux_sym_identifier_token1, - STATE(249), 1, + STATE(144), 1, + sym_primitive_type, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(253), 1, - sym_primitive_type, - STATE(265), 1, + STATE(307), 1, sym_type, - ACTIONS(510), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7721] = 8, + [9054] = 8, ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(203), 1, + STATE(224), 1, + sym_type, + STATE(226), 1, + sym_type_name, + STATE(227), 1, sym_identifier, - STATE(205), 1, + ACTIONS(37), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9083] = 8, + ACTIONS(39), 1, + aux_sym_identifier_token1, + ACTIONS(556), 1, + anon_sym_vec, + ACTIONS(558), 1, + anon_sym_map, + STATE(107), 1, + sym_primitive_type, + STATE(226), 1, sym_type_name, - STATE(211), 1, + STATE(227), 1, + sym_identifier, + STATE(255), 1, sym_type, ACTIONS(37), 5, anon_sym_any, @@ -9897,14 +11359,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [7750] = 4, - ACTIONS(528), 1, + [9112] = 8, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(566), 1, + anon_sym_vec, + ACTIONS(568), 1, + anon_sym_map, + STATE(144), 1, + sym_primitive_type, + STATE(272), 1, + sym_identifier, + STATE(275), 1, + sym_type_name, + STATE(314), 1, + sym_type, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9141] = 8, + ACTIONS(566), 1, + anon_sym_vec, + ACTIONS(568), 1, + anon_sym_map, + ACTIONS(572), 1, + aux_sym_identifier_token1, + STATE(272), 1, + sym_identifier, + STATE(275), 1, + sym_type_name, + STATE(278), 1, + sym_primitive_type, + STATE(329), 1, + sym_type, + ACTIONS(570), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9170] = 2, + ACTIONS(578), 1, + anon_sym_LF, + ACTIONS(576), 11, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_fn, + anon_sym_class, + [9187] = 4, + ACTIONS(582), 1, anon_sym_LF, - ACTIONS(530), 1, + ACTIONS(584), 1, anon_sym_LPAREN, - ACTIONS(532), 1, + ACTIONS(586), 1, anon_sym_DASH_GT, - ACTIONS(526), 9, + ACTIONS(580), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -9914,154 +11433,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [7771] = 8, - ACTIONS(156), 1, + [9208] = 8, + ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(249), 1, - sym_identifier, - STATE(250), 1, + STATE(226), 1, sym_type_name, - STATE(301), 1, + STATE(227), 1, + sym_identifier, + STATE(256), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7800] = 8, - ACTIONS(156), 1, + [9237] = 8, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(249), 1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(279), 1, + STATE(326), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7829] = 8, - ACTIONS(156), 1, + [9266] = 8, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(249), 1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(300), 1, + STATE(306), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7858] = 8, - ACTIONS(506), 1, + [9295] = 8, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - ACTIONS(512), 1, - aux_sym_identifier_token1, - STATE(249), 1, + STATE(144), 1, + sym_primitive_type, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(253), 1, - sym_primitive_type, - STATE(298), 1, + STATE(312), 1, sym_type, - ACTIONS(510), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7887] = 8, - ACTIONS(39), 1, + [9324] = 4, + ACTIONS(590), 1, + anon_sym_LF, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_EQ, + ACTIONS(588), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9345] = 8, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(203), 1, + STATE(272), 1, sym_identifier, - STATE(205), 1, + STATE(275), 1, sym_type_name, - STATE(224), 1, + STATE(285), 1, sym_type, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7916] = 8, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(506), 1, + [9374] = 8, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(128), 1, - sym_primitive_type, - STATE(249), 1, + ACTIONS(572), 1, + aux_sym_identifier_token1, + STATE(272), 1, sym_identifier, - STATE(250), 1, + STATE(275), 1, sym_type_name, - STATE(281), 1, + STATE(278), 1, + sym_primitive_type, + STATE(285), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [7945] = 3, - ACTIONS(536), 1, - anon_sym_LF, - ACTIONS(538), 1, - anon_sym_LT, - ACTIONS(534), 10, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - anon_sym_EQ, - [7964] = 3, - ACTIONS(536), 1, + [9403] = 4, + ACTIONS(598), 1, anon_sym_LF, - ACTIONS(540), 1, - anon_sym_LT, - ACTIONS(534), 10, + ACTIONS(600), 1, + anon_sym_LPAREN, + ACTIONS(602), 1, + anon_sym_DASH_GT, + ACTIONS(596), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10071,21 +11593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - anon_sym_EQ, - [7983] = 8, + [9424] = 8, ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(203), 1, - sym_identifier, - STATE(205), 1, + STATE(226), 1, sym_type_name, - STATE(219), 1, + STATE(227), 1, + sym_identifier, + STATE(228), 1, sym_type, ACTIONS(37), 5, anon_sym_any, @@ -10093,98 +11614,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [8012] = 8, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(502), 1, + [9453] = 8, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(92), 1, - sym_primitive_type, - STATE(203), 1, + ACTIONS(572), 1, + aux_sym_identifier_token1, + STATE(272), 1, sym_identifier, - STATE(205), 1, + STATE(275), 1, sym_type_name, - STATE(232), 1, + STATE(278), 1, + sym_primitive_type, + STATE(316), 1, sym_type, - ACTIONS(37), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8041] = 8, - ACTIONS(39), 1, + [9482] = 4, + ACTIONS(606), 1, + anon_sym_LF, + ACTIONS(608), 1, + anon_sym_COLON, + ACTIONS(610), 1, + anon_sym_EQ, + ACTIONS(604), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9503] = 8, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, + ACTIONS(566), 1, anon_sym_vec, - ACTIONS(504), 1, + ACTIONS(568), 1, anon_sym_map, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(203), 1, + STATE(272), 1, sym_identifier, - STATE(205), 1, + STATE(275), 1, sym_type_name, - STATE(229), 1, + STATE(311), 1, sym_type, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8070] = 8, - ACTIONS(156), 1, + [9532] = 8, + ACTIONS(39), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, + ACTIONS(556), 1, anon_sym_vec, - ACTIONS(508), 1, + ACTIONS(558), 1, anon_sym_map, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(249), 1, - sym_identifier, - STATE(250), 1, + STATE(226), 1, sym_type_name, - STATE(282), 1, + STATE(227), 1, + sym_identifier, + STATE(247), 1, sym_type, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8099] = 8, - ACTIONS(156), 1, + [9561] = 3, + ACTIONS(614), 1, + anon_sym_LF, + ACTIONS(616), 1, + anon_sym_DASH_GT, + ACTIONS(612), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9579] = 7, + ACTIONS(572), 1, aux_sym_identifier_token1, - ACTIONS(506), 1, - anon_sym_vec, - ACTIONS(508), 1, - anon_sym_map, - STATE(128), 1, + ACTIONS(618), 1, + anon_sym_PIPE, + STATE(278), 1, sym_primitive_type, - STATE(249), 1, + STATE(297), 1, sym_identifier, - STATE(250), 1, - sym_type_name, - STATE(283), 1, - sym_type, - ACTIONS(154), 5, + STATE(303), 1, + sym_param, + STATE(327), 1, + sym_param_list, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8128] = 4, - ACTIONS(544), 1, + [9605] = 3, + ACTIONS(622), 1, anon_sym_LF, - ACTIONS(546), 1, - anon_sym_COLON, - ACTIONS(548), 1, + ACTIONS(624), 1, + anon_sym_DASH_GT, + ACTIONS(620), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9623] = 3, + ACTIONS(628), 1, + anon_sym_LF, + ACTIONS(630), 1, + anon_sym_DASH_GT, + ACTIONS(626), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9641] = 3, + ACTIONS(634), 1, + anon_sym_LF, + ACTIONS(636), 1, anon_sym_EQ, - ACTIONS(542), 9, + ACTIONS(632), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10194,56 +11773,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8149] = 8, - ACTIONS(506), 1, - anon_sym_vec, - ACTIONS(508), 1, - anon_sym_map, - ACTIONS(512), 1, - aux_sym_identifier_token1, - STATE(249), 1, - sym_identifier, - STATE(250), 1, - sym_type_name, - STATE(253), 1, - sym_primitive_type, - STATE(287), 1, - sym_type, - ACTIONS(510), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8178] = 8, - ACTIONS(39), 1, + [9659] = 7, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(502), 1, - anon_sym_vec, - ACTIONS(504), 1, - anon_sym_map, - STATE(92), 1, + ACTIONS(638), 1, + anon_sym_RPAREN, + STATE(144), 1, sym_primitive_type, - STATE(203), 1, + STATE(289), 1, sym_identifier, - STATE(205), 1, - sym_type_name, - STATE(213), 1, - sym_type, - ACTIONS(37), 5, + STATE(290), 1, + sym_param, + STATE(321), 1, + sym_param_list, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8207] = 4, - ACTIONS(552), 1, + [9685] = 2, + ACTIONS(642), 1, anon_sym_LF, - ACTIONS(554), 1, - anon_sym_COLON, - ACTIONS(556), 1, + ACTIONS(640), 10, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + anon_sym_EQ, + [9701] = 2, + ACTIONS(562), 1, + anon_sym_LF, + ACTIONS(560), 10, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + anon_sym_EQ, + [9717] = 3, + ACTIONS(646), 1, + anon_sym_LF, + ACTIONS(648), 1, + anon_sym_EQ, + ACTIONS(644), 9, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, + [9735] = 2, + ACTIONS(652), 1, + anon_sym_LF, + ACTIONS(650), 10, + anon_sym_SEMI, + sym_comment, + anon_sym_POUND_POUND, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_static, + anon_sym_pure, + anon_sym_fn, + anon_sym_class, anon_sym_EQ, - ACTIONS(550), 9, + [9751] = 2, + ACTIONS(656), 1, + anon_sym_LF, + ACTIONS(654), 10, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10253,146 +11862,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8228] = 7, - ACTIONS(156), 1, + anon_sym_EQ, + [9767] = 7, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(658), 1, + anon_sym_RPAREN, + STATE(144), 1, + sym_primitive_type, + STATE(289), 1, + sym_identifier, + STATE(290), 1, + sym_param, + STATE(325), 1, + sym_param_list, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9793] = 7, + ACTIONS(182), 1, + aux_sym_identifier_token1, + ACTIONS(660), 1, + anon_sym_RPAREN, + STATE(144), 1, + sym_primitive_type, + STATE(289), 1, + sym_identifier, + STATE(290), 1, + sym_param, + STATE(323), 1, + sym_param_list, + ACTIONS(180), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9819] = 7, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(558), 1, + ACTIONS(662), 1, anon_sym_RPAREN, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(257), 1, + STATE(289), 1, sym_identifier, - STATE(263), 1, + STATE(290), 1, sym_param, - STATE(292), 1, + STATE(332), 1, sym_param_list, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8254] = 3, - ACTIONS(562), 1, - anon_sym_LF, - ACTIONS(564), 1, - anon_sym_DASH_GT, - ACTIONS(560), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [8272] = 5, + [9845] = 7, ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(92), 1, + ACTIONS(664), 1, + anon_sym_DOT, + STATE(107), 1, sym_primitive_type, - ACTIONS(566), 2, - anon_sym_PLUS_PLUS, - anon_sym_EQ_EQ_EQ, - STATE(178), 2, - sym_overloadable_operator, + STATE(242), 1, sym_identifier, + STATE(250), 1, + sym_import_path, + STATE(260), 1, + sym_import_relative_dot, ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8294] = 5, - ACTIONS(156), 1, + [9871] = 5, + ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - ACTIONS(568), 2, + ACTIONS(666), 2, anon_sym_PLUS_PLUS, anon_sym_EQ_EQ_EQ, - STATE(254), 2, + STATE(214), 2, sym_overloadable_operator, sym_identifier, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8316] = 3, - ACTIONS(572), 1, - anon_sym_LF, - ACTIONS(574), 1, - anon_sym_DASH_GT, - ACTIONS(570), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [8334] = 7, - ACTIONS(156), 1, + [9893] = 7, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(576), 1, + ACTIONS(668), 1, anon_sym_RPAREN, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(257), 1, + STATE(289), 1, sym_identifier, - STATE(263), 1, + STATE(290), 1, sym_param, - STATE(293), 1, + STATE(324), 1, sym_param_list, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8360] = 3, - ACTIONS(580), 1, - anon_sym_LF, - ACTIONS(582), 1, - anon_sym_DASH_GT, - ACTIONS(578), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [8378] = 2, - ACTIONS(536), 1, - anon_sym_LF, - ACTIONS(534), 10, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - anon_sym_EQ, - [8394] = 5, + [9919] = 7, + ACTIONS(572), 1, + aux_sym_identifier_token1, + ACTIONS(670), 1, + anon_sym_PIPE, + STATE(278), 1, + sym_primitive_type, + STATE(297), 1, + sym_identifier, + STATE(303), 1, + sym_param, + STATE(328), 1, + sym_param_list, + ACTIONS(570), 5, + anon_sym_any, + anon_sym_int, + anon_sym_str, + anon_sym_bool, + anon_sym_void, + [9945] = 5, ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - ACTIONS(566), 2, + ACTIONS(666), 2, anon_sym_PLUS_PLUS, anon_sym_EQ_EQ_EQ, - STATE(173), 2, + STATE(206), 2, sym_overloadable_operator, sym_identifier, ACTIONS(37), 5, @@ -10401,57 +12011,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [8416] = 2, - ACTIONS(586), 1, - anon_sym_LF, - ACTIONS(584), 10, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - anon_sym_EQ, - [8432] = 2, - ACTIONS(590), 1, - anon_sym_LF, - ACTIONS(588), 10, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - anon_sym_EQ, - [8448] = 5, - ACTIONS(156), 1, + [9967] = 5, + ACTIONS(182), 1, aux_sym_identifier_token1, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - ACTIONS(568), 2, + ACTIONS(672), 2, anon_sym_PLUS_PLUS, anon_sym_EQ_EQ_EQ, - STATE(252), 2, + STATE(279), 2, sym_overloadable_operator, sym_identifier, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8470] = 3, - ACTIONS(594), 1, + [9989] = 3, + ACTIONS(676), 1, anon_sym_LF, - ACTIONS(596), 1, + ACTIONS(678), 1, anon_sym_DASH_GT, - ACTIONS(592), 9, + ACTIONS(674), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10461,79 +12043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8488] = 7, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(598), 1, - anon_sym_RPAREN, - STATE(128), 1, - sym_primitive_type, - STATE(257), 1, - sym_identifier, - STATE(263), 1, - sym_param, - STATE(302), 1, - sym_param_list, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8514] = 7, - ACTIONS(156), 1, + [10007] = 5, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(600), 1, - anon_sym_RPAREN, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(257), 1, + ACTIONS(672), 2, + anon_sym_PLUS_PLUS, + anon_sym_EQ_EQ_EQ, + STATE(276), 2, + sym_overloadable_operator, sym_identifier, - STATE(263), 1, - sym_param, - STATE(296), 1, - sym_param_list, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8540] = 3, - ACTIONS(604), 1, - anon_sym_LF, - ACTIONS(606), 1, - anon_sym_EQ, - ACTIONS(602), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [8558] = 2, - ACTIONS(610), 1, - anon_sym_LF, - ACTIONS(608), 10, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - anon_sym_EQ, - [8574] = 3, - ACTIONS(614), 1, + [10029] = 3, + ACTIONS(682), 1, anon_sym_LF, - ACTIONS(616), 1, - anon_sym_EQ, - ACTIONS(612), 9, + ACTIONS(684), 1, + anon_sym_DOT, + ACTIONS(680), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10543,69 +12075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8592] = 7, - ACTIONS(512), 1, - aux_sym_identifier_token1, - ACTIONS(618), 1, - anon_sym_PIPE, - STATE(253), 1, - sym_primitive_type, - STATE(267), 1, - sym_identifier, - STATE(274), 1, - sym_param, - STATE(291), 1, - sym_param_list, - ACTIONS(510), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8618] = 7, - ACTIONS(156), 1, + [10047] = 6, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(620), 1, + ACTIONS(686), 1, anon_sym_RPAREN, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(257), 1, + STATE(289), 1, sym_identifier, - STATE(263), 1, + STATE(301), 1, sym_param, - STATE(299), 1, - sym_param_list, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8644] = 7, - ACTIONS(39), 1, - aux_sym_identifier_token1, - ACTIONS(622), 1, - anon_sym_DOT, - STATE(92), 1, - sym_primitive_type, - STATE(217), 1, - sym_identifier, - STATE(230), 1, - sym_import_path, - STATE(233), 1, - sym_import_relative_dot, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8670] = 3, - ACTIONS(626), 1, + [10070] = 2, + ACTIONS(690), 1, anon_sym_LF, - ACTIONS(628), 1, - anon_sym_DOT, - ACTIONS(624), 9, + ACTIONS(688), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10615,29 +12105,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8688] = 7, - ACTIONS(512), 1, + [10085] = 6, + ACTIONS(572), 1, aux_sym_identifier_token1, - ACTIONS(630), 1, + ACTIONS(686), 1, anon_sym_PIPE, - STATE(253), 1, + STATE(278), 1, sym_primitive_type, - STATE(267), 1, + STATE(297), 1, sym_identifier, - STATE(274), 1, + STATE(301), 1, sym_param, - STATE(295), 1, - sym_param_list, - ACTIONS(510), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8714] = 2, - ACTIONS(634), 1, + [10108] = 2, + ACTIONS(694), 1, anon_sym_LF, - ACTIONS(632), 9, + ACTIONS(692), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10647,10 +12135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8729] = 2, - ACTIONS(222), 1, + [10123] = 2, + ACTIONS(698), 1, anon_sym_LF, - ACTIONS(220), 9, + ACTIONS(696), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10660,10 +12148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8744] = 2, - ACTIONS(638), 1, + [10138] = 2, + ACTIONS(258), 1, anon_sym_LF, - ACTIONS(636), 9, + ACTIONS(256), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10673,57 +12161,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8759] = 6, - ACTIONS(512), 1, + [10153] = 6, + ACTIONS(182), 1, aux_sym_identifier_token1, - ACTIONS(640), 1, - anon_sym_PIPE, - STATE(253), 1, + ACTIONS(700), 1, + anon_sym_RPAREN, + STATE(144), 1, sym_primitive_type, - STATE(259), 1, - sym_param, - STATE(267), 1, + STATE(289), 1, sym_identifier, - ACTIONS(510), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8782] = 6, - ACTIONS(512), 1, - aux_sym_identifier_token1, - ACTIONS(642), 1, - anon_sym_PIPE, - STATE(253), 1, - sym_primitive_type, - STATE(259), 1, + STATE(301), 1, sym_param, - STATE(267), 1, - sym_identifier, - ACTIONS(510), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, - anon_sym_void, - [8805] = 2, - ACTIONS(646), 1, - anon_sym_LF, - ACTIONS(644), 9, - anon_sym_SEMI, - sym_comment, - anon_sym_POUND_POUND, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_static, - anon_sym_pure, - anon_sym_fn, - anon_sym_class, - [8820] = 2, - ACTIONS(650), 1, + anon_sym_void, + [10176] = 2, + ACTIONS(704), 1, anon_sym_LF, - ACTIONS(648), 9, + ACTIONS(702), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10733,27 +12191,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8835] = 6, - ACTIONS(156), 1, + [10191] = 6, + ACTIONS(572), 1, aux_sym_identifier_token1, - ACTIONS(642), 1, - anon_sym_RPAREN, - STATE(128), 1, + ACTIONS(700), 1, + anon_sym_PIPE, + STATE(278), 1, sym_primitive_type, - STATE(257), 1, + STATE(297), 1, sym_identifier, - STATE(259), 1, + STATE(301), 1, sym_param, - ACTIONS(154), 5, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8858] = 2, - ACTIONS(654), 1, + [10214] = 2, + ACTIONS(708), 1, anon_sym_LF, - ACTIONS(652), 9, + ACTIONS(706), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10763,10 +12221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8873] = 2, - ACTIONS(658), 1, + [10229] = 2, + ACTIONS(712), 1, anon_sym_LF, - ACTIONS(656), 9, + ACTIONS(710), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10776,10 +12234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8888] = 2, - ACTIONS(662), 1, + [10244] = 2, + ACTIONS(716), 1, anon_sym_LF, - ACTIONS(660), 9, + ACTIONS(714), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10789,10 +12247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8903] = 2, - ACTIONS(666), 1, + [10259] = 2, + ACTIONS(720), 1, anon_sym_LF, - ACTIONS(664), 9, + ACTIONS(718), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10802,27 +12260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8918] = 6, - ACTIONS(156), 1, - aux_sym_identifier_token1, - ACTIONS(640), 1, - anon_sym_RPAREN, - STATE(128), 1, - sym_primitive_type, - STATE(257), 1, - sym_identifier, - STATE(259), 1, - sym_param, - ACTIONS(154), 5, - anon_sym_any, - anon_sym_int, - anon_sym_str, - anon_sym_bool, - anon_sym_void, - [8941] = 2, - ACTIONS(670), 1, + [10274] = 2, + ACTIONS(724), 1, anon_sym_LF, - ACTIONS(668), 9, + ACTIONS(722), 9, anon_sym_SEMI, sym_comment, anon_sym_POUND_POUND, @@ -10832,44 +12273,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pure, anon_sym_fn, anon_sym_class, - [8956] = 5, - ACTIONS(39), 1, + [10289] = 5, + ACTIONS(572), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(278), 1, sym_primitive_type, - STATE(217), 1, + STATE(297), 1, sym_identifier, - STATE(227), 1, - sym_import_path, - ACTIONS(37), 5, + STATE(301), 1, + sym_param, + ACTIONS(570), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8976] = 5, - ACTIONS(512), 1, + [10309] = 5, + ACTIONS(182), 1, aux_sym_identifier_token1, - STATE(253), 1, + STATE(144), 1, sym_primitive_type, - STATE(259), 1, - sym_param, - STATE(267), 1, + STATE(289), 1, sym_identifier, - ACTIONS(510), 5, + STATE(301), 1, + sym_param, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [8996] = 5, + [10329] = 5, ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(217), 1, + STATE(242), 1, sym_identifier, - STATE(225), 1, + STATE(254), 1, sym_import_path, ACTIONS(37), 5, anon_sym_any, @@ -10877,27 +12318,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [9016] = 5, - ACTIONS(156), 1, + [10349] = 5, + ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(257), 1, + STATE(242), 1, sym_identifier, - STATE(259), 1, - sym_param, - ACTIONS(154), 5, + STATE(253), 1, + sym_import_path, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [9036] = 4, + [10369] = 4, ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(94), 1, + STATE(109), 1, sym_identifier, ACTIONS(37), 5, anon_sym_any, @@ -10905,38 +12346,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [9053] = 4, - ACTIONS(39), 1, + [10386] = 4, + ACTIONS(182), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(144), 1, sym_primitive_type, - STATE(195), 1, + STATE(157), 1, sym_identifier, - ACTIONS(37), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [9070] = 4, - ACTIONS(156), 1, + [10403] = 4, + ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(128), 1, + STATE(107), 1, sym_primitive_type, - STATE(268), 1, + STATE(217), 1, sym_identifier, - ACTIONS(154), 5, + ACTIONS(37), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [9087] = 4, + [10420] = 4, ACTIONS(39), 1, aux_sym_identifier_token1, - STATE(92), 1, + STATE(107), 1, sym_primitive_type, - STATE(192), 1, + STATE(211), 1, sym_identifier, ACTIONS(37), 5, anon_sym_any, @@ -10944,1044 +12385,1145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_bool, anon_sym_void, - [9104] = 4, - ACTIONS(156), 1, + [10437] = 4, + ACTIONS(182), 1, aux_sym_identifier_token1, - STATE(128), 1, + STATE(144), 1, sym_primitive_type, - STATE(150), 1, + STATE(281), 1, sym_identifier, - ACTIONS(154), 5, + ACTIONS(180), 5, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, - [9121] = 3, - ACTIONS(672), 2, + [10454] = 3, + ACTIONS(726), 2, anon_sym_static, anon_sym_pure, - STATE(243), 2, + STATE(267), 2, sym_qualifier, aux_sym_qualifier_list_repeat1, - ACTIONS(674), 3, + ACTIONS(728), 3, anon_sym_proto, anon_sym_fn, anon_sym_let, - [9135] = 3, - ACTIONS(676), 2, + [10468] = 3, + ACTIONS(730), 2, anon_sym_static, anon_sym_pure, - STATE(243), 2, + STATE(267), 2, sym_qualifier, aux_sym_qualifier_list_repeat1, - ACTIONS(679), 3, + ACTIONS(733), 3, anon_sym_proto, anon_sym_fn, anon_sym_let, - [9149] = 2, - ACTIONS(681), 1, - anon_sym_LT, - ACTIONS(536), 5, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_COMMA, - [9160] = 1, - ACTIONS(683), 6, + [10482] = 1, + ACTIONS(735), 6, anon_sym_any, anon_sym_int, anon_sym_str, anon_sym_bool, anon_sym_void, aux_sym_identifier_token1, - [9169] = 2, - ACTIONS(685), 1, + [10491] = 2, + ACTIONS(737), 1, + anon_sym_LT, + ACTIONS(562), 5, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_COMMA, + [10502] = 2, + ACTIONS(739), 1, anon_sym_LT, - ACTIONS(536), 5, + ACTIONS(562), 5, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, - [9180] = 1, - ACTIONS(610), 5, + [10513] = 1, + ACTIONS(741), 5, + anon_sym_static, + anon_sym_pure, + anon_sym_proto, + anon_sym_fn, + anon_sym_let, + [10521] = 1, + ACTIONS(562), 5, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, - [9188] = 1, - ACTIONS(590), 5, + [10529] = 1, + ACTIONS(652), 5, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, - [9196] = 1, - ACTIONS(536), 5, + [10537] = 1, + ACTIONS(656), 5, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, - [9204] = 1, - ACTIONS(586), 5, + [10545] = 1, + ACTIONS(642), 5, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, - [9212] = 1, - ACTIONS(687), 5, - anon_sym_static, - anon_sym_pure, - anon_sym_proto, - anon_sym_fn, - anon_sym_let, - [9220] = 4, - ACTIONS(9), 1, + [10553] = 4, + ACTIONS(743), 1, anon_sym_LBRACE, - ACTIONS(689), 1, + ACTIONS(745), 1, anon_sym_LPAREN, - ACTIONS(691), 1, + ACTIONS(747), 1, anon_sym_DASH_GT, - STATE(85), 1, + STATE(90), 1, sym_block, - [9233] = 1, - ACTIONS(344), 4, + [10566] = 1, + ACTIONS(382), 4, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10573] = 1, + ACTIONS(386), 4, anon_sym_PIPE, anon_sym_GT, anon_sym_COMMA, anon_sym_COLON, - [9240] = 4, - ACTIONS(9), 1, + [10580] = 4, + ACTIONS(743), 1, anon_sym_LBRACE, - ACTIONS(693), 1, + ACTIONS(749), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(751), 1, anon_sym_DASH_GT, - STATE(43), 1, + STATE(94), 1, sym_block, - [9253] = 3, - ACTIONS(697), 1, + [10593] = 3, + ACTIONS(753), 1, anon_sym_COMMA, - STATE(255), 1, + STATE(280), 1, aux_sym_arg_list_repeat1, - ACTIONS(434), 2, + ACTIONS(496), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [9264] = 1, - ACTIONS(348), 4, + [10604] = 3, + ACTIONS(743), 1, + anon_sym_LBRACE, + ACTIONS(756), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym_block, + [10614] = 3, + ACTIONS(234), 1, + anon_sym_RBRACK, + ACTIONS(758), 1, + anon_sym_COMMA, + STATE(280), 1, + aux_sym_arg_list_repeat1, + [10624] = 3, + ACTIONS(743), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, + anon_sym_DASH_GT, + STATE(84), 1, + sym_block, + [10634] = 3, + ACTIONS(762), 1, + anon_sym_RBRACE, + ACTIONS(764), 1, + anon_sym_COMMA, + STATE(305), 1, + aux_sym_map_repeat1, + [10644] = 1, + ACTIONS(766), 3, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON, - [9271] = 2, - ACTIONS(702), 1, - anon_sym_COLON, - ACTIONS(700), 2, + [10650] = 3, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(770), 1, + anon_sym_COMMA, + STATE(286), 1, + aux_sym_param_list_repeat1, + [10660] = 3, + ACTIONS(768), 1, anon_sym_RPAREN, + ACTIONS(773), 1, anon_sym_COMMA, - [9279] = 3, - ACTIONS(642), 1, + STATE(287), 1, + aux_sym_param_list_repeat1, + [10670] = 3, + ACTIONS(686), 1, anon_sym_RPAREN, - ACTIONS(704), 1, + ACTIONS(776), 1, anon_sym_COMMA, - STATE(276), 1, + STATE(287), 1, aux_sym_param_list_repeat1, - [9289] = 1, - ACTIONS(706), 3, + [10680] = 2, + ACTIONS(780), 1, + anon_sym_COLON, + ACTIONS(778), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_COMMA, - [9295] = 1, - ACTIONS(516), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - [9301] = 3, - ACTIONS(706), 1, + [10688] = 3, + ACTIONS(782), 1, + anon_sym_RPAREN, + ACTIONS(784), 1, + anon_sym_COMMA, + STATE(288), 1, + aux_sym_param_list_repeat1, + [10698] = 3, + ACTIONS(686), 1, anon_sym_PIPE, - ACTIONS(708), 1, + ACTIONS(786), 1, anon_sym_COMMA, - STATE(261), 1, + STATE(286), 1, aux_sym_param_list_repeat1, - [9311] = 3, - ACTIONS(9), 1, + [10708] = 3, + ACTIONS(743), 1, anon_sym_LBRACE, - ACTIONS(711), 1, + ACTIONS(788), 1, anon_sym_DASH_GT, - STATE(42), 1, + STATE(88), 1, sym_block, - [9321] = 3, - ACTIONS(713), 1, - anon_sym_RPAREN, - ACTIONS(715), 1, - anon_sym_COMMA, - STATE(258), 1, - aux_sym_param_list_repeat1, - [9331] = 3, - ACTIONS(642), 1, - anon_sym_PIPE, - ACTIONS(717), 1, + [10718] = 3, + ACTIONS(790), 1, + anon_sym_RBRACE, + ACTIONS(792), 1, anon_sym_COMMA, - STATE(261), 1, - aux_sym_param_list_repeat1, - [9341] = 1, - ACTIONS(719), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(293), 1, + aux_sym_map_repeat1, + [10728] = 3, + ACTIONS(795), 1, + anon_sym_RBRACE, + ACTIONS(797), 1, anon_sym_COMMA, - [9347] = 3, - ACTIONS(9), 1, + STATE(302), 1, + aux_sym_map_repeat1, + [10738] = 3, + ACTIONS(799), 1, + anon_sym_proto, + ACTIONS(801), 1, + anon_sym_fn, + ACTIONS(803), 1, + anon_sym_let, + [10748] = 3, + ACTIONS(743), 1, anon_sym_LBRACE, - ACTIONS(721), 1, + ACTIONS(805), 1, anon_sym_DASH_GT, - STATE(57), 1, + STATE(78), 1, sym_block, - [9357] = 2, - ACTIONS(723), 1, + [10758] = 2, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(700), 2, + ACTIONS(778), 2, anon_sym_PIPE, anon_sym_COMMA, - [9365] = 3, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(725), 1, - anon_sym_LPAREN, - STATE(90), 1, - sym_block, - [9375] = 3, - ACTIONS(188), 1, + [10766] = 3, + ACTIONS(214), 1, anon_sym_RBRACK, - ACTIONS(727), 1, + ACTIONS(809), 1, anon_sym_COMMA, - STATE(255), 1, + STATE(280), 1, + aux_sym_arg_list_repeat1, + [10776] = 3, + ACTIONS(218), 1, + anon_sym_RPAREN, + ACTIONS(811), 1, + anon_sym_COMMA, + STATE(280), 1, aux_sym_arg_list_repeat1, - [9385] = 3, - ACTIONS(9), 1, + [10786] = 1, + ACTIONS(578), 3, anon_sym_LBRACE, - ACTIONS(729), 1, + anon_sym_LPAREN, anon_sym_DASH_GT, - STATE(65), 1, - sym_block, - [9395] = 3, - ACTIONS(731), 1, - anon_sym_proto, - ACTIONS(733), 1, - anon_sym_fn, - ACTIONS(735), 1, - anon_sym_let, - [9405] = 3, - ACTIONS(178), 1, + [10792] = 1, + ACTIONS(768), 3, anon_sym_RPAREN, - ACTIONS(737), 1, + anon_sym_PIPE, anon_sym_COMMA, - STATE(255), 1, - aux_sym_arg_list_repeat1, - [9415] = 3, - ACTIONS(196), 1, - anon_sym_RBRACK, - ACTIONS(739), 1, + [10798] = 3, + ACTIONS(172), 1, + anon_sym_RBRACE, + ACTIONS(813), 1, anon_sym_COMMA, - STATE(255), 1, - aux_sym_arg_list_repeat1, - [9425] = 3, - ACTIONS(713), 1, + STATE(293), 1, + aux_sym_map_repeat1, + [10808] = 3, + ACTIONS(782), 1, anon_sym_PIPE, - ACTIONS(741), 1, + ACTIONS(815), 1, anon_sym_COMMA, - STATE(264), 1, + STATE(291), 1, aux_sym_param_list_repeat1, - [9435] = 3, - ACTIONS(9), 1, - anon_sym_LBRACE, + [10818] = 3, ACTIONS(743), 1, + anon_sym_LBRACE, + ACTIONS(817), 1, anon_sym_DASH_GT, - STATE(51), 1, + STATE(85), 1, sym_block, - [9445] = 3, - ACTIONS(706), 1, - anon_sym_RPAREN, - ACTIONS(745), 1, + [10828] = 3, + ACTIONS(194), 1, + anon_sym_RBRACE, + ACTIONS(819), 1, anon_sym_COMMA, - STATE(276), 1, - aux_sym_param_list_repeat1, - [9455] = 2, - ACTIONS(9), 1, + STATE(293), 1, + aux_sym_map_repeat1, + [10838] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(52), 1, + STATE(103), 1, sym_block, - [9462] = 2, - ACTIONS(9), 1, + [10845] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(46), 1, + STATE(89), 1, sym_block, - [9469] = 2, - ACTIONS(9), 1, + [10852] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(63), 1, + STATE(83), 1, sym_block, - [9476] = 2, - ACTIONS(9), 1, + [10859] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(48), 1, + STATE(82), 1, sym_block, - [9483] = 2, - ACTIONS(9), 1, + [10866] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(89), 1, + STATE(100), 1, sym_block, - [9490] = 2, - ACTIONS(9), 1, + [10873] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(88), 1, + STATE(104), 1, sym_block, - [9497] = 2, - ACTIONS(9), 1, + [10880] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(83), 1, + STATE(93), 1, sym_block, - [9504] = 2, - ACTIONS(9), 1, + [10887] = 1, + ACTIONS(790), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [10892] = 2, + ACTIONS(743), 1, anon_sym_LBRACE, - STATE(87), 1, + STATE(79), 1, sym_block, - [9511] = 1, - ACTIONS(733), 1, - anon_sym_fn, - [9515] = 1, - ACTIONS(748), 1, - anon_sym_RPAREN, - [9519] = 1, - ACTIONS(750), 1, + [10899] = 1, + ACTIONS(821), 1, anon_sym_GT, - [9523] = 1, - ACTIONS(752), 1, - ts_builtin_sym_end, - [9527] = 1, - ACTIONS(754), 1, + [10903] = 1, + ACTIONS(823), 1, anon_sym_GT, - [9531] = 1, - ACTIONS(756), 1, + [10907] = 1, + ACTIONS(825), 1, anon_sym_GT, - [9535] = 1, - ACTIONS(758), 1, - anon_sym_PIPE, - [9539] = 1, - ACTIONS(760), 1, + [10911] = 1, + ACTIONS(827), 1, + ts_builtin_sym_end, + [10915] = 1, + ACTIONS(801), 1, + anon_sym_fn, + [10919] = 1, + ACTIONS(829), 1, anon_sym_RPAREN, - [9543] = 1, - ACTIONS(762), 1, + [10923] = 1, + ACTIONS(831), 1, anon_sym_RPAREN, - [9547] = 1, - ACTIONS(764), 1, + [10927] = 1, + ACTIONS(833), 1, + sym_doc_comment_content, + [10931] = 1, + ACTIONS(835), 1, anon_sym_RPAREN, - [9551] = 1, - ACTIONS(766), 1, - anon_sym_PIPE, - [9555] = 1, - ACTIONS(768), 1, + [10935] = 1, + ACTIONS(837), 1, anon_sym_RPAREN, - [9559] = 1, - ACTIONS(770), 1, - sym_doc_comment_content, - [9563] = 1, - ACTIONS(772), 1, - anon_sym_GT, - [9567] = 1, - ACTIONS(774), 1, + [10939] = 1, + ACTIONS(839), 1, anon_sym_RPAREN, - [9571] = 1, - ACTIONS(776), 1, + [10943] = 1, + ACTIONS(841), 1, anon_sym_COMMA, - [9575] = 1, - ACTIONS(778), 1, + [10947] = 1, + ACTIONS(843), 1, + anon_sym_PIPE, + [10951] = 1, + ACTIONS(845), 1, + anon_sym_PIPE, + [10955] = 1, + ACTIONS(847), 1, + anon_sym_GT, + [10959] = 1, + ACTIONS(849), 1, + anon_sym_RPAREN, + [10963] = 1, + ACTIONS(851), 1, anon_sym_COMMA, - [9579] = 1, - ACTIONS(780), 1, + [10967] = 1, + ACTIONS(853), 1, anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(10)] = 0, - [SMALL_STATE(11)] = 73, - [SMALL_STATE(12)] = 140, - [SMALL_STATE(13)] = 207, - [SMALL_STATE(14)] = 274, - [SMALL_STATE(15)] = 341, - [SMALL_STATE(16)] = 408, - [SMALL_STATE(17)] = 475, - [SMALL_STATE(18)] = 539, - [SMALL_STATE(19)] = 603, - [SMALL_STATE(20)] = 667, - [SMALL_STATE(21)] = 731, - [SMALL_STATE(22)] = 795, - [SMALL_STATE(23)] = 859, - [SMALL_STATE(24)] = 923, - [SMALL_STATE(25)] = 987, - [SMALL_STATE(26)] = 1051, - [SMALL_STATE(27)] = 1115, - [SMALL_STATE(28)] = 1179, - [SMALL_STATE(29)] = 1243, - [SMALL_STATE(30)] = 1307, - [SMALL_STATE(31)] = 1371, - [SMALL_STATE(32)] = 1432, - [SMALL_STATE(33)] = 1493, - [SMALL_STATE(34)] = 1554, - [SMALL_STATE(35)] = 1617, - [SMALL_STATE(36)] = 1680, - [SMALL_STATE(37)] = 1741, - [SMALL_STATE(38)] = 1802, - [SMALL_STATE(39)] = 1863, - [SMALL_STATE(40)] = 1900, - [SMALL_STATE(41)] = 1937, - [SMALL_STATE(42)] = 1998, - [SMALL_STATE(43)] = 2035, - [SMALL_STATE(44)] = 2072, - [SMALL_STATE(45)] = 2133, - [SMALL_STATE(46)] = 2196, - [SMALL_STATE(47)] = 2233, - [SMALL_STATE(48)] = 2294, - [SMALL_STATE(49)] = 2331, - [SMALL_STATE(50)] = 2392, - [SMALL_STATE(51)] = 2455, - [SMALL_STATE(52)] = 2492, - [SMALL_STATE(53)] = 2529, - [SMALL_STATE(54)] = 2592, - [SMALL_STATE(55)] = 2655, - [SMALL_STATE(56)] = 2718, - [SMALL_STATE(57)] = 2781, - [SMALL_STATE(58)] = 2818, - [SMALL_STATE(59)] = 2881, - [SMALL_STATE(60)] = 2942, - [SMALL_STATE(61)] = 2979, - [SMALL_STATE(62)] = 3036, - [SMALL_STATE(63)] = 3091, - [SMALL_STATE(64)] = 3128, - [SMALL_STATE(65)] = 3181, - [SMALL_STATE(66)] = 3218, - [SMALL_STATE(67)] = 3277, - [SMALL_STATE(68)] = 3338, - [SMALL_STATE(69)] = 3399, - [SMALL_STATE(70)] = 3460, - [SMALL_STATE(71)] = 3521, - [SMALL_STATE(72)] = 3582, - [SMALL_STATE(73)] = 3643, - [SMALL_STATE(74)] = 3704, - [SMALL_STATE(75)] = 3765, - [SMALL_STATE(76)] = 3826, - [SMALL_STATE(77)] = 3887, - [SMALL_STATE(78)] = 3950, - [SMALL_STATE(79)] = 4011, - [SMALL_STATE(80)] = 4048, - [SMALL_STATE(81)] = 4109, - [SMALL_STATE(82)] = 4170, - [SMALL_STATE(83)] = 4221, - [SMALL_STATE(84)] = 4258, - [SMALL_STATE(85)] = 4319, - [SMALL_STATE(86)] = 4356, - [SMALL_STATE(87)] = 4419, - [SMALL_STATE(88)] = 4456, - [SMALL_STATE(89)] = 4493, - [SMALL_STATE(90)] = 4530, - [SMALL_STATE(91)] = 4567, - [SMALL_STATE(92)] = 4630, - [SMALL_STATE(93)] = 4666, - [SMALL_STATE(94)] = 4702, - [SMALL_STATE(95)] = 4736, - [SMALL_STATE(96)] = 4772, - [SMALL_STATE(97)] = 4805, - [SMALL_STATE(98)] = 4838, - [SMALL_STATE(99)] = 4871, - [SMALL_STATE(100)] = 4904, - [SMALL_STATE(101)] = 4937, - [SMALL_STATE(102)] = 4970, - [SMALL_STATE(103)] = 5003, - [SMALL_STATE(104)] = 5036, - [SMALL_STATE(105)] = 5069, - [SMALL_STATE(106)] = 5102, - [SMALL_STATE(107)] = 5135, - [SMALL_STATE(108)] = 5168, - [SMALL_STATE(109)] = 5201, - [SMALL_STATE(110)] = 5234, - [SMALL_STATE(111)] = 5267, - [SMALL_STATE(112)] = 5300, - [SMALL_STATE(113)] = 5333, - [SMALL_STATE(114)] = 5366, - [SMALL_STATE(115)] = 5399, - [SMALL_STATE(116)] = 5446, - [SMALL_STATE(117)] = 5497, - [SMALL_STATE(118)] = 5542, - [SMALL_STATE(119)] = 5595, - [SMALL_STATE(120)] = 5654, - [SMALL_STATE(121)] = 5711, - [SMALL_STATE(122)] = 5770, - [SMALL_STATE(123)] = 5825, - [SMALL_STATE(124)] = 5884, - [SMALL_STATE(125)] = 5942, - [SMALL_STATE(126)] = 6004, - [SMALL_STATE(127)] = 6066, - [SMALL_STATE(128)] = 6128, - [SMALL_STATE(129)] = 6157, - [SMALL_STATE(130)] = 6216, - [SMALL_STATE(131)] = 6275, - [SMALL_STATE(132)] = 6304, - [SMALL_STATE(133)] = 6360, - [SMALL_STATE(134)] = 6416, - [SMALL_STATE(135)] = 6472, - [SMALL_STATE(136)] = 6528, - [SMALL_STATE(137)] = 6584, - [SMALL_STATE(138)] = 6640, - [SMALL_STATE(139)] = 6667, - [SMALL_STATE(140)] = 6694, - [SMALL_STATE(141)] = 6721, - [SMALL_STATE(142)] = 6748, - [SMALL_STATE(143)] = 6775, - [SMALL_STATE(144)] = 6802, - [SMALL_STATE(145)] = 6829, - [SMALL_STATE(146)] = 6856, - [SMALL_STATE(147)] = 6883, - [SMALL_STATE(148)] = 6910, - [SMALL_STATE(149)] = 6937, - [SMALL_STATE(150)] = 6964, - [SMALL_STATE(151)] = 6991, - [SMALL_STATE(152)] = 7018, - [SMALL_STATE(153)] = 7045, - [SMALL_STATE(154)] = 7072, - [SMALL_STATE(155)] = 7099, - [SMALL_STATE(156)] = 7126, - [SMALL_STATE(157)] = 7153, - [SMALL_STATE(158)] = 7180, - [SMALL_STATE(159)] = 7221, - [SMALL_STATE(160)] = 7262, - [SMALL_STATE(161)] = 7303, - [SMALL_STATE(162)] = 7325, - [SMALL_STATE(163)] = 7347, - [SMALL_STATE(164)] = 7369, - [SMALL_STATE(165)] = 7407, - [SMALL_STATE(166)] = 7429, - [SMALL_STATE(167)] = 7451, - [SMALL_STATE(168)] = 7480, - [SMALL_STATE(169)] = 7509, - [SMALL_STATE(170)] = 7538, - [SMALL_STATE(171)] = 7567, - [SMALL_STATE(172)] = 7596, - [SMALL_STATE(173)] = 7613, - [SMALL_STATE(174)] = 7634, - [SMALL_STATE(175)] = 7663, - [SMALL_STATE(176)] = 7692, - [SMALL_STATE(177)] = 7721, - [SMALL_STATE(178)] = 7750, - [SMALL_STATE(179)] = 7771, - [SMALL_STATE(180)] = 7800, - [SMALL_STATE(181)] = 7829, - [SMALL_STATE(182)] = 7858, - [SMALL_STATE(183)] = 7887, - [SMALL_STATE(184)] = 7916, - [SMALL_STATE(185)] = 7945, - [SMALL_STATE(186)] = 7964, - [SMALL_STATE(187)] = 7983, - [SMALL_STATE(188)] = 8012, - [SMALL_STATE(189)] = 8041, - [SMALL_STATE(190)] = 8070, - [SMALL_STATE(191)] = 8099, - [SMALL_STATE(192)] = 8128, - [SMALL_STATE(193)] = 8149, - [SMALL_STATE(194)] = 8178, - [SMALL_STATE(195)] = 8207, - [SMALL_STATE(196)] = 8228, - [SMALL_STATE(197)] = 8254, - [SMALL_STATE(198)] = 8272, - [SMALL_STATE(199)] = 8294, - [SMALL_STATE(200)] = 8316, - [SMALL_STATE(201)] = 8334, - [SMALL_STATE(202)] = 8360, - [SMALL_STATE(203)] = 8378, - [SMALL_STATE(204)] = 8394, - [SMALL_STATE(205)] = 8416, - [SMALL_STATE(206)] = 8432, - [SMALL_STATE(207)] = 8448, - [SMALL_STATE(208)] = 8470, - [SMALL_STATE(209)] = 8488, - [SMALL_STATE(210)] = 8514, - [SMALL_STATE(211)] = 8540, - [SMALL_STATE(212)] = 8558, - [SMALL_STATE(213)] = 8574, - [SMALL_STATE(214)] = 8592, - [SMALL_STATE(215)] = 8618, - [SMALL_STATE(216)] = 8644, - [SMALL_STATE(217)] = 8670, - [SMALL_STATE(218)] = 8688, - [SMALL_STATE(219)] = 8714, - [SMALL_STATE(220)] = 8729, - [SMALL_STATE(221)] = 8744, - [SMALL_STATE(222)] = 8759, - [SMALL_STATE(223)] = 8782, - [SMALL_STATE(224)] = 8805, - [SMALL_STATE(225)] = 8820, - [SMALL_STATE(226)] = 8835, - [SMALL_STATE(227)] = 8858, - [SMALL_STATE(228)] = 8873, - [SMALL_STATE(229)] = 8888, - [SMALL_STATE(230)] = 8903, - [SMALL_STATE(231)] = 8918, - [SMALL_STATE(232)] = 8941, - [SMALL_STATE(233)] = 8956, - [SMALL_STATE(234)] = 8976, - [SMALL_STATE(235)] = 8996, - [SMALL_STATE(236)] = 9016, - [SMALL_STATE(237)] = 9036, - [SMALL_STATE(238)] = 9053, - [SMALL_STATE(239)] = 9070, - [SMALL_STATE(240)] = 9087, - [SMALL_STATE(241)] = 9104, - [SMALL_STATE(242)] = 9121, - [SMALL_STATE(243)] = 9135, - [SMALL_STATE(244)] = 9149, - [SMALL_STATE(245)] = 9160, - [SMALL_STATE(246)] = 9169, - [SMALL_STATE(247)] = 9180, - [SMALL_STATE(248)] = 9188, - [SMALL_STATE(249)] = 9196, - [SMALL_STATE(250)] = 9204, - [SMALL_STATE(251)] = 9212, - [SMALL_STATE(252)] = 9220, - [SMALL_STATE(253)] = 9233, - [SMALL_STATE(254)] = 9240, - [SMALL_STATE(255)] = 9253, - [SMALL_STATE(256)] = 9264, - [SMALL_STATE(257)] = 9271, - [SMALL_STATE(258)] = 9279, - [SMALL_STATE(259)] = 9289, - [SMALL_STATE(260)] = 9295, - [SMALL_STATE(261)] = 9301, - [SMALL_STATE(262)] = 9311, - [SMALL_STATE(263)] = 9321, - [SMALL_STATE(264)] = 9331, - [SMALL_STATE(265)] = 9341, - [SMALL_STATE(266)] = 9347, - [SMALL_STATE(267)] = 9357, - [SMALL_STATE(268)] = 9365, - [SMALL_STATE(269)] = 9375, - [SMALL_STATE(270)] = 9385, - [SMALL_STATE(271)] = 9395, - [SMALL_STATE(272)] = 9405, - [SMALL_STATE(273)] = 9415, - [SMALL_STATE(274)] = 9425, - [SMALL_STATE(275)] = 9435, - [SMALL_STATE(276)] = 9445, - [SMALL_STATE(277)] = 9455, - [SMALL_STATE(278)] = 9462, - [SMALL_STATE(279)] = 9469, - [SMALL_STATE(280)] = 9476, - [SMALL_STATE(281)] = 9483, - [SMALL_STATE(282)] = 9490, - [SMALL_STATE(283)] = 9497, - [SMALL_STATE(284)] = 9504, - [SMALL_STATE(285)] = 9511, - [SMALL_STATE(286)] = 9515, - [SMALL_STATE(287)] = 9519, - [SMALL_STATE(288)] = 9523, - [SMALL_STATE(289)] = 9527, - [SMALL_STATE(290)] = 9531, - [SMALL_STATE(291)] = 9535, - [SMALL_STATE(292)] = 9539, - [SMALL_STATE(293)] = 9543, - [SMALL_STATE(294)] = 9547, - [SMALL_STATE(295)] = 9551, - [SMALL_STATE(296)] = 9555, - [SMALL_STATE(297)] = 9559, - [SMALL_STATE(298)] = 9563, - [SMALL_STATE(299)] = 9567, - [SMALL_STATE(300)] = 9571, - [SMALL_STATE(301)] = 9575, - [SMALL_STATE(302)] = 9579, + [SMALL_STATE(13)] = 0, + [SMALL_STATE(14)] = 59, + [SMALL_STATE(15)] = 114, + [SMALL_STATE(16)] = 190, + [SMALL_STATE(17)] = 261, + [SMALL_STATE(18)] = 332, + [SMALL_STATE(19)] = 403, + [SMALL_STATE(20)] = 474, + [SMALL_STATE(21)] = 545, + [SMALL_STATE(22)] = 616, + [SMALL_STATE(23)] = 687, + [SMALL_STATE(24)] = 758, + [SMALL_STATE(25)] = 826, + [SMALL_STATE(26)] = 894, + [SMALL_STATE(27)] = 962, + [SMALL_STATE(28)] = 1030, + [SMALL_STATE(29)] = 1098, + [SMALL_STATE(30)] = 1166, + [SMALL_STATE(31)] = 1234, + [SMALL_STATE(32)] = 1302, + [SMALL_STATE(33)] = 1370, + [SMALL_STATE(34)] = 1438, + [SMALL_STATE(35)] = 1506, + [SMALL_STATE(36)] = 1574, + [SMALL_STATE(37)] = 1642, + [SMALL_STATE(38)] = 1710, + [SMALL_STATE(39)] = 1778, + [SMALL_STATE(40)] = 1846, + [SMALL_STATE(41)] = 1914, + [SMALL_STATE(42)] = 1982, + [SMALL_STATE(43)] = 2050, + [SMALL_STATE(44)] = 2115, + [SMALL_STATE(45)] = 2180, + [SMALL_STATE(46)] = 2245, + [SMALL_STATE(47)] = 2310, + [SMALL_STATE(48)] = 2375, + [SMALL_STATE(49)] = 2440, + [SMALL_STATE(50)] = 2505, + [SMALL_STATE(51)] = 2570, + [SMALL_STATE(52)] = 2635, + [SMALL_STATE(53)] = 2700, + [SMALL_STATE(54)] = 2765, + [SMALL_STATE(55)] = 2830, + [SMALL_STATE(56)] = 2895, + [SMALL_STATE(57)] = 2960, + [SMALL_STATE(58)] = 3025, + [SMALL_STATE(59)] = 3090, + [SMALL_STATE(60)] = 3155, + [SMALL_STATE(61)] = 3220, + [SMALL_STATE(62)] = 3285, + [SMALL_STATE(63)] = 3350, + [SMALL_STATE(64)] = 3415, + [SMALL_STATE(65)] = 3480, + [SMALL_STATE(66)] = 3545, + [SMALL_STATE(67)] = 3610, + [SMALL_STATE(68)] = 3675, + [SMALL_STATE(69)] = 3731, + [SMALL_STATE(70)] = 3791, + [SMALL_STATE(71)] = 3843, + [SMALL_STATE(72)] = 3909, + [SMALL_STATE(73)] = 3963, + [SMALL_STATE(74)] = 4027, + [SMALL_STATE(75)] = 4091, + [SMALL_STATE(76)] = 4155, + [SMALL_STATE(77)] = 4213, + [SMALL_STATE(78)] = 4275, + [SMALL_STATE(79)] = 4312, + [SMALL_STATE(80)] = 4349, + [SMALL_STATE(81)] = 4386, + [SMALL_STATE(82)] = 4449, + [SMALL_STATE(83)] = 4486, + [SMALL_STATE(84)] = 4523, + [SMALL_STATE(85)] = 4560, + [SMALL_STATE(86)] = 4597, + [SMALL_STATE(87)] = 4634, + [SMALL_STATE(88)] = 4697, + [SMALL_STATE(89)] = 4734, + [SMALL_STATE(90)] = 4771, + [SMALL_STATE(91)] = 4808, + [SMALL_STATE(92)] = 4845, + [SMALL_STATE(93)] = 4908, + [SMALL_STATE(94)] = 4945, + [SMALL_STATE(95)] = 4982, + [SMALL_STATE(96)] = 5045, + [SMALL_STATE(97)] = 5108, + [SMALL_STATE(98)] = 5171, + [SMALL_STATE(99)] = 5234, + [SMALL_STATE(100)] = 5297, + [SMALL_STATE(101)] = 5334, + [SMALL_STATE(102)] = 5397, + [SMALL_STATE(103)] = 5434, + [SMALL_STATE(104)] = 5471, + [SMALL_STATE(105)] = 5508, + [SMALL_STATE(106)] = 5545, + [SMALL_STATE(107)] = 5581, + [SMALL_STATE(108)] = 5617, + [SMALL_STATE(109)] = 5654, + [SMALL_STATE(110)] = 5689, + [SMALL_STATE(111)] = 5723, + [SMALL_STATE(112)] = 5757, + [SMALL_STATE(113)] = 5791, + [SMALL_STATE(114)] = 5825, + [SMALL_STATE(115)] = 5859, + [SMALL_STATE(116)] = 5893, + [SMALL_STATE(117)] = 5927, + [SMALL_STATE(118)] = 5961, + [SMALL_STATE(119)] = 5995, + [SMALL_STATE(120)] = 6029, + [SMALL_STATE(121)] = 6063, + [SMALL_STATE(122)] = 6097, + [SMALL_STATE(123)] = 6131, + [SMALL_STATE(124)] = 6165, + [SMALL_STATE(125)] = 6199, + [SMALL_STATE(126)] = 6233, + [SMALL_STATE(127)] = 6267, + [SMALL_STATE(128)] = 6301, + [SMALL_STATE(129)] = 6335, + [SMALL_STATE(130)] = 6369, + [SMALL_STATE(131)] = 6403, + [SMALL_STATE(132)] = 6437, + [SMALL_STATE(133)] = 6471, + [SMALL_STATE(134)] = 6531, + [SMALL_STATE(135)] = 6591, + [SMALL_STATE(136)] = 6651, + [SMALL_STATE(137)] = 6707, + [SMALL_STATE(138)] = 6753, + [SMALL_STATE(139)] = 6811, + [SMALL_STATE(140)] = 6865, + [SMALL_STATE(141)] = 6917, + [SMALL_STATE(142)] = 6965, + [SMALL_STATE(143)] = 7027, + [SMALL_STATE(144)] = 7057, + [SMALL_STATE(145)] = 7087, + [SMALL_STATE(146)] = 7149, + [SMALL_STATE(147)] = 7211, + [SMALL_STATE(148)] = 7269, + [SMALL_STATE(149)] = 7328, + [SMALL_STATE(150)] = 7387, + [SMALL_STATE(151)] = 7444, + [SMALL_STATE(152)] = 7472, + [SMALL_STATE(153)] = 7500, + [SMALL_STATE(154)] = 7556, + [SMALL_STATE(155)] = 7584, + [SMALL_STATE(156)] = 7640, + [SMALL_STATE(157)] = 7668, + [SMALL_STATE(158)] = 7696, + [SMALL_STATE(159)] = 7724, + [SMALL_STATE(160)] = 7752, + [SMALL_STATE(161)] = 7780, + [SMALL_STATE(162)] = 7836, + [SMALL_STATE(163)] = 7864, + [SMALL_STATE(164)] = 7892, + [SMALL_STATE(165)] = 7920, + [SMALL_STATE(166)] = 7976, + [SMALL_STATE(167)] = 8032, + [SMALL_STATE(168)] = 8060, + [SMALL_STATE(169)] = 8088, + [SMALL_STATE(170)] = 8116, + [SMALL_STATE(171)] = 8144, + [SMALL_STATE(172)] = 8200, + [SMALL_STATE(173)] = 8228, + [SMALL_STATE(174)] = 8284, + [SMALL_STATE(175)] = 8312, + [SMALL_STATE(176)] = 8340, + [SMALL_STATE(177)] = 8368, + [SMALL_STATE(178)] = 8396, + [SMALL_STATE(179)] = 8424, + [SMALL_STATE(180)] = 8452, + [SMALL_STATE(181)] = 8480, + [SMALL_STATE(182)] = 8508, + [SMALL_STATE(183)] = 8531, + [SMALL_STATE(184)] = 8554, + [SMALL_STATE(185)] = 8595, + [SMALL_STATE(186)] = 8618, + [SMALL_STATE(187)] = 8641, + [SMALL_STATE(188)] = 8682, + [SMALL_STATE(189)] = 8723, + [SMALL_STATE(190)] = 8746, + [SMALL_STATE(191)] = 8784, + [SMALL_STATE(192)] = 8813, + [SMALL_STATE(193)] = 8842, + [SMALL_STATE(194)] = 8861, + [SMALL_STATE(195)] = 8890, + [SMALL_STATE(196)] = 8919, + [SMALL_STATE(197)] = 8948, + [SMALL_STATE(198)] = 8967, + [SMALL_STATE(199)] = 8996, + [SMALL_STATE(200)] = 9025, + [SMALL_STATE(201)] = 9054, + [SMALL_STATE(202)] = 9083, + [SMALL_STATE(203)] = 9112, + [SMALL_STATE(204)] = 9141, + [SMALL_STATE(205)] = 9170, + [SMALL_STATE(206)] = 9187, + [SMALL_STATE(207)] = 9208, + [SMALL_STATE(208)] = 9237, + [SMALL_STATE(209)] = 9266, + [SMALL_STATE(210)] = 9295, + [SMALL_STATE(211)] = 9324, + [SMALL_STATE(212)] = 9345, + [SMALL_STATE(213)] = 9374, + [SMALL_STATE(214)] = 9403, + [SMALL_STATE(215)] = 9424, + [SMALL_STATE(216)] = 9453, + [SMALL_STATE(217)] = 9482, + [SMALL_STATE(218)] = 9503, + [SMALL_STATE(219)] = 9532, + [SMALL_STATE(220)] = 9561, + [SMALL_STATE(221)] = 9579, + [SMALL_STATE(222)] = 9605, + [SMALL_STATE(223)] = 9623, + [SMALL_STATE(224)] = 9641, + [SMALL_STATE(225)] = 9659, + [SMALL_STATE(226)] = 9685, + [SMALL_STATE(227)] = 9701, + [SMALL_STATE(228)] = 9717, + [SMALL_STATE(229)] = 9735, + [SMALL_STATE(230)] = 9751, + [SMALL_STATE(231)] = 9767, + [SMALL_STATE(232)] = 9793, + [SMALL_STATE(233)] = 9819, + [SMALL_STATE(234)] = 9845, + [SMALL_STATE(235)] = 9871, + [SMALL_STATE(236)] = 9893, + [SMALL_STATE(237)] = 9919, + [SMALL_STATE(238)] = 9945, + [SMALL_STATE(239)] = 9967, + [SMALL_STATE(240)] = 9989, + [SMALL_STATE(241)] = 10007, + [SMALL_STATE(242)] = 10029, + [SMALL_STATE(243)] = 10047, + [SMALL_STATE(244)] = 10070, + [SMALL_STATE(245)] = 10085, + [SMALL_STATE(246)] = 10108, + [SMALL_STATE(247)] = 10123, + [SMALL_STATE(248)] = 10138, + [SMALL_STATE(249)] = 10153, + [SMALL_STATE(250)] = 10176, + [SMALL_STATE(251)] = 10191, + [SMALL_STATE(252)] = 10214, + [SMALL_STATE(253)] = 10229, + [SMALL_STATE(254)] = 10244, + [SMALL_STATE(255)] = 10259, + [SMALL_STATE(256)] = 10274, + [SMALL_STATE(257)] = 10289, + [SMALL_STATE(258)] = 10309, + [SMALL_STATE(259)] = 10329, + [SMALL_STATE(260)] = 10349, + [SMALL_STATE(261)] = 10369, + [SMALL_STATE(262)] = 10386, + [SMALL_STATE(263)] = 10403, + [SMALL_STATE(264)] = 10420, + [SMALL_STATE(265)] = 10437, + [SMALL_STATE(266)] = 10454, + [SMALL_STATE(267)] = 10468, + [SMALL_STATE(268)] = 10482, + [SMALL_STATE(269)] = 10491, + [SMALL_STATE(270)] = 10502, + [SMALL_STATE(271)] = 10513, + [SMALL_STATE(272)] = 10521, + [SMALL_STATE(273)] = 10529, + [SMALL_STATE(274)] = 10537, + [SMALL_STATE(275)] = 10545, + [SMALL_STATE(276)] = 10553, + [SMALL_STATE(277)] = 10566, + [SMALL_STATE(278)] = 10573, + [SMALL_STATE(279)] = 10580, + [SMALL_STATE(280)] = 10593, + [SMALL_STATE(281)] = 10604, + [SMALL_STATE(282)] = 10614, + [SMALL_STATE(283)] = 10624, + [SMALL_STATE(284)] = 10634, + [SMALL_STATE(285)] = 10644, + [SMALL_STATE(286)] = 10650, + [SMALL_STATE(287)] = 10660, + [SMALL_STATE(288)] = 10670, + [SMALL_STATE(289)] = 10680, + [SMALL_STATE(290)] = 10688, + [SMALL_STATE(291)] = 10698, + [SMALL_STATE(292)] = 10708, + [SMALL_STATE(293)] = 10718, + [SMALL_STATE(294)] = 10728, + [SMALL_STATE(295)] = 10738, + [SMALL_STATE(296)] = 10748, + [SMALL_STATE(297)] = 10758, + [SMALL_STATE(298)] = 10766, + [SMALL_STATE(299)] = 10776, + [SMALL_STATE(300)] = 10786, + [SMALL_STATE(301)] = 10792, + [SMALL_STATE(302)] = 10798, + [SMALL_STATE(303)] = 10808, + [SMALL_STATE(304)] = 10818, + [SMALL_STATE(305)] = 10828, + [SMALL_STATE(306)] = 10838, + [SMALL_STATE(307)] = 10845, + [SMALL_STATE(308)] = 10852, + [SMALL_STATE(309)] = 10859, + [SMALL_STATE(310)] = 10866, + [SMALL_STATE(311)] = 10873, + [SMALL_STATE(312)] = 10880, + [SMALL_STATE(313)] = 10887, + [SMALL_STATE(314)] = 10892, + [SMALL_STATE(315)] = 10899, + [SMALL_STATE(316)] = 10903, + [SMALL_STATE(317)] = 10907, + [SMALL_STATE(318)] = 10911, + [SMALL_STATE(319)] = 10915, + [SMALL_STATE(320)] = 10919, + [SMALL_STATE(321)] = 10923, + [SMALL_STATE(322)] = 10927, + [SMALL_STATE(323)] = 10931, + [SMALL_STATE(324)] = 10935, + [SMALL_STATE(325)] = 10939, + [SMALL_STATE(326)] = 10943, + [SMALL_STATE(327)] = 10947, + [SMALL_STATE(328)] = 10951, + [SMALL_STATE(329)] = 10955, + [SMALL_STATE(330)] = 10959, + [SMALL_STATE(331)] = 10963, + [SMALL_STATE(332)] = 10967, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(2), - [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(297), - [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(3), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(216), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(251), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(204), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(41), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(207), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(218), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(239), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(44), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(47), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(10), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(240), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(162), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(18), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(93), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(92), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(107), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(98), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(107), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), - [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 3, 0, 0), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 2, 0, 0), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 4, 0, 24), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 24), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 2, 0, 0), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_doc_comment, 2, 0, 0), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 30), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 30), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 25), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 25), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 21), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 21), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 30), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 30), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 5, 0, 34), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 5, 0, 34), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 38), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 38), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 38), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 38), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 6, 0, 39), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 6, 0, 39), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print, 2, 0, 5), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print, 2, 0, 5), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, 0, 6), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, 0, 6), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2, 0, 7), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 7), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 41), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 41), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 18), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 18), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 17), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 17), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 45), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 45), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 47), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 47), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 9), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 9), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 42), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 42), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 12), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 12), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 13), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 13), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 52), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 52), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 51), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 51), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 49), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 49), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 7, 0, 48), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 7, 0, 48), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access, 3, 0, 15), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access, 3, 0, 15), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, 0, 27), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 27), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 4, 0, 0), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 4, 0, 0), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 6, 0, 43), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 6, 0, 43), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 16), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 16), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 4, 0, 28), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 4, 0, 28), - [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 3, 0, 0), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 3, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 4, 0, 26), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 4, 0, 26), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 5, 0, 0), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 5, 0, 0), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 5, 0, 35), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 35), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 5, 0, 36), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 36), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 2, 0, 0), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 2, 0, 0), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arg_list_repeat1, 2, 0, 0), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 1, 0, 0), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 1, 0, 0), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 1, 0, 0), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_operator, 1, 0, 0), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_operator, 1, 0, 0), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparative_operator, 1, 0, 0), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparative_operator, 1, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 1, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 1, 0, 0), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overloadable_operator, 1, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overloadable_operator, 1, 0, 0), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 2, 0, 3), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 2, 0, 3), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 3, 0, 14), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 3, 0, 14), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, 0, 0), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 2, 0, 3), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 3), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(7), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(322), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(2), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(234), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(271), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(238), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(47), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(239), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(237), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(265), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(56), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(63), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(15), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(263), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(182), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(24), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(106), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(107), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(118), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(119), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(118), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(12), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_list, 2, 0, 0), SHIFT_REPEAT(5), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2, 0, 0), + [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2, 0, 0), + [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), + [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 2, 0, 0), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 3, 0, 0), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 17), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 17), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 22), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 22), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 13), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 13), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 48), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 48), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 50), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 50), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 9), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 9), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 5, 0, 35), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 5, 0, 35), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 32), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 39), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 39), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 39), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 39), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 6, 0, 40), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 6, 0, 40), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 42), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 42), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 43), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 43), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 26), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 26), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list, 2, 0, 0), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 4, 0, 25), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 25), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 46), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 46), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 12), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 12), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2, 0, 7), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 7), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, 0, 6), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, 0, 6), + [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print, 2, 0, 5), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print, 2, 0, 5), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 7, 0, 49), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 7, 0, 49), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 31), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 31), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 18), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 18), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 52), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 52), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 53), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 53), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 2, 0, 0), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_doc_comment, 2, 0, 0), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access, 3, 0, 15), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access, 3, 0, 15), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, 0, 28), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 28), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 5, 0, 37), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 37), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 5, 0, 36), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 36), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 5, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 5, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 2, 0, 0), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 2, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 3, 0, 0), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 3, 0, 0), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 6, 0, 44), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 6, 0, 44), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 16), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 16), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, 0, 0), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, 0, 0), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 4, 0, 29), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 4, 0, 29), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 4, 0, 27), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 4, 0, 27), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 11), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec, 4, 0, 0), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec, 4, 0, 0), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_list, 1, 0, 0), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arg_list_repeat1, 2, 0, 0), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_item, 3, 0, 19), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 1, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 1, 0, 0), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_operator, 1, 0, 0), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_operator, 1, 0, 0), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 1, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 1, 0, 0), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 1, 0, 0), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 1, 0, 0), [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 3, 0, 14), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 14), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 14), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 14), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 4, 0, 3), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 4, 0, 3), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 6, 0, 40), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 6, 0, 40), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 29), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 29), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 4, 0, 23), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 23), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 6, 0, 0), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 6, 0, 0), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 5, 0, 33), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 5, 0, 33), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1, 0, 2), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 1, 0, 2), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 6, 0, 37), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 6, 0, 37), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 4, 0, 20), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 4, 0, 20), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 32), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 32), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 3, 0, 19), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 3, 0, 19), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3, 0, 10), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, 0, 10), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 7, 0, 44), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 7, 0, 44), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 8, 0, 50), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 8, 0, 50), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, 0, 1), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, 0, 1), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 7, 0, 46), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 7, 0, 46), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifier_list, 1, 0, 0), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifier_list_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualifier_list_repeat1, 2, 0, 0), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_relative_dot, 1, 0, 0), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifier, 1, 0, 0), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 4), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 22), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [752] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparative_operator, 1, 0, 0), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparative_operator, 1, 0, 0), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, 0, 0), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overloadable_operator, 1, 0, 0), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overloadable_operator, 1, 0, 0), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 2, 0, 3), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 2, 0, 3), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 3, 0, 14), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 14), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 3, 0, 14), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 3, 0, 14), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 2, 0, 3), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 3), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 6, 0, 41), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 6, 0, 41), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 4, 0, 3), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 4, 0, 3), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 14), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 14), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 5, 0, 34), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 5, 0, 34), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_decl, 4, 0, 24), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 24), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 6, 0, 0), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 6, 0, 0), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 30), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 30), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1, 0, 2), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 1, 0, 2), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 4, 0, 21), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 4, 0, 21), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 5, 0, 33), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 5, 0, 33), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 8, 0, 51), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 8, 0, 51), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, 0, 1), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, 0, 1), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 7, 0, 45), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 7, 0, 45), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3, 0, 10), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, 0, 10), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 3, 0, 20), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 3, 0, 20), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 6, 0, 38), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 6, 0, 38), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proto, 7, 0, 47), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proto, 7, 0, 47), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifier_list, 1, 0, 0), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualifier_list_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualifier_list_repeat1, 2, 0, 0), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_relative_dot, 1, 0, 0), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualifier, 1, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 23), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 4), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [827] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), }; #ifdef __cplusplus