diff --git a/src/grammar.json b/src/grammar.json index 5e34ca5..f60eccc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -319,8 +319,17 @@ "type": "FIELD", "name": "alias", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "discard" + } + ] } } ] diff --git a/src/node-types.json b/src/node-types.json index 56a7ee8..0520951 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2463,6 +2463,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "discard", + "named": true + }, { "type": "identifier", "named": true diff --git a/src/parser.c b/src/parser.c index 2c601b2..f906c1c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,7 +14,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1435 +#define STATE_COUNT 1436 #define LARGE_STATE_COUNT 6 #define SYMBOL_COUNT 269 #define ALIAS_COUNT 1 @@ -3134,6 +3134,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(144) if (lookahead == '"') ADVANCE(259); if (lookahead == '#') ADVANCE(200); + if (lookahead == '-') ADVANCE(210); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(265); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '[') ADVANCE(201); + if (lookahead == '_') ADVANCE(307); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(451); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(450); + END_STATE(); + case 145: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(145) + if (lookahead == '\r') SKIP(145) + if (lookahead == '"') ADVANCE(259); + if (lookahead == '#') ADVANCE(200); if (lookahead == '-') ADVANCE(209); if (lookahead == '/') ADVANCE(7); if (lookahead == '0') ADVANCE(265); @@ -3146,11 +3163,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(450); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(451); END_STATE(); - case 145: + case 146: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(145) - if (lookahead == '\r') SKIP(145) + lookahead == ' ') SKIP(146) + if (lookahead == '\r') SKIP(146) if (lookahead == '!') ADVANCE(12); if (lookahead == '&') ADVANCE(1); if (lookahead == '(') ADVANCE(182); @@ -3176,23 +3193,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(134); if (lookahead == '}') ADVANCE(176); END_STATE(); - case 146: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(146) - if (lookahead == '\r') SKIP(146) - if (lookahead == '"') ADVANCE(259); - if (lookahead == '#') ADVANCE(200); - if (lookahead == '-') ADVANCE(210); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(265); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '[') ADVANCE(201); - if (lookahead == '_') ADVANCE(307); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(266); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(451); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(450); - END_STATE(); case 147: if (lookahead == '\t' || lookahead == '\n' || @@ -3240,7 +3240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(182); if (lookahead == ')') ADVANCE(184); if (lookahead == ',') ADVANCE(183); - if (lookahead == '-') ADVANCE(205); + if (lookahead == '-') ADVANCE(14); if (lookahead == '.') ADVANCE(189); if (lookahead == '/') ADVANCE(7); if (lookahead == ':') ADVANCE(185); @@ -3253,11 +3253,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(84); if (lookahead == 'e') ADVANCE(131); if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(50); if (lookahead == 'o') ADVANCE(94); if (lookahead == 'p') ADVANCE(127); if (lookahead == 't') ADVANCE(133); if (lookahead == '{') ADVANCE(175); + if (lookahead == '|') ADVANCE(246); if (lookahead == '}') ADVANCE(176); END_STATE(); case 150: @@ -3265,6 +3266,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == ' ') SKIP(150) if (lookahead == '\r') SKIP(150) + if (lookahead == '(') ADVANCE(182); + if (lookahead == ')') ADVANCE(184); + if (lookahead == ',') ADVANCE(183); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(189); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(185); + if (lookahead == '<') ADVANCE(4); + if (lookahead == '=') ADVANCE(198); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '@') ADVANCE(181); + if (lookahead == ']') ADVANCE(202); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '}') ADVANCE(176); + END_STATE(); + case 151: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(151) + if (lookahead == '\r') SKIP(151) if (lookahead == '!') ADVANCE(12); if (lookahead == '&') ADVANCE(1); if (lookahead == ',') ADVANCE(183); @@ -3277,11 +3305,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(49); if (lookahead == '|') ADVANCE(248); END_STATE(); - case 151: + case 152: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(151) - if (lookahead == '\r') SKIP(151) + lookahead == ' ') SKIP(152) + if (lookahead == '\r') SKIP(152) if (lookahead == '#') ADVANCE(200); if (lookahead == ')') ADVANCE(184); if (lookahead == '/') ADVANCE(7); @@ -3290,26 +3318,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(450); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(451); END_STATE(); - case 152: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(152) - if (lookahead == '\r') SKIP(152) - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(184); - if (lookahead == ',') ADVANCE(183); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(189); - if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(185); - if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(198); - if (lookahead == '>') ADVANCE(15); - if (lookahead == ']') ADVANCE(202); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'i') ADVANCE(49); - if (lookahead == '|') ADVANCE(246); - END_STATE(); case 153: if (lookahead == '\t' || lookahead == '\n' || @@ -5276,29 +5284,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 163}, [5] = {.lex_state = 163}, [6] = {.lex_state = 163}, - [7] = {.lex_state = 163}, + [7] = {.lex_state = 135}, [8] = {.lex_state = 163}, - [9] = {.lex_state = 135}, + [9] = {.lex_state = 163}, [10] = {.lex_state = 163}, - [11] = {.lex_state = 135}, - [12] = {.lex_state = 163}, - [13] = {.lex_state = 135}, - [14] = {.lex_state = 166}, + [11] = {.lex_state = 163}, + [12] = {.lex_state = 135}, + [13] = {.lex_state = 163}, + [14] = {.lex_state = 135}, [15] = {.lex_state = 163}, - [16] = {.lex_state = 135}, + [16] = {.lex_state = 166}, [17] = {.lex_state = 135}, [18] = {.lex_state = 163}, [19] = {.lex_state = 135}, - [20] = {.lex_state = 163}, - [21] = {.lex_state = 163}, - [22] = {.lex_state = 163}, + [20] = {.lex_state = 135}, + [21] = {.lex_state = 135}, + [22] = {.lex_state = 135}, [23] = {.lex_state = 135}, - [24] = {.lex_state = 163}, + [24] = {.lex_state = 135}, [25] = {.lex_state = 163}, [26] = {.lex_state = 163}, [27] = {.lex_state = 163}, - [28] = {.lex_state = 135}, - [29] = {.lex_state = 163}, + [28] = {.lex_state = 163}, + [29] = {.lex_state = 135}, [30] = {.lex_state = 135}, [31] = {.lex_state = 135}, [32] = {.lex_state = 135}, @@ -5306,55 +5314,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [34] = {.lex_state = 163}, [35] = {.lex_state = 135}, [36] = {.lex_state = 135}, - [37] = {.lex_state = 135}, + [37] = {.lex_state = 163}, [38] = {.lex_state = 163}, [39] = {.lex_state = 135}, [40] = {.lex_state = 135}, [41] = {.lex_state = 135}, - [42] = {.lex_state = 135}, - [43] = {.lex_state = 163}, + [42] = {.lex_state = 163}, + [43] = {.lex_state = 135}, [44] = {.lex_state = 135}, - [45] = {.lex_state = 135}, + [45] = {.lex_state = 163}, [46] = {.lex_state = 135}, [47] = {.lex_state = 135}, - [48] = {.lex_state = 135}, - [49] = {.lex_state = 163}, - [50] = {.lex_state = 135}, + [48] = {.lex_state = 163}, + [49] = {.lex_state = 135}, + [50] = {.lex_state = 163}, [51] = {.lex_state = 135}, [52] = {.lex_state = 135}, [53] = {.lex_state = 135}, [54] = {.lex_state = 135}, - [55] = {.lex_state = 163}, + [55] = {.lex_state = 135}, [56] = {.lex_state = 135}, [57] = {.lex_state = 135}, - [58] = {.lex_state = 163}, + [58] = {.lex_state = 135}, [59] = {.lex_state = 135}, - [60] = {.lex_state = 166}, + [60] = {.lex_state = 163}, [61] = {.lex_state = 135}, [62] = {.lex_state = 135}, - [63] = {.lex_state = 163}, - [64] = {.lex_state = 135}, - [65] = {.lex_state = 163}, + [63] = {.lex_state = 135}, + [64] = {.lex_state = 163}, + [65] = {.lex_state = 135}, [66] = {.lex_state = 163}, - [67] = {.lex_state = 135}, - [68] = {.lex_state = 163}, + [67] = {.lex_state = 163}, + [68] = {.lex_state = 166}, [69] = {.lex_state = 163}, [70] = {.lex_state = 135}, [71] = {.lex_state = 163}, - [72] = {.lex_state = 135}, - [73] = {.lex_state = 135}, + [72] = {.lex_state = 163}, + [73] = {.lex_state = 163}, [74] = {.lex_state = 163}, [75] = {.lex_state = 163}, - [76] = {.lex_state = 135}, + [76] = {.lex_state = 163}, [77] = {.lex_state = 135}, - [78] = {.lex_state = 163}, + [78] = {.lex_state = 135}, [79] = {.lex_state = 135}, [80] = {.lex_state = 163}, [81] = {.lex_state = 163}, - [82] = {.lex_state = 163}, + [82] = {.lex_state = 136}, [83] = {.lex_state = 163}, [84] = {.lex_state = 163}, - [85] = {.lex_state = 136}, + [85] = {.lex_state = 163}, [86] = {.lex_state = 163}, [87] = {.lex_state = 163}, [88] = {.lex_state = 163}, @@ -5362,13 +5370,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 163}, [91] = {.lex_state = 163}, [92] = {.lex_state = 163}, - [93] = {.lex_state = 136}, + [93] = {.lex_state = 163}, [94] = {.lex_state = 163}, [95] = {.lex_state = 163}, - [96] = {.lex_state = 163}, + [96] = {.lex_state = 136}, [97] = {.lex_state = 163}, [98] = {.lex_state = 163}, - [99] = {.lex_state = 163}, + [99] = {.lex_state = 136}, [100] = {.lex_state = 163}, [101] = {.lex_state = 163}, [102] = {.lex_state = 163}, @@ -5378,29 +5386,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [106] = {.lex_state = 163}, [107] = {.lex_state = 163}, [108] = {.lex_state = 163}, - [109] = {.lex_state = 136}, + [109] = {.lex_state = 163}, [110] = {.lex_state = 163}, [111] = {.lex_state = 136}, [112] = {.lex_state = 163}, [113] = {.lex_state = 163}, [114] = {.lex_state = 163}, [115] = {.lex_state = 163}, - [116] = {.lex_state = 156}, - [117] = {.lex_state = 136}, + [116] = {.lex_state = 136}, + [117] = {.lex_state = 156}, [118] = {.lex_state = 136}, [119] = {.lex_state = 136}, [120] = {.lex_state = 136}, [121] = {.lex_state = 136}, [122] = {.lex_state = 136}, - [123] = {.lex_state = 136}, + [123] = {.lex_state = 156}, [124] = {.lex_state = 136}, [125] = {.lex_state = 156}, - [126] = {.lex_state = 156}, + [126] = {.lex_state = 136}, [127] = {.lex_state = 136}, [128] = {.lex_state = 136}, - [129] = {.lex_state = 156}, + [129] = {.lex_state = 136}, [130] = {.lex_state = 136}, - [131] = {.lex_state = 136}, + [131] = {.lex_state = 156}, [132] = {.lex_state = 136}, [133] = {.lex_state = 156}, [134] = {.lex_state = 156}, @@ -5420,59 +5428,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 156}, [149] = {.lex_state = 156}, [150] = {.lex_state = 156}, - [151] = {.lex_state = 137}, + [151] = {.lex_state = 156}, [152] = {.lex_state = 137}, - [153] = {.lex_state = 156}, - [154] = {.lex_state = 156}, - [155] = {.lex_state = 156}, - [156] = {.lex_state = 156}, - [157] = {.lex_state = 137}, - [158] = {.lex_state = 156}, - [159] = {.lex_state = 136}, + [153] = {.lex_state = 136}, + [154] = {.lex_state = 137}, + [155] = {.lex_state = 137}, + [156] = {.lex_state = 137}, + [157] = {.lex_state = 156}, + [158] = {.lex_state = 137}, + [159] = {.lex_state = 156}, [160] = {.lex_state = 137}, - [161] = {.lex_state = 137}, - [162] = {.lex_state = 156}, - [163] = {.lex_state = 137}, + [161] = {.lex_state = 156}, + [162] = {.lex_state = 137}, + [163] = {.lex_state = 156}, [164] = {.lex_state = 156}, [165] = {.lex_state = 137}, [166] = {.lex_state = 156}, - [167] = {.lex_state = 137}, + [167] = {.lex_state = 156}, [168] = {.lex_state = 156}, [169] = {.lex_state = 156}, [170] = {.lex_state = 156}, - [171] = {.lex_state = 137}, + [171] = {.lex_state = 156}, [172] = {.lex_state = 137}, [173] = {.lex_state = 137}, - [174] = {.lex_state = 137}, + [174] = {.lex_state = 156}, [175] = {.lex_state = 137}, - [176] = {.lex_state = 137}, + [176] = {.lex_state = 156}, [177] = {.lex_state = 137}, [178] = {.lex_state = 137}, [179] = {.lex_state = 137}, - [180] = {.lex_state = 156}, + [180] = {.lex_state = 137}, [181] = {.lex_state = 156}, - [182] = {.lex_state = 156}, + [182] = {.lex_state = 137}, [183] = {.lex_state = 137}, [184] = {.lex_state = 156}, - [185] = {.lex_state = 137}, - [186] = {.lex_state = 137}, - [187] = {.lex_state = 156}, - [188] = {.lex_state = 156}, + [185] = {.lex_state = 156}, + [186] = {.lex_state = 156}, + [187] = {.lex_state = 137}, + [188] = {.lex_state = 137}, [189] = {.lex_state = 156}, - [190] = {.lex_state = 137}, + [190] = {.lex_state = 156}, [191] = {.lex_state = 137}, [192] = {.lex_state = 137}, - [193] = {.lex_state = 156}, + [193] = {.lex_state = 137}, [194] = {.lex_state = 156}, - [195] = {.lex_state = 156}, + [195] = {.lex_state = 137}, [196] = {.lex_state = 137}, [197] = {.lex_state = 156}, [198] = {.lex_state = 137}, [199] = {.lex_state = 137}, [200] = {.lex_state = 137}, - [201] = {.lex_state = 137}, + [201] = {.lex_state = 156}, [202] = {.lex_state = 156}, - [203] = {.lex_state = 156}, + [203] = {.lex_state = 137}, [204] = {.lex_state = 137}, [205] = {.lex_state = 137}, [206] = {.lex_state = 137}, @@ -5548,8 +5556,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 137}, [277] = {.lex_state = 137}, [278] = {.lex_state = 137}, - [279] = {.lex_state = 137}, - [280] = {.lex_state = 138}, + [279] = {.lex_state = 138}, + [280] = {.lex_state = 137}, [281] = {.lex_state = 137}, [282] = {.lex_state = 137}, [283] = {.lex_state = 137}, @@ -5560,37 +5568,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 137}, [289] = {.lex_state = 138}, [290] = {.lex_state = 137}, - [291] = {.lex_state = 137}, + [291] = {.lex_state = 156}, [292] = {.lex_state = 137}, - [293] = {.lex_state = 156}, - [294] = {.lex_state = 156}, - [295] = {.lex_state = 137}, - [296] = {.lex_state = 137}, + [293] = {.lex_state = 137}, + [294] = {.lex_state = 137}, + [295] = {.lex_state = 156}, + [296] = {.lex_state = 156}, [297] = {.lex_state = 137}, [298] = {.lex_state = 137}, [299] = {.lex_state = 156}, [300] = {.lex_state = 156}, - [301] = {.lex_state = 137}, - [302] = {.lex_state = 156}, + [301] = {.lex_state = 156}, + [302] = {.lex_state = 137}, [303] = {.lex_state = 156}, [304] = {.lex_state = 156}, [305] = {.lex_state = 156}, - [306] = {.lex_state = 156}, - [307] = {.lex_state = 137}, + [306] = {.lex_state = 137}, + [307] = {.lex_state = 156}, [308] = {.lex_state = 156}, - [309] = {.lex_state = 156}, - [310] = {.lex_state = 137}, + [309] = {.lex_state = 137}, + [310] = {.lex_state = 156}, [311] = {.lex_state = 137}, [312] = {.lex_state = 156}, [313] = {.lex_state = 156}, - [314] = {.lex_state = 156}, + [314] = {.lex_state = 137}, [315] = {.lex_state = 139}, [316] = {.lex_state = 139}, [317] = {.lex_state = 139}, [318] = {.lex_state = 139}, [319] = {.lex_state = 139}, - [320] = {.lex_state = 141}, - [321] = {.lex_state = 139}, + [320] = {.lex_state = 139}, + [321] = {.lex_state = 141}, [322] = {.lex_state = 142}, [323] = {.lex_state = 142}, [324] = {.lex_state = 142}, @@ -5607,15 +5615,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [335] = {.lex_state = 142}, [336] = {.lex_state = 142}, [337] = {.lex_state = 142}, - [338] = {.lex_state = 143}, - [339] = {.lex_state = 142}, + [338] = {.lex_state = 142}, + [339] = {.lex_state = 143}, [340] = {.lex_state = 142}, [341] = {.lex_state = 142}, [342] = {.lex_state = 142}, [343] = {.lex_state = 142}, [344] = {.lex_state = 142}, - [345] = {.lex_state = 142}, - [346] = {.lex_state = 143}, + [345] = {.lex_state = 143}, + [346] = {.lex_state = 142}, [347] = {.lex_state = 142}, [348] = {.lex_state = 142}, [349] = {.lex_state = 142}, @@ -5657,22 +5665,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [385] = {.lex_state = 166}, [386] = {.lex_state = 166}, [387] = {.lex_state = 166}, - [388] = {.lex_state = 164}, - [389] = {.lex_state = 141}, - [390] = {.lex_state = 166}, - [391] = {.lex_state = 141}, + [388] = {.lex_state = 141}, + [389] = {.lex_state = 164}, + [390] = {.lex_state = 141}, + [391] = {.lex_state = 166}, [392] = {.lex_state = 166}, [393] = {.lex_state = 141}, - [394] = {.lex_state = 141}, - [395] = {.lex_state = 164}, + [394] = {.lex_state = 142}, + [395] = {.lex_state = 141}, [396] = {.lex_state = 141}, [397] = {.lex_state = 142}, - [398] = {.lex_state = 141}, - [399] = {.lex_state = 142}, - [400] = {.lex_state = 142}, - [401] = {.lex_state = 141}, + [398] = {.lex_state = 142}, + [399] = {.lex_state = 164}, + [400] = {.lex_state = 141}, + [401] = {.lex_state = 142}, [402] = {.lex_state = 141}, - [403] = {.lex_state = 142}, + [403] = {.lex_state = 141}, [404] = {.lex_state = 141}, [405] = {.lex_state = 163}, [406] = {.lex_state = 141}, @@ -5680,63 +5688,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [408] = {.lex_state = 141}, [409] = {.lex_state = 141}, [410] = {.lex_state = 141}, - [411] = {.lex_state = 141}, - [412] = {.lex_state = 163}, - [413] = {.lex_state = 164}, - [414] = {.lex_state = 165}, - [415] = {.lex_state = 142}, - [416] = {.lex_state = 141}, + [411] = {.lex_state = 163}, + [412] = {.lex_state = 164}, + [413] = {.lex_state = 141}, + [414] = {.lex_state = 164}, + [415] = {.lex_state = 139}, + [416] = {.lex_state = 163}, [417] = {.lex_state = 141}, - [418] = {.lex_state = 163}, - [419] = {.lex_state = 139}, - [420] = {.lex_state = 166}, - [421] = {.lex_state = 141}, + [418] = {.lex_state = 141}, + [419] = {.lex_state = 163}, + [420] = {.lex_state = 141}, + [421] = {.lex_state = 166}, [422] = {.lex_state = 164}, - [423] = {.lex_state = 142}, - [424] = {.lex_state = 165}, - [425] = {.lex_state = 165}, - [426] = {.lex_state = 163}, - [427] = {.lex_state = 139}, - [428] = {.lex_state = 141}, + [423] = {.lex_state = 141}, + [424] = {.lex_state = 142}, + [425] = {.lex_state = 142}, + [426] = {.lex_state = 165}, + [427] = {.lex_state = 165}, + [428] = {.lex_state = 139}, [429] = {.lex_state = 141}, [430] = {.lex_state = 141}, [431] = {.lex_state = 141}, - [432] = {.lex_state = 166}, - [433] = {.lex_state = 164}, - [434] = {.lex_state = 165}, + [432] = {.lex_state = 141}, + [433] = {.lex_state = 166}, + [434] = {.lex_state = 142}, [435] = {.lex_state = 142}, - [436] = {.lex_state = 139}, - [437] = {.lex_state = 142}, - [438] = {.lex_state = 164}, + [436] = {.lex_state = 165}, + [437] = {.lex_state = 139}, + [438] = {.lex_state = 141}, [439] = {.lex_state = 141}, - [440] = {.lex_state = 141}, - [441] = {.lex_state = 141}, + [440] = {.lex_state = 142}, + [441] = {.lex_state = 164}, [442] = {.lex_state = 164}, [443] = {.lex_state = 165}, - [444] = {.lex_state = 166}, - [445] = {.lex_state = 164}, + [444] = {.lex_state = 164}, + [445] = {.lex_state = 166}, [446] = {.lex_state = 165}, - [447] = {.lex_state = 141}, - [448] = {.lex_state = 166}, - [449] = {.lex_state = 164}, + [447] = {.lex_state = 165}, + [448] = {.lex_state = 164}, + [449] = {.lex_state = 166}, [450] = {.lex_state = 139}, [451] = {.lex_state = 139}, - [452] = {.lex_state = 141}, - [453] = {.lex_state = 166}, + [452] = {.lex_state = 166}, + [453] = {.lex_state = 141}, [454] = {.lex_state = 139}, - [455] = {.lex_state = 142}, - [456] = {.lex_state = 164}, + [455] = {.lex_state = 164}, + [456] = {.lex_state = 141}, [457] = {.lex_state = 163}, - [458] = {.lex_state = 163}, - [459] = {.lex_state = 163}, - [460] = {.lex_state = 141}, + [458] = {.lex_state = 141}, + [459] = {.lex_state = 141}, + [460] = {.lex_state = 163}, [461] = {.lex_state = 163}, [462] = {.lex_state = 163}, [463] = {.lex_state = 163}, - [464] = {.lex_state = 163}, - [465] = {.lex_state = 141}, - [466] = {.lex_state = 139}, - [467] = {.lex_state = 163}, + [464] = {.lex_state = 139}, + [465] = {.lex_state = 163}, + [466] = {.lex_state = 163}, + [467] = {.lex_state = 141}, [468] = {.lex_state = 163}, [469] = {.lex_state = 141}, [470] = {.lex_state = 163}, @@ -5745,7 +5753,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [473] = {.lex_state = 141}, [474] = {.lex_state = 163}, [475] = {.lex_state = 163}, - [476] = {.lex_state = 163}, + [476] = {.lex_state = 141}, [477] = {.lex_state = 141}, [478] = {.lex_state = 163}, [479] = {.lex_state = 141}, @@ -5755,10 +5763,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 163}, [484] = {.lex_state = 163}, [485] = {.lex_state = 163}, - [486] = {.lex_state = 141}, + [486] = {.lex_state = 163}, [487] = {.lex_state = 141}, [488] = {.lex_state = 163}, - [489] = {.lex_state = 163}, + [489] = {.lex_state = 141}, [490] = {.lex_state = 163}, [491] = {.lex_state = 141}, [492] = {.lex_state = 163}, @@ -5767,23 +5775,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [495] = {.lex_state = 141}, [496] = {.lex_state = 141}, [497] = {.lex_state = 141}, - [498] = {.lex_state = 163}, + [498] = {.lex_state = 141}, [499] = {.lex_state = 163}, [500] = {.lex_state = 163}, [501] = {.lex_state = 163}, - [502] = {.lex_state = 141}, + [502] = {.lex_state = 163}, [503] = {.lex_state = 163}, [504] = {.lex_state = 163}, [505] = {.lex_state = 163}, - [506] = {.lex_state = 141}, + [506] = {.lex_state = 163}, [507] = {.lex_state = 163}, [508] = {.lex_state = 163}, - [509] = {.lex_state = 141}, + [509] = {.lex_state = 163}, [510] = {.lex_state = 163}, [511] = {.lex_state = 163}, [512] = {.lex_state = 163}, - [513] = {.lex_state = 139}, - [514] = {.lex_state = 163}, + [513] = {.lex_state = 163}, + [514] = {.lex_state = 141}, [515] = {.lex_state = 163}, [516] = {.lex_state = 141}, [517] = {.lex_state = 163}, @@ -5793,16 +5801,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [521] = {.lex_state = 141}, [522] = {.lex_state = 163}, [523] = {.lex_state = 163}, - [524] = {.lex_state = 163}, + [524] = {.lex_state = 141}, [525] = {.lex_state = 141}, [526] = {.lex_state = 139}, [527] = {.lex_state = 163}, - [528] = {.lex_state = 163}, + [528] = {.lex_state = 141}, [529] = {.lex_state = 163}, [530] = {.lex_state = 163}, [531] = {.lex_state = 163}, - [532] = {.lex_state = 163}, - [533] = {.lex_state = 141}, + [532] = {.lex_state = 139}, + [533] = {.lex_state = 163}, [534] = {.lex_state = 163}, [535] = {.lex_state = 141}, [536] = {.lex_state = 163}, @@ -5811,7 +5819,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [539] = {.lex_state = 163}, [540] = {.lex_state = 163}, [541] = {.lex_state = 163}, - [542] = {.lex_state = 141}, + [542] = {.lex_state = 163}, [543] = {.lex_state = 163}, [544] = {.lex_state = 163}, [545] = {.lex_state = 163}, @@ -5819,142 +5827,142 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 163}, [548] = {.lex_state = 163}, [549] = {.lex_state = 163}, - [550] = {.lex_state = 141}, + [550] = {.lex_state = 163}, [551] = {.lex_state = 163}, [552] = {.lex_state = 141}, - [553] = {.lex_state = 141}, - [554] = {.lex_state = 144}, + [553] = {.lex_state = 163}, + [554] = {.lex_state = 141}, [555] = {.lex_state = 144}, - [556] = {.lex_state = 144}, - [557] = {.lex_state = 145}, - [558] = {.lex_state = 144}, - [559] = {.lex_state = 142}, - [560] = {.lex_state = 139}, - [561] = {.lex_state = 142}, - [562] = {.lex_state = 142}, - [563] = {.lex_state = 139}, - [564] = {.lex_state = 139}, - [565] = {.lex_state = 146}, - [566] = {.lex_state = 146}, - [567] = {.lex_state = 147}, - [568] = {.lex_state = 146}, + [556] = {.lex_state = 145}, + [557] = {.lex_state = 146}, + [558] = {.lex_state = 139}, + [559] = {.lex_state = 145}, + [560] = {.lex_state = 144}, + [561] = {.lex_state = 139}, + [562] = {.lex_state = 139}, + [563] = {.lex_state = 142}, + [564] = {.lex_state = 142}, + [565] = {.lex_state = 142}, + [566] = {.lex_state = 145}, + [567] = {.lex_state = 145}, + [568] = {.lex_state = 147}, [569] = {.lex_state = 148}, - [570] = {.lex_state = 147}, - [571] = {.lex_state = 148}, - [572] = {.lex_state = 142}, - [573] = {.lex_state = 142}, - [574] = {.lex_state = 142}, - [575] = {.lex_state = 141}, - [576] = {.lex_state = 147}, - [577] = {.lex_state = 147}, + [570] = {.lex_state = 142}, + [571] = {.lex_state = 141}, + [572] = {.lex_state = 147}, + [573] = {.lex_state = 147}, + [574] = {.lex_state = 147}, + [575] = {.lex_state = 142}, + [576] = {.lex_state = 144}, + [577] = {.lex_state = 148}, [578] = {.lex_state = 147}, - [579] = {.lex_state = 142}, - [580] = {.lex_state = 147}, + [579] = {.lex_state = 147}, + [580] = {.lex_state = 142}, [581] = {.lex_state = 147}, [582] = {.lex_state = 147}, - [583] = {.lex_state = 146}, - [584] = {.lex_state = 147}, + [583] = {.lex_state = 147}, + [584] = {.lex_state = 144}, [585] = {.lex_state = 147}, - [586] = {.lex_state = 145}, - [587] = {.lex_state = 141}, + [586] = {.lex_state = 142}, + [587] = {.lex_state = 146}, [588] = {.lex_state = 142}, - [589] = {.lex_state = 145}, - [590] = {.lex_state = 145}, - [591] = {.lex_state = 141}, - [592] = {.lex_state = 145}, - [593] = {.lex_state = 145}, + [589] = {.lex_state = 141}, + [590] = {.lex_state = 146}, + [591] = {.lex_state = 142}, + [592] = {.lex_state = 142}, + [593] = {.lex_state = 142}, [594] = {.lex_state = 142}, - [595] = {.lex_state = 145}, - [596] = {.lex_state = 145}, - [597] = {.lex_state = 145}, - [598] = {.lex_state = 145}, - [599] = {.lex_state = 145}, + [595] = {.lex_state = 141}, + [596] = {.lex_state = 146}, + [597] = {.lex_state = 146}, + [598] = {.lex_state = 141}, + [599] = {.lex_state = 142}, [600] = {.lex_state = 142}, [601] = {.lex_state = 142}, - [602] = {.lex_state = 142}, - [603] = {.lex_state = 142}, - [604] = {.lex_state = 145}, - [605] = {.lex_state = 145}, - [606] = {.lex_state = 145}, - [607] = {.lex_state = 145}, - [608] = {.lex_state = 145}, - [609] = {.lex_state = 142}, - [610] = {.lex_state = 142}, - [611] = {.lex_state = 142}, - [612] = {.lex_state = 142}, - [613] = {.lex_state = 145}, - [614] = {.lex_state = 145}, - [615] = {.lex_state = 141}, - [616] = {.lex_state = 142}, - [617] = {.lex_state = 142}, + [602] = {.lex_state = 146}, + [603] = {.lex_state = 146}, + [604] = {.lex_state = 146}, + [605] = {.lex_state = 142}, + [606] = {.lex_state = 142}, + [607] = {.lex_state = 146}, + [608] = {.lex_state = 146}, + [609] = {.lex_state = 146}, + [610] = {.lex_state = 146}, + [611] = {.lex_state = 146}, + [612] = {.lex_state = 146}, + [613] = {.lex_state = 146}, + [614] = {.lex_state = 146}, + [615] = {.lex_state = 142}, + [616] = {.lex_state = 146}, + [617] = {.lex_state = 146}, [618] = {.lex_state = 142}, - [619] = {.lex_state = 145}, - [620] = {.lex_state = 141}, - [621] = {.lex_state = 147}, + [619] = {.lex_state = 146}, + [620] = {.lex_state = 142}, + [621] = {.lex_state = 141}, [622] = {.lex_state = 147}, [623] = {.lex_state = 147}, [624] = {.lex_state = 141}, - [625] = {.lex_state = 142}, + [625] = {.lex_state = 147}, [626] = {.lex_state = 141}, - [627] = {.lex_state = 142}, + [627] = {.lex_state = 141}, [628] = {.lex_state = 147}, - [629] = {.lex_state = 141}, - [630] = {.lex_state = 142}, - [631] = {.lex_state = 141}, - [632] = {.lex_state = 147}, + [629] = {.lex_state = 147}, + [630] = {.lex_state = 141}, + [631] = {.lex_state = 147}, + [632] = {.lex_state = 141}, [633] = {.lex_state = 147}, - [634] = {.lex_state = 147}, + [634] = {.lex_state = 142}, [635] = {.lex_state = 147}, - [636] = {.lex_state = 147}, + [636] = {.lex_state = 142}, [637] = {.lex_state = 147}, - [638] = {.lex_state = 141}, + [638] = {.lex_state = 142}, [639] = {.lex_state = 147}, [640] = {.lex_state = 147}, [641] = {.lex_state = 141}, [642] = {.lex_state = 147}, [643] = {.lex_state = 147}, - [644] = {.lex_state = 142}, + [644] = {.lex_state = 147}, [645] = {.lex_state = 147}, [646] = {.lex_state = 147}, [647] = {.lex_state = 147}, [648] = {.lex_state = 147}, [649] = {.lex_state = 147}, [650] = {.lex_state = 147}, - [651] = {.lex_state = 142}, - [652] = {.lex_state = 141}, + [651] = {.lex_state = 141}, + [652] = {.lex_state = 142}, [653] = {.lex_state = 142}, [654] = {.lex_state = 141}, - [655] = {.lex_state = 141}, - [656] = {.lex_state = 141}, + [655] = {.lex_state = 142}, + [656] = {.lex_state = 147}, [657] = {.lex_state = 141}, [658] = {.lex_state = 141}, [659] = {.lex_state = 147}, [660] = {.lex_state = 141}, [661] = {.lex_state = 147}, [662] = {.lex_state = 141}, - [663] = {.lex_state = 147}, - [664] = {.lex_state = 141}, - [665] = {.lex_state = 141}, - [666] = {.lex_state = 147}, + [663] = {.lex_state = 141}, + [664] = {.lex_state = 147}, + [665] = {.lex_state = 147}, + [666] = {.lex_state = 141}, [667] = {.lex_state = 147}, - [668] = {.lex_state = 147}, - [669] = {.lex_state = 141}, + [668] = {.lex_state = 141}, + [669] = {.lex_state = 147}, [670] = {.lex_state = 141}, [671] = {.lex_state = 147}, - [672] = {.lex_state = 147}, - [673] = {.lex_state = 141}, + [672] = {.lex_state = 141}, + [673] = {.lex_state = 147}, [674] = {.lex_state = 141}, - [675] = {.lex_state = 141}, - [676] = {.lex_state = 141}, - [677] = {.lex_state = 141}, - [678] = {.lex_state = 147}, + [675] = {.lex_state = 147}, + [676] = {.lex_state = 147}, + [677] = {.lex_state = 147}, + [678] = {.lex_state = 141}, [679] = {.lex_state = 141}, [680] = {.lex_state = 147}, - [681] = {.lex_state = 147}, - [682] = {.lex_state = 147}, + [681] = {.lex_state = 141}, + [682] = {.lex_state = 141}, [683] = {.lex_state = 141}, - [684] = {.lex_state = 147}, - [685] = {.lex_state = 147}, + [684] = {.lex_state = 141}, + [685] = {.lex_state = 141}, [686] = {.lex_state = 147}, [687] = {.lex_state = 147}, [688] = {.lex_state = 147}, @@ -5965,196 +5973,196 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 147}, [694] = {.lex_state = 147}, [695] = {.lex_state = 147}, - [696] = {.lex_state = 135}, + [696] = {.lex_state = 147}, [697] = {.lex_state = 149}, [698] = {.lex_state = 135}, - [699] = {.lex_state = 135}, - [700] = {.lex_state = 139}, - [701] = {.lex_state = 139}, + [699] = {.lex_state = 150}, + [700] = {.lex_state = 135}, + [701] = {.lex_state = 135}, [702] = {.lex_state = 139}, - [703] = {.lex_state = 150}, - [704] = {.lex_state = 151}, + [703] = {.lex_state = 139}, + [704] = {.lex_state = 139}, [705] = {.lex_state = 151}, - [706] = {.lex_state = 151}, - [707] = {.lex_state = 151}, - [708] = {.lex_state = 151}, - [709] = {.lex_state = 151}, - [710] = {.lex_state = 151}, - [711] = {.lex_state = 151}, - [712] = {.lex_state = 151}, - [713] = {.lex_state = 151}, - [714] = {.lex_state = 149}, - [715] = {.lex_state = 149}, - [716] = {.lex_state = 151}, - [717] = {.lex_state = 151}, - [718] = {.lex_state = 149}, - [719] = {.lex_state = 151}, - [720] = {.lex_state = 151}, - [721] = {.lex_state = 151}, - [722] = {.lex_state = 151}, - [723] = {.lex_state = 151}, - [724] = {.lex_state = 152}, - [725] = {.lex_state = 149}, - [726] = {.lex_state = 151}, - [727] = {.lex_state = 151}, - [728] = {.lex_state = 151}, - [729] = {.lex_state = 151}, - [730] = {.lex_state = 151}, - [731] = {.lex_state = 151}, - [732] = {.lex_state = 151}, - [733] = {.lex_state = 151}, - [734] = {.lex_state = 151}, - [735] = {.lex_state = 151}, - [736] = {.lex_state = 151}, - [737] = {.lex_state = 145}, - [738] = {.lex_state = 145}, - [739] = {.lex_state = 145}, - [740] = {.lex_state = 151}, - [741] = {.lex_state = 151}, - [742] = {.lex_state = 151}, - [743] = {.lex_state = 151}, - [744] = {.lex_state = 151}, - [745] = {.lex_state = 151}, - [746] = {.lex_state = 151}, - [747] = {.lex_state = 151}, - [748] = {.lex_state = 151}, - [749] = {.lex_state = 149}, - [750] = {.lex_state = 151}, - [751] = {.lex_state = 149}, + [706] = {.lex_state = 152}, + [707] = {.lex_state = 152}, + [708] = {.lex_state = 152}, + [709] = {.lex_state = 152}, + [710] = {.lex_state = 152}, + [711] = {.lex_state = 152}, + [712] = {.lex_state = 152}, + [713] = {.lex_state = 152}, + [714] = {.lex_state = 152}, + [715] = {.lex_state = 152}, + [716] = {.lex_state = 149}, + [717] = {.lex_state = 149}, + [718] = {.lex_state = 152}, + [719] = {.lex_state = 149}, + [720] = {.lex_state = 152}, + [721] = {.lex_state = 152}, + [722] = {.lex_state = 149}, + [723] = {.lex_state = 152}, + [724] = {.lex_state = 149}, + [725] = {.lex_state = 152}, + [726] = {.lex_state = 152}, + [727] = {.lex_state = 152}, + [728] = {.lex_state = 152}, + [729] = {.lex_state = 152}, + [730] = {.lex_state = 152}, + [731] = {.lex_state = 152}, + [732] = {.lex_state = 152}, + [733] = {.lex_state = 152}, + [734] = {.lex_state = 152}, + [735] = {.lex_state = 152}, + [736] = {.lex_state = 152}, + [737] = {.lex_state = 152}, + [738] = {.lex_state = 152}, + [739] = {.lex_state = 152}, + [740] = {.lex_state = 146}, + [741] = {.lex_state = 146}, + [742] = {.lex_state = 146}, + [743] = {.lex_state = 152}, + [744] = {.lex_state = 152}, + [745] = {.lex_state = 152}, + [746] = {.lex_state = 152}, + [747] = {.lex_state = 152}, + [748] = {.lex_state = 152}, + [749] = {.lex_state = 152}, + [750] = {.lex_state = 152}, + [751] = {.lex_state = 152}, [752] = {.lex_state = 149}, [753] = {.lex_state = 149}, - [754] = {.lex_state = 151}, - [755] = {.lex_state = 151}, + [754] = {.lex_state = 149}, + [755] = {.lex_state = 152}, [756] = {.lex_state = 149}, - [757] = {.lex_state = 149}, - [758] = {.lex_state = 151}, + [757] = {.lex_state = 152}, + [758] = {.lex_state = 152}, [759] = {.lex_state = 149}, - [760] = {.lex_state = 151}, - [761] = {.lex_state = 145}, - [762] = {.lex_state = 151}, - [763] = {.lex_state = 145}, - [764] = {.lex_state = 145}, - [765] = {.lex_state = 151}, - [766] = {.lex_state = 149}, - [767] = {.lex_state = 151}, - [768] = {.lex_state = 151}, - [769] = {.lex_state = 149}, + [760] = {.lex_state = 149}, + [761] = {.lex_state = 149}, + [762] = {.lex_state = 152}, + [763] = {.lex_state = 146}, + [764] = {.lex_state = 146}, + [765] = {.lex_state = 152}, + [766] = {.lex_state = 146}, + [767] = {.lex_state = 149}, + [768] = {.lex_state = 152}, + [769] = {.lex_state = 152}, [770] = {.lex_state = 149}, - [771] = {.lex_state = 145}, - [772] = {.lex_state = 151}, - [773] = {.lex_state = 151}, - [774] = {.lex_state = 149}, - [775] = {.lex_state = 151}, - [776] = {.lex_state = 151}, - [777] = {.lex_state = 151}, - [778] = {.lex_state = 151}, - [779] = {.lex_state = 145}, - [780] = {.lex_state = 141}, - [781] = {.lex_state = 151}, - [782] = {.lex_state = 149}, - [783] = {.lex_state = 145}, - [784] = {.lex_state = 151}, - [785] = {.lex_state = 151}, - [786] = {.lex_state = 151}, - [787] = {.lex_state = 151}, - [788] = {.lex_state = 151}, - [789] = {.lex_state = 151}, - [790] = {.lex_state = 151}, - [791] = {.lex_state = 141}, + [771] = {.lex_state = 141}, + [772] = {.lex_state = 149}, + [773] = {.lex_state = 152}, + [774] = {.lex_state = 152}, + [775] = {.lex_state = 149}, + [776] = {.lex_state = 152}, + [777] = {.lex_state = 152}, + [778] = {.lex_state = 152}, + [779] = {.lex_state = 152}, + [780] = {.lex_state = 146}, + [781] = {.lex_state = 146}, + [782] = {.lex_state = 152}, + [783] = {.lex_state = 149}, + [784] = {.lex_state = 152}, + [785] = {.lex_state = 152}, + [786] = {.lex_state = 152}, + [787] = {.lex_state = 152}, + [788] = {.lex_state = 146}, + [789] = {.lex_state = 152}, + [790] = {.lex_state = 152}, + [791] = {.lex_state = 152}, [792] = {.lex_state = 152}, - [793] = {.lex_state = 152}, - [794] = {.lex_state = 141}, - [795] = {.lex_state = 141}, + [793] = {.lex_state = 141}, + [794] = {.lex_state = 149}, + [795] = {.lex_state = 149}, [796] = {.lex_state = 152}, - [797] = {.lex_state = 145}, - [798] = {.lex_state = 145}, - [799] = {.lex_state = 145}, - [800] = {.lex_state = 151}, - [801] = {.lex_state = 152}, - [802] = {.lex_state = 151}, - [803] = {.lex_state = 139}, - [804] = {.lex_state = 152}, - [805] = {.lex_state = 152}, - [806] = {.lex_state = 152}, - [807] = {.lex_state = 145}, - [808] = {.lex_state = 152}, - [809] = {.lex_state = 139}, - [810] = {.lex_state = 152}, - [811] = {.lex_state = 152}, - [812] = {.lex_state = 152}, + [797] = {.lex_state = 152}, + [798] = {.lex_state = 146}, + [799] = {.lex_state = 149}, + [800] = {.lex_state = 146}, + [801] = {.lex_state = 146}, + [802] = {.lex_state = 149}, + [803] = {.lex_state = 149}, + [804] = {.lex_state = 149}, + [805] = {.lex_state = 146}, + [806] = {.lex_state = 149}, + [807] = {.lex_state = 149}, + [808] = {.lex_state = 149}, + [809] = {.lex_state = 149}, + [810] = {.lex_state = 139}, + [811] = {.lex_state = 149}, + [812] = {.lex_state = 149}, [813] = {.lex_state = 149}, - [814] = {.lex_state = 141}, - [815] = {.lex_state = 145}, - [816] = {.lex_state = 152}, - [817] = {.lex_state = 152}, - [818] = {.lex_state = 152}, - [819] = {.lex_state = 152}, - [820] = {.lex_state = 152}, - [821] = {.lex_state = 152}, - [822] = {.lex_state = 151}, - [823] = {.lex_state = 152}, - [824] = {.lex_state = 152}, - [825] = {.lex_state = 152}, + [814] = {.lex_state = 149}, + [815] = {.lex_state = 149}, + [816] = {.lex_state = 149}, + [817] = {.lex_state = 141}, + [818] = {.lex_state = 149}, + [819] = {.lex_state = 146}, + [820] = {.lex_state = 146}, + [821] = {.lex_state = 146}, + [822] = {.lex_state = 149}, + [823] = {.lex_state = 149}, + [824] = {.lex_state = 149}, + [825] = {.lex_state = 139}, [826] = {.lex_state = 152}, - [827] = {.lex_state = 152}, - [828] = {.lex_state = 152}, - [829] = {.lex_state = 152}, - [830] = {.lex_state = 152}, - [831] = {.lex_state = 151}, - [832] = {.lex_state = 152}, - [833] = {.lex_state = 145}, - [834] = {.lex_state = 145}, - [835] = {.lex_state = 145}, + [827] = {.lex_state = 149}, + [828] = {.lex_state = 149}, + [829] = {.lex_state = 149}, + [830] = {.lex_state = 141}, + [831] = {.lex_state = 149}, + [832] = {.lex_state = 141}, + [833] = {.lex_state = 149}, + [834] = {.lex_state = 149}, + [835] = {.lex_state = 149}, [836] = {.lex_state = 152}, - [837] = {.lex_state = 152}, - [838] = {.lex_state = 139}, - [839] = {.lex_state = 152}, - [840] = {.lex_state = 139}, - [841] = {.lex_state = 149}, + [837] = {.lex_state = 149}, + [838] = {.lex_state = 149}, + [839] = {.lex_state = 139}, + [840] = {.lex_state = 146}, + [841] = {.lex_state = 139}, [842] = {.lex_state = 149}, - [843] = {.lex_state = 153}, - [844] = {.lex_state = 145}, - [845] = {.lex_state = 145}, - [846] = {.lex_state = 149}, - [847] = {.lex_state = 153}, - [848] = {.lex_state = 149}, - [849] = {.lex_state = 139}, - [850] = {.lex_state = 145}, + [843] = {.lex_state = 146}, + [844] = {.lex_state = 149}, + [845] = {.lex_state = 146}, + [846] = {.lex_state = 139}, + [847] = {.lex_state = 149}, + [848] = {.lex_state = 153}, + [849] = {.lex_state = 153}, + [850] = {.lex_state = 153}, [851] = {.lex_state = 153}, - [852] = {.lex_state = 145}, - [853] = {.lex_state = 149}, + [852] = {.lex_state = 149}, + [853] = {.lex_state = 146}, [854] = {.lex_state = 153}, - [855] = {.lex_state = 145}, - [856] = {.lex_state = 149}, - [857] = {.lex_state = 152}, - [858] = {.lex_state = 153}, - [859] = {.lex_state = 153}, + [855] = {.lex_state = 146}, + [856] = {.lex_state = 146}, + [857] = {.lex_state = 149}, + [858] = {.lex_state = 149}, + [859] = {.lex_state = 149}, [860] = {.lex_state = 149}, - [861] = {.lex_state = 145}, - [862] = {.lex_state = 139}, + [861] = {.lex_state = 153}, + [862] = {.lex_state = 146}, [863] = {.lex_state = 139}, [864] = {.lex_state = 139}, - [865] = {.lex_state = 154}, - [866] = {.lex_state = 154}, - [867] = {.lex_state = 139}, - [868] = {.lex_state = 139}, - [869] = {.lex_state = 149}, - [870] = {.lex_state = 153}, + [865] = {.lex_state = 153}, + [866] = {.lex_state = 139}, + [867] = {.lex_state = 154}, + [868] = {.lex_state = 154}, + [869] = {.lex_state = 139}, + [870] = {.lex_state = 139}, [871] = {.lex_state = 139}, - [872] = {.lex_state = 139}, + [872] = {.lex_state = 149}, [873] = {.lex_state = 139}, [874] = {.lex_state = 139}, - [875] = {.lex_state = 152}, + [875] = {.lex_state = 139}, [876] = {.lex_state = 139}, [877] = {.lex_state = 139}, - [878] = {.lex_state = 139}, - [879] = {.lex_state = 139}, - [880] = {.lex_state = 152}, + [878] = {.lex_state = 149}, + [879] = {.lex_state = 149}, + [880] = {.lex_state = 149}, [881] = {.lex_state = 139}, - [882] = {.lex_state = 139}, + [882] = {.lex_state = 149}, [883] = {.lex_state = 139}, - [884] = {.lex_state = 154}, - [885] = {.lex_state = 139}, + [884] = {.lex_state = 139}, + [885] = {.lex_state = 149}, [886] = {.lex_state = 139}, [887] = {.lex_state = 139}, [888] = {.lex_state = 149}, @@ -6165,13 +6173,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 139}, [894] = {.lex_state = 139}, [895] = {.lex_state = 139}, - [896] = {.lex_state = 152}, - [897] = {.lex_state = 152}, + [896] = {.lex_state = 139}, + [897] = {.lex_state = 139}, [898] = {.lex_state = 139}, [899] = {.lex_state = 139}, [900] = {.lex_state = 139}, - [901] = {.lex_state = 149}, - [902] = {.lex_state = 139}, + [901] = {.lex_state = 139}, + [902] = {.lex_state = 154}, [903] = {.lex_state = 139}, [904] = {.lex_state = 139}, [905] = {.lex_state = 139}, @@ -6179,268 +6187,268 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [907] = {.lex_state = 139}, [908] = {.lex_state = 139}, [909] = {.lex_state = 139}, - [910] = {.lex_state = 153}, - [911] = {.lex_state = 152}, - [912] = {.lex_state = 153}, - [913] = {.lex_state = 152}, - [914] = {.lex_state = 152}, - [915] = {.lex_state = 152}, - [916] = {.lex_state = 153}, - [917] = {.lex_state = 155}, - [918] = {.lex_state = 155}, + [910] = {.lex_state = 139}, + [911] = {.lex_state = 153}, + [912] = {.lex_state = 149}, + [913] = {.lex_state = 153}, + [914] = {.lex_state = 149}, + [915] = {.lex_state = 153}, + [916] = {.lex_state = 149}, + [917] = {.lex_state = 149}, + [918] = {.lex_state = 153}, [919] = {.lex_state = 155}, [920] = {.lex_state = 155}, [921] = {.lex_state = 155}, - [922] = {.lex_state = 152}, + [922] = {.lex_state = 155}, [923] = {.lex_state = 155}, - [924] = {.lex_state = 153}, - [925] = {.lex_state = 154}, - [926] = {.lex_state = 139}, + [924] = {.lex_state = 155}, + [925] = {.lex_state = 149}, + [926] = {.lex_state = 154}, [927] = {.lex_state = 154}, - [928] = {.lex_state = 139}, - [929] = {.lex_state = 155}, - [930] = {.lex_state = 154}, - [931] = {.lex_state = 154}, - [932] = {.lex_state = 139}, - [933] = {.lex_state = 0}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 154}, + [930] = {.lex_state = 139}, + [931] = {.lex_state = 139}, + [932] = {.lex_state = 154}, + [933] = {.lex_state = 154}, [934] = {.lex_state = 139}, - [935] = {.lex_state = 154}, - [936] = {.lex_state = 154}, + [935] = {.lex_state = 139}, + [936] = {.lex_state = 139}, [937] = {.lex_state = 154}, - [938] = {.lex_state = 139}, - [939] = {.lex_state = 152}, - [940] = {.lex_state = 154}, + [938] = {.lex_state = 154}, + [939] = {.lex_state = 149}, + [940] = {.lex_state = 0}, [941] = {.lex_state = 139}, [942] = {.lex_state = 139}, [943] = {.lex_state = 154}, [944] = {.lex_state = 154}, - [945] = {.lex_state = 0}, + [945] = {.lex_state = 155}, [946] = {.lex_state = 154}, [947] = {.lex_state = 154}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, + [948] = {.lex_state = 154}, + [949] = {.lex_state = 153}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 152}, + [951] = {.lex_state = 149}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, + [953] = {.lex_state = 149}, [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, [956] = {.lex_state = 0}, - [957] = {.lex_state = 152}, - [958] = {.lex_state = 136}, - [959] = {.lex_state = 139}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 139}, + [962] = {.lex_state = 0}, [963] = {.lex_state = 149}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, + [964] = {.lex_state = 136}, + [965] = {.lex_state = 139}, [966] = {.lex_state = 153}, - [967] = {.lex_state = 152}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 139}, - [970] = {.lex_state = 153}, - [971] = {.lex_state = 154}, - [972] = {.lex_state = 0}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 139}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 149}, + [971] = {.lex_state = 139}, + [972] = {.lex_state = 139, .external_lex_state = 1}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 136}, - [978] = {.lex_state = 154}, - [979] = {.lex_state = 139}, - [980] = {.lex_state = 139}, - [981] = {.lex_state = 152}, - [982] = {.lex_state = 139}, + [975] = {.lex_state = 139, .external_lex_state = 1}, + [976] = {.lex_state = 139, .external_lex_state = 1}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 154}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 154}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 139}, [984] = {.lex_state = 139, .external_lex_state = 1}, - [985] = {.lex_state = 139, .external_lex_state = 1}, - [986] = {.lex_state = 153}, - [987] = {.lex_state = 139}, - [988] = {.lex_state = 139}, - [989] = {.lex_state = 154}, - [990] = {.lex_state = 139, .external_lex_state = 1}, - [991] = {.lex_state = 139, .external_lex_state = 1}, - [992] = {.lex_state = 139}, - [993] = {.lex_state = 139, .external_lex_state = 1}, + [985] = {.lex_state = 139}, + [986] = {.lex_state = 139}, + [987] = {.lex_state = 149}, + [988] = {.lex_state = 139, .external_lex_state = 1}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 154}, + [992] = {.lex_state = 139, .external_lex_state = 1}, + [993] = {.lex_state = 0}, [994] = {.lex_state = 139}, - [995] = {.lex_state = 136}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 139, .external_lex_state = 1}, - [998] = {.lex_state = 139}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 139, .external_lex_state = 1}, - [1004] = {.lex_state = 139}, - [1005] = {.lex_state = 139}, + [995] = {.lex_state = 139, .external_lex_state = 1}, + [996] = {.lex_state = 139}, + [997] = {.lex_state = 139}, + [998] = {.lex_state = 154}, + [999] = {.lex_state = 154}, + [1000] = {.lex_state = 154}, + [1001] = {.lex_state = 153}, + [1002] = {.lex_state = 154}, + [1003] = {.lex_state = 153}, + [1004] = {.lex_state = 136}, + [1005] = {.lex_state = 0}, [1006] = {.lex_state = 139, .external_lex_state = 1}, - [1007] = {.lex_state = 154}, - [1008] = {.lex_state = 139, .external_lex_state = 1}, - [1009] = {.lex_state = 154}, - [1010] = {.lex_state = 0}, + [1007] = {.lex_state = 139}, + [1008] = {.lex_state = 154}, + [1009] = {.lex_state = 139}, + [1010] = {.lex_state = 139, .external_lex_state = 1}, [1011] = {.lex_state = 139}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 154}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 154}, + [1012] = {.lex_state = 153}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 139, .external_lex_state = 1}, + [1015] = {.lex_state = 139, .external_lex_state = 1}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 139, .external_lex_state = 1}, - [1018] = {.lex_state = 152}, - [1019] = {.lex_state = 139, .external_lex_state = 1}, - [1020] = {.lex_state = 139}, + [1018] = {.lex_state = 154}, + [1019] = {.lex_state = 139}, + [1020] = {.lex_state = 149}, [1021] = {.lex_state = 154}, - [1022] = {.lex_state = 152}, - [1023] = {.lex_state = 139}, - [1024] = {.lex_state = 139, .external_lex_state = 1}, + [1022] = {.lex_state = 139}, + [1023] = {.lex_state = 153}, + [1024] = {.lex_state = 139}, [1025] = {.lex_state = 139}, - [1026] = {.lex_state = 154}, - [1027] = {.lex_state = 154}, - [1028] = {.lex_state = 139, .external_lex_state = 1}, + [1026] = {.lex_state = 139, .external_lex_state = 1}, + [1027] = {.lex_state = 139}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 136}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 163}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 0}, + [1030] = {.lex_state = 139}, + [1031] = {.lex_state = 153}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 149}, + [1034] = {.lex_state = 136}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 139}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 139}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 136}, - [1043] = {.lex_state = 136}, + [1040] = {.lex_state = 139}, + [1041] = {.lex_state = 139}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0}, [1044] = {.lex_state = 136}, [1045] = {.lex_state = 136}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, + [1046] = {.lex_state = 136}, + [1047] = {.lex_state = 136}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 154}, + [1050] = {.lex_state = 0}, [1051] = {.lex_state = 136}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, + [1053] = {.lex_state = 154}, [1054] = {.lex_state = 0}, [1055] = {.lex_state = 136}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 139}, - [1061] = {.lex_state = 139}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 139}, + [1063] = {.lex_state = 139}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, + [1067] = {.lex_state = 136}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 136}, - [1074] = {.lex_state = 139}, + [1073] = {.lex_state = 139}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 136}, [1076] = {.lex_state = 0}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 136}, + [1078] = {.lex_state = 0}, [1079] = {.lex_state = 136}, - [1080] = {.lex_state = 0}, + [1080] = {.lex_state = 136}, [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 136}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 136}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 136}, + [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 0}, [1093] = {.lex_state = 139}, - [1094] = {.lex_state = 154}, - [1095] = {.lex_state = 0}, + [1094] = {.lex_state = 163}, + [1095] = {.lex_state = 154}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, + [1101] = {.lex_state = 149}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 145}, - [1108] = {.lex_state = 139}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, + [1110] = {.lex_state = 146}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 152}, - [1113] = {.lex_state = 136}, - [1114] = {.lex_state = 139}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 136}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 136}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, + [1118] = {.lex_state = 136}, + [1119] = {.lex_state = 139}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 163}, + [1121] = {.lex_state = 136}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 163}, + [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 136}, + [1130] = {.lex_state = 163}, + [1131] = {.lex_state = 163}, [1132] = {.lex_state = 136}, - [1133] = {.lex_state = 163}, - [1134] = {.lex_state = 136}, - [1135] = {.lex_state = 0}, + [1133] = {.lex_state = 136}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 136}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, + [1137] = {.lex_state = 163}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 136}, - [1140] = {.lex_state = 0}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 136}, [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 139}, [1144] = {.lex_state = 139}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 154}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 154}, - [1149] = {.lex_state = 154}, - [1150] = {.lex_state = 0}, + [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 139}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 154}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 139}, + [1153] = {.lex_state = 154}, + [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 154}, + [1159] = {.lex_state = 139}, + [1160] = {.lex_state = 136}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 136}, - [1164] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 136}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 136}, - [1171] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 154}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, @@ -6452,202 +6460,202 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 136}, + [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 139}, + [1185] = {.lex_state = 154}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 154}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 154}, - [1191] = {.lex_state = 154}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 136}, + [1189] = {.lex_state = 154}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 136}, + [1194] = {.lex_state = 154}, [1195] = {.lex_state = 154}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 154}, + [1196] = {.lex_state = 154}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 154}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 136}, - [1205] = {.lex_state = 163}, + [1201] = {.lex_state = 154}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 163}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 154}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 154}, + [1207] = {.lex_state = 136}, + [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 154}, - [1211] = {.lex_state = 154}, + [1210] = {.lex_state = 136}, + [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 139}, + [1213] = {.lex_state = 154}, + [1214] = {.lex_state = 154}, + [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, + [1217] = {.lex_state = 154}, + [1218] = {.lex_state = 154}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, + [1221] = {.lex_state = 139}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 136}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 154}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 154}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 136}, + [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 139}, + [1232] = {.lex_state = 154}, + [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 163}, - [1237] = {.lex_state = 0}, + [1235] = {.lex_state = 154}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 139}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 136}, + [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 154}, + [1243] = {.lex_state = 136}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 154}, + [1247] = {.lex_state = 154}, + [1248] = {.lex_state = 163}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 163}, + [1251] = {.lex_state = 0}, [1252] = {.lex_state = 163}, [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 154}, + [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, + [1256] = {.lex_state = 154}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, + [1261] = {.lex_state = 154}, + [1262] = {.lex_state = 163}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 139}, - [1267] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 139}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 154}, - [1270] = {.lex_state = 154}, - [1271] = {.lex_state = 154}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 0}, [1272] = {.lex_state = 154}, [1273] = {.lex_state = 154}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 154}, - [1278] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 154}, [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 163}, + [1280] = {.lex_state = 0}, [1281] = {.lex_state = 154}, - [1282] = {.lex_state = 154}, - [1283] = {.lex_state = 163}, - [1284] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 163}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 154}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, + [1289] = {.lex_state = 154}, [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 154}, - [1292] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 154}, [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 136}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, + [1295] = {.lex_state = 163}, + [1296] = {.lex_state = 154}, + [1297] = {.lex_state = 154}, [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 154}, + [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 154}, + [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 154}, + [1306] = {.lex_state = 136}, + [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, + [1309] = {.lex_state = 154}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 136}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 154}, - [1315] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 136}, [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 139}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 154}, - [1319] = {.lex_state = 154}, - [1320] = {.lex_state = 136}, - [1321] = {.lex_state = 0}, + [1319] = {.lex_state = 139}, + [1320] = {.lex_state = 154}, + [1321] = {.lex_state = 136}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 139}, - [1324] = {.lex_state = 136}, - [1325] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 139}, + [1325] = {.lex_state = 136}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 136}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 136}, + [1331] = {.lex_state = 136}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 136}, + [1337] = {.lex_state = 136}, + [1338] = {.lex_state = 0}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 154}, + [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 136}, - [1348] = {.lex_state = 136}, + [1346] = {.lex_state = 136}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 136}, - [1355] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 136}, [1356] = {.lex_state = 0}, [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1358] = {.lex_state = 154}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, + [1362] = {.lex_state = 136}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 136}, + [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, + [1371] = {.lex_state = 136}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 136}, + [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 136}, + [1378] = {.lex_state = 0}, [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, @@ -6657,29 +6665,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 136}, + [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, [1391] = {.lex_state = 0}, [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 136}, - [1396] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 136}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 139}, + [1402] = {.lex_state = 136}, + [1403] = {.lex_state = 136}, [1404] = {.lex_state = 139}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 139}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 154}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 136}, + [1405] = {.lex_state = 139}, + [1406] = {.lex_state = 154}, + [1407] = {.lex_state = 139}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 136}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, @@ -6688,22 +6696,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 136}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, + [1422] = {.lex_state = 136}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, + [1429] = {.lex_state = 136}, [1430] = {.lex_state = 0}, [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 136}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, }; enum { @@ -6817,50 +6826,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1400), - [sym__module_statement] = STATE(2), - [sym_target_group] = STATE(2), - [sym_attribute] = STATE(2), - [sym_import] = STATE(2), - [sym_constant] = STATE(2), - [sym_external_type] = STATE(2), - [sym_external_function] = STATE(2), - [sym_function] = STATE(2), + [sym_source_file] = STATE(1401), + [sym__module_statement] = STATE(3), + [sym_target_group] = STATE(3), + [sym_attribute] = STATE(3), + [sym_import] = STATE(3), + [sym_constant] = STATE(3), + [sym_external_type] = STATE(3), + [sym_external_function] = STATE(3), + [sym_function] = STATE(3), [aux_sym__statement_seq] = STATE(4), - [sym__statement] = STATE(462), - [sym__expression] = STATE(80), - [sym_binary_expression] = STATE(80), - [sym__expression_unit] = STATE(80), - [sym_record] = STATE(66), - [sym_todo] = STATE(80), - [sym_panic] = STATE(80), - [sym_tuple] = STATE(68), - [sym_list] = STATE(80), - [sym__expression_bit_string] = STATE(80), + [sym__statement] = STATE(460), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym__expression_unit] = STATE(83), + [sym_record] = STATE(75), + [sym_todo] = STATE(83), + [sym_panic] = STATE(83), + [sym_tuple] = STATE(74), + [sym_list] = STATE(83), + [sym__expression_bit_string] = STATE(83), [sym_anonymous_function] = STATE(71), [sym_block] = STATE(34), [sym_case] = STATE(34), - [sym_let_assert] = STATE(462), - [sym_let] = STATE(462), - [sym_use] = STATE(462), - [sym_assert] = STATE(80), - [sym_boolean_negation] = STATE(80), - [sym_integer_negation] = STATE(80), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1399), + [sym_let_assert] = STATE(460), + [sym_let] = STATE(460), + [sym_use] = STATE(460), + [sym_assert] = STATE(83), + [sym_boolean_negation] = STATE(83), + [sym_integer_negation] = STATE(83), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1400), [sym_tuple_access] = STATE(34), - [sym__maybe_record_expression] = STATE(1398), + [sym__maybe_record_expression] = STATE(1399), [sym_field_access] = STATE(34), - [sym__maybe_function_expression] = STATE(1232), + [sym__maybe_function_expression] = STATE(1245), [sym_function_call] = STATE(34), - [sym_type_definition] = STATE(2), - [sym_type_alias] = STATE(2), - [sym_string] = STATE(80), - [sym_integer] = STATE(80), + [sym_type_definition] = STATE(3), + [sym_type_alias] = STATE(3), + [sym_string] = STATE(83), + [sym_integer] = STATE(83), [sym_identifier] = STATE(38), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(7), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -6896,53 +6905,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(61), }, [2] = { - [sym__module_statement] = STATE(3), - [sym_target_group] = STATE(3), - [sym_attribute] = STATE(3), - [sym_import] = STATE(3), - [sym_constant] = STATE(3), - [sym_external_type] = STATE(3), - [sym_external_function] = STATE(3), - [sym_function] = STATE(3), + [sym__module_statement] = STATE(2), + [sym_target_group] = STATE(2), + [sym_attribute] = STATE(2), + [sym_import] = STATE(2), + [sym_constant] = STATE(2), + [sym_external_type] = STATE(2), + [sym_external_function] = STATE(2), + [sym_function] = STATE(2), [aux_sym__statement_seq] = STATE(4), - [sym__statement] = STATE(462), - [sym__expression] = STATE(80), - [sym_binary_expression] = STATE(80), - [sym__expression_unit] = STATE(80), - [sym_record] = STATE(66), - [sym_todo] = STATE(80), - [sym_panic] = STATE(80), - [sym_tuple] = STATE(68), - [sym_list] = STATE(80), - [sym__expression_bit_string] = STATE(80), + [sym__statement] = STATE(460), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym__expression_unit] = STATE(83), + [sym_record] = STATE(75), + [sym_todo] = STATE(83), + [sym_panic] = STATE(83), + [sym_tuple] = STATE(74), + [sym_list] = STATE(83), + [sym__expression_bit_string] = STATE(83), [sym_anonymous_function] = STATE(71), [sym_block] = STATE(34), [sym_case] = STATE(34), - [sym_let_assert] = STATE(462), - [sym_let] = STATE(462), - [sym_use] = STATE(462), - [sym_assert] = STATE(80), - [sym_boolean_negation] = STATE(80), - [sym_integer_negation] = STATE(80), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1399), + [sym_let_assert] = STATE(460), + [sym_let] = STATE(460), + [sym_use] = STATE(460), + [sym_assert] = STATE(83), + [sym_boolean_negation] = STATE(83), + [sym_integer_negation] = STATE(83), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1400), [sym_tuple_access] = STATE(34), - [sym__maybe_record_expression] = STATE(1398), + [sym__maybe_record_expression] = STATE(1399), [sym_field_access] = STATE(34), - [sym__maybe_function_expression] = STATE(1232), + [sym__maybe_function_expression] = STATE(1245), [sym_function_call] = STATE(34), - [sym_type_definition] = STATE(3), - [sym_type_alias] = STATE(3), - [sym_string] = STATE(80), - [sym_integer] = STATE(80), + [sym_type_definition] = STATE(2), + [sym_type_alias] = STATE(2), + [sym_string] = STATE(83), + [sym_integer] = STATE(83), [sym_identifier] = STATE(38), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(63), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(68), + [anon_sym_AT] = ACTIONS(71), + [anon_sym_import] = ACTIONS(74), + [anon_sym_type] = ACTIONS(77), + [anon_sym_const] = ACTIONS(80), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(86), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(92), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_external] = ACTIONS(98), + [anon_sym_todo] = ACTIONS(101), + [anon_sym_panic] = ACTIONS(104), + [anon_sym_case] = ACTIONS(107), + [anon_sym_let] = ACTIONS(110), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_use] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [sym_visibility_modifier] = ACTIONS(122), + [sym_opacity_modifier] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(128), + [sym_float] = ACTIONS(131), + [sym__hex] = ACTIONS(134), + [sym__decimal] = ACTIONS(137), + [sym__octal] = ACTIONS(134), + [sym__binary] = ACTIONS(134), + [sym__name] = ACTIONS(140), + [sym__upname] = ACTIONS(143), + }, + [3] = { + [sym__module_statement] = STATE(2), + [sym_target_group] = STATE(2), + [sym_attribute] = STATE(2), + [sym_import] = STATE(2), + [sym_constant] = STATE(2), + [sym_external_type] = STATE(2), + [sym_external_function] = STATE(2), + [sym_function] = STATE(2), + [aux_sym__statement_seq] = STATE(4), + [sym__statement] = STATE(460), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym__expression_unit] = STATE(83), + [sym_record] = STATE(75), + [sym_todo] = STATE(83), + [sym_panic] = STATE(83), + [sym_tuple] = STATE(74), + [sym_list] = STATE(83), + [sym__expression_bit_string] = STATE(83), + [sym_anonymous_function] = STATE(71), + [sym_block] = STATE(34), + [sym_case] = STATE(34), + [sym_let_assert] = STATE(460), + [sym_let] = STATE(460), + [sym_use] = STATE(460), + [sym_assert] = STATE(83), + [sym_boolean_negation] = STATE(83), + [sym_integer_negation] = STATE(83), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1400), + [sym_tuple_access] = STATE(34), + [sym__maybe_record_expression] = STATE(1399), + [sym_field_access] = STATE(34), + [sym__maybe_function_expression] = STATE(1245), + [sym_function_call] = STATE(34), + [sym_type_definition] = STATE(2), + [sym_type_alias] = STATE(2), + [sym_string] = STATE(83), + [sym_integer] = STATE(83), + [sym_identifier] = STATE(38), + [sym_constructor_name] = STATE(6), + [sym_remote_constructor_name] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(146), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), [anon_sym_if] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_AT] = ACTIONS(13), @@ -6973,114 +7060,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__name] = ACTIONS(59), [sym__upname] = ACTIONS(61), }, - [3] = { - [sym__module_statement] = STATE(3), - [sym_target_group] = STATE(3), - [sym_attribute] = STATE(3), - [sym_import] = STATE(3), - [sym_constant] = STATE(3), - [sym_external_type] = STATE(3), - [sym_external_function] = STATE(3), - [sym_function] = STATE(3), - [aux_sym__statement_seq] = STATE(4), - [sym__statement] = STATE(462), - [sym__expression] = STATE(80), - [sym_binary_expression] = STATE(80), - [sym__expression_unit] = STATE(80), - [sym_record] = STATE(66), - [sym_todo] = STATE(80), - [sym_panic] = STATE(80), - [sym_tuple] = STATE(68), - [sym_list] = STATE(80), - [sym__expression_bit_string] = STATE(80), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(34), - [sym_case] = STATE(34), - [sym_let_assert] = STATE(462), - [sym_let] = STATE(462), - [sym_use] = STATE(462), - [sym_assert] = STATE(80), - [sym_boolean_negation] = STATE(80), - [sym_integer_negation] = STATE(80), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1399), - [sym_tuple_access] = STATE(34), - [sym__maybe_record_expression] = STATE(1398), - [sym_field_access] = STATE(34), - [sym__maybe_function_expression] = STATE(1232), - [sym_function_call] = STATE(34), - [sym_type_definition] = STATE(3), - [sym_type_alias] = STATE(3), - [sym_string] = STATE(80), - [sym_integer] = STATE(80), - [sym_identifier] = STATE(38), - [sym_constructor_name] = STATE(6), - [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(65), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(70), - [anon_sym_AT] = ACTIONS(73), - [anon_sym_import] = ACTIONS(76), - [anon_sym_type] = ACTIONS(79), - [anon_sym_const] = ACTIONS(82), - [anon_sym_POUND] = ACTIONS(85), - [anon_sym_LBRACK] = ACTIONS(88), - [anon_sym_LT_LT] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(94), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_external] = ACTIONS(100), - [anon_sym_todo] = ACTIONS(103), - [anon_sym_panic] = ACTIONS(106), - [anon_sym_case] = ACTIONS(109), - [anon_sym_let] = ACTIONS(112), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_use] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(121), - [sym_visibility_modifier] = ACTIONS(124), - [sym_opacity_modifier] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(130), - [sym_float] = ACTIONS(133), - [sym__hex] = ACTIONS(136), - [sym__decimal] = ACTIONS(139), - [sym__octal] = ACTIONS(136), - [sym__binary] = ACTIONS(136), - [sym__name] = ACTIONS(142), - [sym__upname] = ACTIONS(145), - }, [4] = { [aux_sym__statement_seq] = STATE(5), - [sym__statement] = STATE(462), - [sym__expression] = STATE(80), - [sym_binary_expression] = STATE(80), - [sym__expression_unit] = STATE(80), - [sym_record] = STATE(66), - [sym_todo] = STATE(80), - [sym_panic] = STATE(80), - [sym_tuple] = STATE(68), - [sym_list] = STATE(80), - [sym__expression_bit_string] = STATE(80), + [sym__statement] = STATE(460), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym__expression_unit] = STATE(83), + [sym_record] = STATE(75), + [sym_todo] = STATE(83), + [sym_panic] = STATE(83), + [sym_tuple] = STATE(74), + [sym_list] = STATE(83), + [sym__expression_bit_string] = STATE(83), [sym_anonymous_function] = STATE(71), [sym_block] = STATE(34), [sym_case] = STATE(34), - [sym_let_assert] = STATE(462), - [sym_let] = STATE(462), - [sym_use] = STATE(462), - [sym_assert] = STATE(80), - [sym_boolean_negation] = STATE(80), - [sym_integer_negation] = STATE(80), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1399), + [sym_let_assert] = STATE(460), + [sym_let] = STATE(460), + [sym_use] = STATE(460), + [sym_assert] = STATE(83), + [sym_boolean_negation] = STATE(83), + [sym_integer_negation] = STATE(83), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1400), [sym_tuple_access] = STATE(34), - [sym__maybe_record_expression] = STATE(1398), + [sym__maybe_record_expression] = STATE(1399), [sym_field_access] = STATE(34), - [sym__maybe_function_expression] = STATE(1232), + [sym__maybe_function_expression] = STATE(1245), [sym_function_call] = STATE(34), - [sym_string] = STATE(80), - [sym_integer] = STATE(80), + [sym_string] = STATE(83), + [sym_integer] = STATE(83), [sym_identifier] = STATE(38), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), @@ -7120,34 +7129,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [aux_sym__statement_seq] = STATE(5), - [sym__statement] = STATE(462), - [sym__expression] = STATE(80), - [sym_binary_expression] = STATE(80), - [sym__expression_unit] = STATE(80), - [sym_record] = STATE(66), - [sym_todo] = STATE(80), - [sym_panic] = STATE(80), - [sym_tuple] = STATE(68), - [sym_list] = STATE(80), - [sym__expression_bit_string] = STATE(80), + [sym__statement] = STATE(460), + [sym__expression] = STATE(83), + [sym_binary_expression] = STATE(83), + [sym__expression_unit] = STATE(83), + [sym_record] = STATE(75), + [sym_todo] = STATE(83), + [sym_panic] = STATE(83), + [sym_tuple] = STATE(74), + [sym_list] = STATE(83), + [sym__expression_bit_string] = STATE(83), [sym_anonymous_function] = STATE(71), [sym_block] = STATE(34), [sym_case] = STATE(34), - [sym_let_assert] = STATE(462), - [sym_let] = STATE(462), - [sym_use] = STATE(462), - [sym_assert] = STATE(80), - [sym_boolean_negation] = STATE(80), - [sym_integer_negation] = STATE(80), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1399), + [sym_let_assert] = STATE(460), + [sym_let] = STATE(460), + [sym_use] = STATE(460), + [sym_assert] = STATE(83), + [sym_boolean_negation] = STATE(83), + [sym_integer_negation] = STATE(83), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1400), [sym_tuple_access] = STATE(34), - [sym__maybe_record_expression] = STATE(1398), + [sym__maybe_record_expression] = STATE(1399), [sym_field_access] = STATE(34), - [sym__maybe_function_expression] = STATE(1232), + [sym__maybe_function_expression] = STATE(1245), [sym_function_call] = STATE(34), - [sym_string] = STATE(80), - [sym_integer] = STATE(80), + [sym_string] = STATE(83), + [sym_integer] = STATE(83), [sym_identifier] = STATE(38), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), @@ -7193,7 +7202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(274), 1, anon_sym_LPAREN, - STATE(65), 1, + STATE(60), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -7253,13 +7262,105 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [71] = 4, + [71] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(296), 1, + anon_sym_let, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(300), 1, + anon_sym_use, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + STATE(43), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [197] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 25, + ACTIONS(318), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7285,7 +7386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(276), 29, + ACTIONS(316), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7315,13 +7416,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [137] = 4, + [263] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 25, + ACTIONS(322), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7347,7 +7448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(280), 29, + ACTIONS(320), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7377,105 +7478,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [203] = 34, + [329] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_RBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(326), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(300), 1, anon_sym_panic, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_use, - ACTIONS(310), 1, anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, - sym__upname, - STATE(31), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, + ACTIONS(324), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [329] = 4, + sym__upname, + [395] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 25, + ACTIONS(330), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7501,7 +7572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(324), 29, + ACTIONS(328), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7531,60 +7602,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [395] = 34, + [461] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(328), 1, + ACTIONS(332), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -7592,19 +7663,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -7623,13 +7694,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [521] = 4, + [587] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(332), 25, + ACTIONS(336), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7655,7 +7726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(330), 29, + ACTIONS(334), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7685,60 +7756,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [587] = 34, + [653] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(334), 1, + ACTIONS(338), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -7746,19 +7817,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -7777,17 +7848,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [713] = 6, + [779] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(340), 1, - anon_sym_LPAREN, - ACTIONS(342), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 25, + ACTIONS(342), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7813,10 +7880,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(336), 27, + ACTIONS(340), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -7841,9 +7910,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [783] = 4, + [845] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(348), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -7873,12 +7946,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(344), 29, + ACTIONS(344), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -7903,152 +7974,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [849] = 34, + [915] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_use, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(348), 1, - anon_sym_RBRACE, - STATE(31), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [975] = 34, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(350), 1, + ACTIONS(352), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -8056,19 +8035,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -8087,13 +8066,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1101] = 4, + [1041] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 25, + ACTIONS(356), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8119,7 +8098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 29, + ACTIONS(354), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8149,60 +8128,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1167] = 34, + [1107] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(356), 1, + ACTIONS(358), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -8210,19 +8189,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -8241,246 +8220,428 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1293] = 4, + [1233] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(360), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(290), 1, anon_sym_todo, + ACTIONS(292), 1, anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, + ACTIONS(296), 1, anon_sym_let, + ACTIONS(298), 1, anon_sym_assert, + ACTIONS(300), 1, anon_sym_use, + ACTIONS(302), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(358), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(304), 1, anon_sym_DQUOTE, + ACTIONS(306), 1, sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(360), 1, + anon_sym_RBRACE, + STATE(22), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [1359] = 4, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1359] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(364), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(290), 1, anon_sym_todo, + ACTIONS(292), 1, anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, + ACTIONS(296), 1, anon_sym_let, + ACTIONS(298), 1, anon_sym_assert, + ACTIONS(300), 1, anon_sym_use, + ACTIONS(302), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, sym__decimal, + ACTIONS(312), 1, sym__name, - ACTIONS(362), 29, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, + ACTIONS(314), 1, + sym__upname, + ACTIONS(362), 1, + anon_sym_RBRACE, + STATE(12), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [1425] = 4, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1485] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(368), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(290), 1, anon_sym_todo, + ACTIONS(292), 1, anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, + ACTIONS(296), 1, anon_sym_let, + ACTIONS(298), 1, anon_sym_assert, + ACTIONS(300), 1, anon_sym_use, + ACTIONS(302), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, sym__decimal, + ACTIONS(312), 1, sym__name, - ACTIONS(366), 29, - ts_builtin_sym_end, + ACTIONS(314), 1, + sym__upname, + ACTIONS(364), 1, + anon_sym_RBRACE, + STATE(43), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1611] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(280), 1, anon_sym_POUND, + ACTIONS(282), 1, anon_sym_LBRACK, + ACTIONS(284), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(296), 1, + anon_sym_let, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(300), 1, + anon_sym_use, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, anon_sym_DQUOTE, + ACTIONS(306), 1, sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(366), 1, + anon_sym_RBRACE, + STATE(43), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [1491] = 34, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1737] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(370), 1, + ACTIONS(368), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -8488,19 +8649,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -8519,13 +8680,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1617] = 4, + [1863] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(374), 25, + ACTIONS(372), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8551,7 +8712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(372), 29, + ACTIONS(370), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8581,13 +8742,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1683] = 4, + [1929] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 25, + ACTIONS(376), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8613,7 +8774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(376), 29, + ACTIONS(374), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8643,13 +8804,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1749] = 4, + [1995] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(382), 25, + ACTIONS(380), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8675,7 +8836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(380), 29, + ACTIONS(378), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8705,13 +8866,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1815] = 4, + [2061] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(386), 25, + ACTIONS(384), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8737,7 +8898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(384), 29, + ACTIONS(382), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8767,60 +8928,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1881] = 34, + [2127] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(388), 1, + ACTIONS(386), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -8828,19 +8989,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -8859,122 +9020,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2007] = 4, + [2253] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(392), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(390), 29, - ts_builtin_sym_end, + ACTIONS(276), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(280), 1, anon_sym_POUND, + ACTIONS(282), 1, anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2073] = 34, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(394), 1, + ACTIONS(388), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(7), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -8982,19 +9081,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9013,60 +9112,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2199] = 34, + [2379] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(209), 1, - anon_sym_RBRACE, - ACTIONS(396), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(399), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(402), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(405), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(408), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(411), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(414), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(417), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(420), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(423), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(426), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(429), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(432), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(435), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(438), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(444), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(447), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(450), 1, + ACTIONS(314), 1, sym__upname, - STATE(31), 1, + ACTIONS(390), 1, + anon_sym_RBRACE, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9074,19 +9173,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(441), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9105,60 +9204,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2325] = 34, + [2505] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(453), 1, + ACTIONS(392), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(41), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9166,19 +9265,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9197,60 +9296,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2451] = 34, + [2631] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(455), 1, + ACTIONS(394), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9258,19 +9357,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9289,17 +9388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2577] = 6, + [2757] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, + ACTIONS(400), 1, anon_sym_LPAREN, - ACTIONS(463), 1, + ACTIONS(402), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 25, + ACTIONS(398), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9325,7 +9424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(457), 27, + ACTIONS(396), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9353,60 +9452,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2647] = 34, + [2827] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(466), 1, + ACTIONS(405), 1, anon_sym_RBRACE, - STATE(40), 1, + STATE(52), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9414,19 +9513,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9445,60 +9544,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2773] = 34, + [2953] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(468), 1, + ACTIONS(407), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9506,19 +9605,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9537,109 +9636,79 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2899] = 34, + [3079] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(411), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(300), 1, anon_sym_panic, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_use, - ACTIONS(310), 1, anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(470), 1, - anon_sym_RBRACE, - STATE(30), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, + ACTIONS(409), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3025] = 6, + sym__upname, + [3145] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, + ACTIONS(400), 1, anon_sym_LPAREN, - ACTIONS(472), 1, + ACTIONS(413), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 25, + ACTIONS(398), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9665,7 +9734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(457), 27, + ACTIONS(396), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9693,152 +9762,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3095] = 34, + [3215] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_use, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(476), 1, - anon_sym_RBRACE, - STATE(31), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [3221] = 34, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(478), 1, + ACTIONS(417), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(14), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9846,19 +9823,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9877,60 +9854,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3347] = 34, + [3341] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(480), 1, + ACTIONS(419), 1, anon_sym_RBRACE, - STATE(36), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -9938,19 +9915,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -9969,60 +9946,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3473] = 34, + [3467] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(482), 1, + ACTIONS(421), 1, anon_sym_RBRACE, - STATE(33), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10030,19 +10007,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10061,13 +10038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3599] = 4, + [3593] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 25, + ACTIONS(425), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10093,7 +10070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(484), 29, + ACTIONS(423), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -10123,60 +10100,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3665] = 34, + [3659] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(209), 1, + anon_sym_RBRACE, + ACTIONS(427), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(430), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(433), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(436), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(439), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(442), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(445), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(448), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(451), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(454), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(457), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(460), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(463), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(466), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(469), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(475), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(478), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(481), 1, sym__upname, - ACTIONS(488), 1, - anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10184,19 +10161,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(472), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10215,60 +10192,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3791] = 34, + [3785] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(490), 1, + ACTIONS(484), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(19), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10276,19 +10253,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10307,80 +10284,142 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3917] = 34, + [3911] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(488), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(300), 1, anon_sym_panic, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_use, - ACTIONS(310), 1, anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(486), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(492), 1, - anon_sym_RBRACE, - STATE(16), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, + [3977] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(296), 1, + anon_sym_let, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(300), 1, + anon_sym_use, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(490), 1, + anon_sym_RBRACE, + STATE(43), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10399,60 +10438,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4043] = 34, + [4103] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(494), 1, + ACTIONS(492), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10460,19 +10499,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10491,60 +10530,122 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4169] = 34, + [4229] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(496), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(494), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(288), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(290), 1, anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4295] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(496), 1, + ACTIONS(498), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10552,19 +10653,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10583,13 +10684,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4295] = 4, + [4421] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(500), 25, + ACTIONS(502), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10615,7 +10716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(498), 29, + ACTIONS(500), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -10645,60 +10746,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4361] = 34, + [4487] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(502), 1, + ACTIONS(504), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(47), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10706,19 +10807,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10737,60 +10838,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4487] = 34, + [4613] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(504), 1, + ACTIONS(506), 1, anon_sym_RBRACE, - STATE(23), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10798,19 +10899,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10829,60 +10930,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4613] = 34, + [4739] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(506), 1, + ACTIONS(508), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10890,19 +10991,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -10921,60 +11022,60 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4739] = 34, + [4865] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(508), 1, + ACTIONS(510), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10982,19 +11083,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11013,60 +11114,58 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4865] = 34, + [4991] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(510), 1, - anon_sym_RBRACE, - STATE(13), 1, + STATE(23), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11074,19 +11173,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11105,74 +11204,103 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4991] = 4, + [5114] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(290), 1, anon_sym_todo, + ACTIONS(292), 1, anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, + ACTIONS(296), 1, anon_sym_let, + ACTIONS(298), 1, anon_sym_assert, + ACTIONS(300), 1, anon_sym_use, + ACTIONS(302), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(512), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(304), 1, anon_sym_DQUOTE, + ACTIONS(306), 1, sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + STATE(17), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [5056] = 4, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [5237] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 20, + ACTIONS(376), 20, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -11193,7 +11321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(376), 33, + ACTIONS(374), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -11227,58 +11355,148 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5121] = 33, + [5302] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, ACTIONS(314), 1, + sym__upname, + STATE(31), 1, + aux_sym__statement_seq, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(698), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(312), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [5425] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(296), 1, + anon_sym_let, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(300), 1, + anon_sym_use, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(53), 1, + STATE(24), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11286,19 +11504,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11317,13 +11535,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5244] = 4, + [5548] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(518), 25, + ACTIONS(514), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11349,7 +11567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(516), 28, + ACTIONS(512), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11378,58 +11596,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5309] = 33, + [5613] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(9), 1, + STATE(36), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11437,19 +11655,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11468,120 +11686,58 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5432] = 5, + [5736] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(524), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(522), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(520), 27, - ts_builtin_sym_end, + ACTIONS(276), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(280), 1, anon_sym_POUND, + ACTIONS(282), 1, anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5499] = 33, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(47), 1, + STATE(46), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11589,19 +11745,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11620,58 +11776,58 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5622] = 33, + [5859] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(19), 1, + STATE(53), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11679,19 +11835,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11710,13 +11866,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5745] = 4, + [5982] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(528), 25, + ACTIONS(518), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11742,7 +11898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(526), 28, + ACTIONS(516), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11771,58 +11927,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5810] = 33, + [6047] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(52), 1, + STATE(49), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11830,19 +11986,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -11861,13 +12017,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5933] = 4, + [6170] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 25, + ACTIONS(522), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11893,7 +12049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(530), 28, + ACTIONS(520), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11922,15 +12078,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5998] = 5, + [6235] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 25, + ACTIONS(526), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11956,10 +12110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(457), 27, + ACTIONS(524), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11984,105 +12139,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6065] = 33, + [6300] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_use, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - STATE(45), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6188] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(536), 1, - anon_sym_DOT, + ACTIONS(532), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 25, + ACTIONS(530), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12108,7 +12173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(457), 27, + ACTIONS(528), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12136,13 +12201,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6255] = 4, + [6367] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(540), 25, + ACTIONS(536), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12168,11 +12233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(538), 28, + ACTIONS(534), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12197,58 +12262,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6320] = 33, + [6432] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(48), 1, + STATE(54), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12256,19 +12321,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -12287,15 +12352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [6443] = 5, + [6555] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, + ACTIONS(400), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 25, + ACTIONS(398), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12321,7 +12386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(457), 27, + ACTIONS(396), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12349,193 +12414,199 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6510] = 33, + [6622] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(540), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(300), 1, anon_sym_panic, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_use, - ACTIONS(310), 1, anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, - sym__upname, - STATE(50), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, + ACTIONS(538), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6633] = 33, + sym__upname, + [6687] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(544), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(300), 1, anon_sym_panic, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_use, - ACTIONS(310), 1, anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(542), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - STATE(32), 1, - aux_sym__statement_seq, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, + [6752] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(546), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, + ACTIONS(398), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(396), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(696), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(312), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [6756] = 4, + sym__upname, + [6819] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(548), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 25, + ACTIONS(398), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12561,11 +12632,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(542), 28, + ACTIONS(396), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12590,13 +12660,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6821] = 4, + [6886] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 25, + ACTIONS(552), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12622,7 +12692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(546), 28, + ACTIONS(550), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12651,58 +12721,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6886] = 33, + [6951] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(17), 1, + STATE(29), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12710,19 +12780,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -12741,58 +12811,58 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7009] = 33, + [7074] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(300), 1, anon_sym_use, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(314), 1, + ACTIONS(306), 1, sym_float, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(11), 1, + STATE(33), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12800,19 +12870,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -12831,119 +12901,58 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7132] = 4, + [7197] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(552), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(290), 1, anon_sym_todo, + ACTIONS(292), 1, anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, + ACTIONS(296), 1, anon_sym_let, + ACTIONS(298), 1, anon_sym_assert, + ACTIONS(300), 1, anon_sym_use, + ACTIONS(302), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(306), 1, + sym_float, + ACTIONS(310), 1, sym__decimal, + ACTIONS(312), 1, sym__name, - ACTIONS(550), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7197] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_use, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, ACTIONS(314), 1, - sym_float, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, sym__upname, - STATE(44), 1, + STATE(40), 1, aux_sym__statement_seq, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12951,19 +12960,19 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(696), 4, + STATE(698), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, @@ -12982,83 +12991,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7320] = 14, + [7320] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(562), 1, - anon_sym_PIPE_PIPE, - ACTIONS(564), 1, - anon_sym_AMP_AMP, - ACTIONS(572), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(556), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(560), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(574), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(568), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(554), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(554), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(556), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7404] = 4, + [7384] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 25, + ACTIONS(560), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13084,7 +13083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(578), 27, + ACTIONS(558), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13112,57 +13111,150 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7468] = 12, + [7448] = 35, ACTIONS(3), 1, sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(564), 1, + anon_sym_RPAREN, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(580), 1, + anon_sym_DOT_DOT, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(590), 1, + sym_float, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(596), 1, + sym__discard_name, + ACTIONS(598), 1, + sym__name, + ACTIONS(600), 1, + sym__upname, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1109), 1, + sym_argument, + STATE(1222), 1, + sym_hole, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + STATE(1413), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(641), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [7574] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(612), 1, + anon_sym_AMP_AMP, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(566), 2, + ACTIONS(614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(574), 2, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 14, + ACTIONS(602), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(586), 17, + ACTIONS(604), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -13180,58 +13272,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7548] = 13, + [7658] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(564), 1, + ACTIONS(610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(612), 1, anon_sym_AMP_AMP, - ACTIONS(572), 1, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(566), 2, + ACTIONS(614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(574), 2, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 13, + ACTIONS(626), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(586), 17, + ACTIONS(628), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -13249,47 +13342,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7630] = 6, + [7742] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(576), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(586), 23, + ACTIONS(632), 25, anon_sym_if, anon_sym_import, + anon_sym_SLASH, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -13300,6 +13362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -13311,104 +13374,41 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7698] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(588), 1, + ACTIONS(630), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_RPAREN, - ACTIONS(592), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(606), 1, - anon_sym_DOT_DOT, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(616), 1, sym_float, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(622), 1, - sym__discard_name, - ACTIONS(624), 1, - sym__name, - ACTIONS(626), 1, - sym__upname, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1104), 1, - sym_argument, - STATE(1220), 1, - sym_hole, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - STATE(1415), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(654), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [7824] = 4, + sym__upname, + [7806] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(630), 25, + ACTIONS(636), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13434,7 +13434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(628), 27, + ACTIONS(634), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13462,39 +13462,27 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7888] = 4, + [7870] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(586), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(606), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(608), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(584), 27, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(624), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13510,39 +13498,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7952] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(634), 25, + ACTIONS(640), 21, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -13554,7 +13526,29 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(632), 27, + [7942] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(620), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(606), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(608), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(624), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13569,40 +13563,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8016] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(638), 25, + ACTIONS(640), 21, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_type, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -13614,41 +13591,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(636), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8080] = 4, + [8016] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(642), 25, + ACTIONS(644), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13674,7 +13623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(640), 27, + ACTIONS(642), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13702,39 +13651,39 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8144] = 4, + [8080] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(620), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(646), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(606), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(608), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(644), 27, + ACTIONS(618), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(624), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13745,30 +13694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8208] = 4, + ACTIONS(640), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8158] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(650), 25, + ACTIONS(648), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13794,7 +13750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(648), 27, + ACTIONS(646), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13822,104 +13778,81 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8272] = 35, + [8222] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(620), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(606), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(608), 2, anon_sym_DASH, - ACTIONS(600), 1, + anon_sym_PLUS, + ACTIONS(614), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(616), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(618), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(624), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(640), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(602), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(604), 1, anon_sym_panic, - ACTIONS(608), 1, anon_sym_case, - ACTIONS(610), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(612), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(616), 1, - sym_float, - ACTIONS(620), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(622), 1, - sym__discard_name, - ACTIONS(624), 1, sym__name, - ACTIONS(626), 1, - sym__upname, - ACTIONS(652), 1, - anon_sym_RPAREN, - ACTIONS(654), 1, - anon_sym_DOT_DOT, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1081), 1, - sym_argument, - STATE(1220), 1, - sym_hole, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - STATE(1415), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(654), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [8398] = 4, + [8302] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 25, + ACTIONS(652), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13945,7 +13878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(656), 27, + ACTIONS(650), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13973,73 +13906,82 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8462] = 4, + [8366] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(612), 1, + anon_sym_AMP_AMP, + ACTIONS(620), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(606), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(608), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(614), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(660), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(638), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8526] = 4, + ACTIONS(640), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8448] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(666), 25, + ACTIONS(656), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14065,7 +14007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(664), 27, + ACTIONS(654), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14093,13 +14035,104 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8590] = 4, + [8512] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(590), 1, + sym_float, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(596), 1, + sym__discard_name, + ACTIONS(598), 1, + sym__name, + ACTIONS(600), 1, + sym__upname, + ACTIONS(658), 1, + anon_sym_RPAREN, + ACTIONS(660), 1, + anon_sym_DOT_DOT, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1084), 1, + sym_argument, + STATE(1222), 1, + sym_hole, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + STATE(1413), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(641), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [8638] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(670), 25, + ACTIONS(664), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14125,7 +14158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(668), 27, + ACTIONS(662), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14153,13 +14186,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8654] = 4, + [8702] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(674), 25, + ACTIONS(668), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14185,7 +14218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(672), 27, + ACTIONS(666), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14213,65 +14246,148 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8718] = 14, + [8766] = 35, ACTIONS(3), 1, sym_module_comment, ACTIONS(562), 1, - anon_sym_PIPE_PIPE, - ACTIONS(564), 1, - anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, ACTIONS(572), 1, - anon_sym_PIPE_GT, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(590), 1, + sym_float, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(596), 1, + sym__discard_name, + ACTIONS(598), 1, + sym__name, + ACTIONS(600), 1, + sym__upname, + ACTIONS(670), 1, + anon_sym_RPAREN, + ACTIONS(672), 1, + anon_sym_DOT_DOT, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1167), 1, + sym_argument, + STATE(1222), 1, + sym_hole, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + STATE(1413), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(641), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [8892] = 6, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(574), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(568), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(570), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(676), 12, + ACTIONS(638), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(678), 17, + ACTIONS(640), 23, anon_sym_if, anon_sym_import, anon_sym_type, anon_sym_const, + anon_sym_DASH, anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -14283,27 +14399,39 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8802] = 8, + [8960] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(640), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(560), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(574), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(576), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 21, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(638), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14319,41 +14447,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(586), 21, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8874] = 4, + [9024] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(682), 25, + ACTIONS(676), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14379,7 +14491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(680), 27, + ACTIONS(674), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14407,13 +14519,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8938] = 4, + [9088] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(686), 25, + ACTIONS(680), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14439,7 +14551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(684), 27, + ACTIONS(678), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14467,46 +14579,46 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9002] = 14, + [9152] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(562), 1, + ACTIONS(610), 1, anon_sym_PIPE_PIPE, - ACTIONS(564), 1, + ACTIONS(612), 1, anon_sym_AMP_AMP, - ACTIONS(572), 1, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(566), 2, + ACTIONS(614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(574), 2, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(688), 12, + ACTIONS(682), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14519,7 +14631,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(690), 17, + ACTIONS(684), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -14537,13 +14649,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9086] = 4, + [9236] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 25, + ACTIONS(688), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14569,7 +14681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(692), 27, + ACTIONS(686), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14597,13 +14709,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9150] = 4, + [9300] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(612), 1, + anon_sym_AMP_AMP, + ACTIONS(620), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(606), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(608), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(614), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(616), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(618), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(624), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(690), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(692), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9384] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(698), 25, + ACTIONS(696), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14629,7 +14811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(696), 27, + ACTIONS(694), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14657,56 +14839,59 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9214] = 11, + [9448] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(572), 1, + ACTIONS(610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(612), 1, + anon_sym_AMP_AMP, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(574), 2, + ACTIONS(614), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 16, + ACTIONS(698), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(586), 17, + ACTIONS(700), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -14724,29 +14909,39 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9292] = 9, + [9532] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(572), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(704), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(560), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(574), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(576), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 20, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(702), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14761,202 +14956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(586), 21, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9366] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(562), 1, - anon_sym_PIPE_PIPE, - ACTIONS(564), 1, - anon_sym_AMP_AMP, - ACTIONS(572), 1, anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(558), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(574), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(570), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(700), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(702), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9450] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(616), 1, - sym_float, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(622), 1, - sym__discard_name, - ACTIONS(624), 1, - sym__name, - ACTIONS(626), 1, - sym__upname, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(706), 1, - anon_sym_DOT_DOT, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1166), 1, - sym_argument, - STATE(1220), 1, - sym_hole, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - STATE(1415), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(654), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [9576] = 4, + [9596] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 25, + ACTIONS(708), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14982,7 +15001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(708), 27, + ACTIONS(706), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15010,85 +15029,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9640] = 35, + [9660] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(712), 1, + ACTIONS(710), 1, anon_sym_RPAREN, - ACTIONS(714), 1, + ACTIONS(712), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1147), 1, + STATE(1152), 1, sym_argument, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15101,116 +15120,46 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [9766] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(562), 1, - anon_sym_PIPE_PIPE, - ACTIONS(564), 1, - anon_sym_AMP_AMP, - ACTIONS(572), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(558), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(560), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(566), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(574), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(568), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(570), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(716), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(718), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [9850] = 14, + [9786] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(562), 1, + ACTIONS(610), 1, anon_sym_PIPE_PIPE, - ACTIONS(564), 1, + ACTIONS(612), 1, anon_sym_AMP_AMP, - ACTIONS(572), 1, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(566), 2, + ACTIONS(614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(574), 2, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(720), 12, + ACTIONS(714), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15223,7 +15172,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(722), 17, + ACTIONS(716), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -15241,46 +15190,46 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9934] = 14, + [9870] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(562), 1, + ACTIONS(610), 1, anon_sym_PIPE_PIPE, - ACTIONS(564), 1, + ACTIONS(612), 1, anon_sym_AMP_AMP, - ACTIONS(572), 1, + ACTIONS(620), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(606), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(560), 2, + ACTIONS(608), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(566), 2, + ACTIONS(614), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(574), 2, + ACTIONS(622), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(568), 4, + ACTIONS(616), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(570), 4, + ACTIONS(618), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(576), 4, + ACTIONS(624), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(724), 12, + ACTIONS(718), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15293,7 +15242,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(726), 17, + ACTIONS(720), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -15311,13 +15260,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [10018] = 4, + [9954] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 25, + ACTIONS(724), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -15343,7 +15292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(728), 27, + ACTIONS(722), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15371,16 +15320,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10082] = 4, + [10018] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(382), 18, + ACTIONS(729), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -15394,21 +15348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(380), 33, + ACTIONS(726), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -15430,83 +15380,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10145] = 34, + [10082] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(704), 1, + ACTIONS(658), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1166), 1, + STATE(1084), 1, sym_argument, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15519,83 +15469,142 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, + [10205] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(326), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(324), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, [10268] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(732), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15611,80 +15620,80 @@ static const uint16_t ts_small_parse_table[] = { [10391] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(564), 1, + anon_sym_RPAREN, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(734), 1, - anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1109), 1, + sym_argument, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, - sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15700,80 +15709,80 @@ static const uint16_t ts_small_parse_table[] = { [10514] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(736), 1, + ACTIONS(734), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15789,80 +15798,80 @@ static const uint16_t ts_small_parse_table[] = { [10637] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(712), 1, + ACTIONS(710), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1147), 1, + STATE(1152), 1, sym_argument, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15878,80 +15887,80 @@ static const uint16_t ts_small_parse_table[] = { [10760] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(738), 1, + ACTIONS(736), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15964,172 +15973,142 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10883] = 34, + [10883] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(372), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(600), 1, anon_sym_fn, - ACTIONS(602), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(604), 1, anon_sym_panic, - ACTIONS(608), 1, anon_sym_case, - ACTIONS(610), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(612), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(616), 1, - sym_float, - ACTIONS(620), 1, sym__decimal, - ACTIONS(622), 1, - sym__discard_name, - ACTIONS(624), 1, sym__name, - ACTIONS(626), 1, - sym__upname, - ACTIONS(740), 1, + ACTIONS(370), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1220), 1, - sym_hole, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1310), 1, - sym_argument, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - STATE(1415), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(654), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [11006] = 34, + sym__upname, + [10946] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(742), 1, + ACTIONS(738), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16142,13 +16121,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11129] = 4, + [11069] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 18, + ACTIONS(380), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16167,7 +16146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(276), 33, + ACTIONS(378), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -16201,142 +16180,172 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11192] = 4, + [11132] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(360), 18, - anon_sym_SLASH, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(576), 1, anon_sym_todo, + ACTIONS(578), 1, anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - anon_sym_let, + ACTIONS(584), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(586), 1, anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(590), 1, + sym_float, + ACTIONS(594), 1, sym__decimal, + ACTIONS(596), 1, + sym__discard_name, + ACTIONS(598), 1, sym__name, - ACTIONS(358), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(600), 1, + sym__upname, + ACTIONS(740), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1222), 1, + sym_hole, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1291), 1, + sym_argument, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + STATE(1413), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - sym__upname, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(641), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, [11255] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(652), 1, + ACTIONS(742), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1081), 1, - sym_argument, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1291), 1, + sym_argument, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16352,80 +16361,80 @@ static const uint16_t ts_small_parse_table[] = { [11378] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(744), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16438,142 +16447,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11501] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(374), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(372), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11564] = 34, + [11501] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(746), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16586,83 +16536,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11687] = 34, + [11624] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(590), 1, - anon_sym_RPAREN, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - STATE(394), 1, + ACTIONS(670), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1104), 1, + STATE(1167), 1, sym_argument, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16675,81 +16625,140 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, + [11747] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(356), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(354), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, [11810] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(616), 1, + ACTIONS(590), 1, sym_float, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, + ACTIONS(596), 1, sym__discard_name, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1220), 1, + STATE(1222), 1, sym_hole, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1310), 1, + STATE(1291), 1, sym_argument, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1415), 1, + STATE(1413), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(654), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16767,7 +16776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(748), 1, anon_sym_LPAREN, - STATE(149), 1, + STATE(148), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -16828,7 +16837,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 18, + ACTIONS(680), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16847,15 +16856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(366), 31, + ACTIONS(678), 31, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_PIPE, @@ -16885,7 +16894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(646), 18, + ACTIONS(318), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16904,15 +16913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(644), 31, + ACTIONS(316), 31, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_PIPE, @@ -16942,7 +16951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 18, + ACTIONS(342), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16961,7 +16970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(280), 31, + ACTIONS(340), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -16999,7 +17008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(666), 18, + ACTIONS(668), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17018,7 +17027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(664), 31, + ACTIONS(666), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17056,7 +17065,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 18, + ACTIONS(330), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17075,7 +17084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(362), 31, + ACTIONS(328), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17113,7 +17122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 18, + ACTIONS(322), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17132,7 +17141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(484), 31, + ACTIONS(320), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17170,7 +17179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 18, + ACTIONS(496), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17189,7 +17198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(352), 31, + ACTIONS(494), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17227,7 +17236,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(346), 18, + ACTIONS(425), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17246,7 +17255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(344), 31, + ACTIONS(423), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17284,7 +17293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(386), 18, + ACTIONS(488), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17303,7 +17312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(384), 31, + ACTIONS(486), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17335,72 +17344,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12545] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(459), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(457), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [12610] = 4, + [12545] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(332), 18, + ACTIONS(502), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17419,7 +17369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(330), 31, + ACTIONS(500), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17451,17 +17401,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12671] = 6, + [12606] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 18, + ACTIONS(336), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17480,62 +17426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(457), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [12736] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(500), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(498), 31, + ACTIONS(334), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17567,13 +17458,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12797] = 4, + [12667] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(392), 18, + ACTIONS(411), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17592,7 +17483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(390), 31, + ACTIONS(409), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17624,13 +17515,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12858] = 4, + [12728] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(750), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 18, + ACTIONS(398), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17649,10 +17544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(550), 30, + ACTIONS(396), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_POUND, @@ -17680,13 +17574,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12918] = 4, + [12793] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(402), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 18, + ACTIONS(398), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17705,12 +17603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(530), 30, + ACTIONS(396), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17736,13 +17633,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12978] = 4, + [12858] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(528), 18, + ACTIONS(514), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17761,7 +17658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(526), 30, + ACTIONS(512), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17792,181 +17689,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13038] = 31, + [12918] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(754), 1, - anon_sym_RBRACK, - ACTIONS(756), 1, - anon_sym_DOT_DOT, - ACTIONS(758), 1, - sym_float, - ACTIONS(760), 1, - sym__name, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(575), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13152] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(758), 1, - sym_float, - ACTIONS(760), 1, - sym__name, - ACTIONS(762), 1, - anon_sym_RBRACK, - ACTIONS(764), 1, - anon_sym_DOT_DOT, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(575), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [13266] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(534), 1, + ACTIONS(546), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 18, + ACTIONS(398), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17985,7 +17716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(457), 29, + ACTIONS(396), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18015,15 +17746,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13328] = 5, + [12980] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(536), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 18, + ACTIONS(518), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18042,11 +17771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(457), 29, + ACTIONS(516), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18072,70 +17802,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13390] = 5, + [13040] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(457), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [13452] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(518), 18, + ACTIONS(552), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18154,7 +17827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(516), 30, + ACTIONS(550), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18185,77 +17858,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13512] = 31, + [13100] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(754), 1, + anon_sym_RBRACK, + ACTIONS(756), 1, + anon_sym_DOT_DOT, ACTIONS(758), 1, sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(766), 1, - anon_sym_RBRACK, - ACTIONS(768), 1, - anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18268,133 +17941,160 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13626] = 4, + [13214] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(544), 18, - anon_sym_SLASH, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(576), 1, anon_sym_todo, + ACTIONS(578), 1, anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - anon_sym_let, + ACTIONS(584), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(586), 1, anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, sym__decimal, + ACTIONS(596), 1, + sym__discard_name, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, sym__name, - ACTIONS(542), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(762), 1, sym_float, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1288), 1, + sym_hole, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [13686] = 31, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(654), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [13328] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(622), 1, - sym__discard_name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(770), 1, - sym_float, - STATE(394), 1, + ACTIONS(764), 1, + anon_sym_RBRACK, + ACTIONS(766), 1, + anon_sym_DOT_DOT, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1308), 1, - sym_hole, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(652), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18407,77 +18107,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13800] = 31, + [13442] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(772), 1, + ACTIONS(768), 1, anon_sym_RBRACK, - ACTIONS(774), 1, + ACTIONS(770), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18490,77 +18190,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13914] = 31, + [13556] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(776), 1, + ACTIONS(772), 1, anon_sym_RBRACK, - ACTIONS(778), 1, + ACTIONS(774), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18573,13 +18273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14028] = 4, + [13670] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(548), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 18, + ACTIONS(398), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18598,12 +18300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(546), 30, + ACTIONS(396), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_COLON, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18629,77 +18330,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14088] = 31, + [13732] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(780), 1, + ACTIONS(776), 1, anon_sym_RBRACK, - ACTIONS(782), 1, + ACTIONS(778), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18712,13 +18413,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14202] = 4, + [13846] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 18, + ACTIONS(544), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18737,12 +18438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(512), 30, + ACTIONS(542), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -18768,36 +18469,175 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14262] = 31, + [13906] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, ACTIONS(600), 1, + sym__upname, + ACTIONS(758), 1, + sym_float, + ACTIONS(760), 1, + sym__name, + ACTIONS(780), 1, + anon_sym_RBRACK, + ACTIONS(782), 1, + anon_sym_DOT_DOT, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(571), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14020] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(536), 18, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(602), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(604), 1, anon_sym_panic, - ACTIONS(608), 1, anon_sym_case, - ACTIONS(610), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(612), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(614), 1, + sym__decimal, + sym__name, + ACTIONS(534), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(620), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14080] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, @@ -18807,38 +18647,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(786), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18851,7 +18691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14376] = 4, + [14194] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -18907,36 +18747,92 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14436] = 31, + [14254] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(526), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(524), 30, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14314] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, @@ -18946,38 +18842,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(790), 1, anon_sym_DOT_DOT, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18990,13 +18886,126 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, + [14428] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(398), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(396), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14490] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(522), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(520), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, [14550] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(634), 18, + ACTIONS(664), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19015,7 +19024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(632), 29, + ACTIONS(662), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19051,7 +19060,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(674), 18, + ACTIONS(676), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19070,7 +19079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(672), 29, + ACTIONS(674), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19106,7 +19115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(650), 18, + ACTIONS(632), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19125,7 +19134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(648), 29, + ACTIONS(630), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19155,69 +19164,124 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14727] = 30, + [14727] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(708), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(706), 29, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14786] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, ACTIONS(792), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1356), 1, + sym_case_subjects, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1396), 1, - sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, @@ -19236,75 +19300,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14838] = 30, + [14897] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, ACTIONS(794), 1, - anon_sym_RBRACK, - ACTIONS(796), 1, - sym_float, - STATE(394), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(591), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19317,75 +19381,130 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14949] = 30, + [15008] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(644), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(642), 29, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15067] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(792), 1, - sym_float, - STATE(394), 1, + ACTIONS(796), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, - STATE(1384), 1, - sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(626), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19398,75 +19517,130 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15060] = 30, + [15178] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(600), 1, anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, anon_sym_assert, - ACTIONS(612), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(614), 1, + sym__decimal, + sym__name, + ACTIONS(686), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(620), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15237] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(792), 1, + ACTIONS(798), 1, + anon_sym_RBRACK, + ACTIONS(800), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym_case_subjects, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(626), 12, + STATE(589), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19479,75 +19653,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15171] = 30, + [15348] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(798), 1, - anon_sym_RPAREN, - STATE(394), 1, + ACTIONS(792), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1350), 1, + sym_case_subjects, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(626), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19560,75 +19734,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15282] = 30, + [15459] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(792), 1, + ACTIONS(802), 1, + anon_sym_RPAREN, + ACTIONS(804), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym_case_subjects, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(626), 12, + STATE(630), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19641,75 +19815,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15393] = 30, + [15570] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(800), 1, - anon_sym_RPAREN, - ACTIONS(802), 1, + ACTIONS(806), 1, + anon_sym_RBRACK, + ACTIONS(808), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(629), 12, + STATE(621), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19722,75 +19896,130 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15504] = 30, + [15681] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(654), 29, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15740] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(804), 1, - anon_sym_RBRACK, - ACTIONS(806), 1, - sym_float, - STATE(394), 1, + ACTIONS(810), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(587), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19803,75 +20032,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15615] = 30, + [15851] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(808), 1, + ACTIONS(812), 1, anon_sym_RPAREN, - ACTIONS(810), 1, + ACTIONS(814), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(638), 12, + STATE(627), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19884,13 +20113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15726] = 4, + [15962] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(670), 18, + ACTIONS(729), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19909,7 +20138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(668), 29, + ACTIONS(726), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19939,13 +20168,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15785] = 4, + [16021] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(698), 18, + ACTIONS(724), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19964,7 +20193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(696), 29, + ACTIONS(722), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19994,13 +20223,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15844] = 4, + [16080] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(630), 18, + ACTIONS(556), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20019,7 +20248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(628), 29, + ACTIONS(554), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20049,75 +20278,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15903] = 30, + [16139] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(812), 1, - anon_sym_RPAREN, - ACTIONS(814), 1, + ACTIONS(792), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, + STATE(1385), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(624), 12, + STATE(626), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20130,211 +20359,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16014] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(658), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(656), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16073] = 30, + [16250] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(758), 1, - sym_float, - ACTIONS(760), 1, - sym__name, - ACTIONS(816), 1, - anon_sym_RPAREN, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(575), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [16184] = 30, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(818), 1, + ACTIONS(816), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20347,68 +20440,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16295] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(694), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(692), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16354] = 4, + [16361] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 18, + ACTIONS(652), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20427,7 +20465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(708), 29, + ACTIONS(650), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20457,13 +20495,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16413] = 4, + [16420] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 18, + ACTIONS(560), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20482,7 +20520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(578), 29, + ACTIONS(558), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20512,75 +20550,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16472] = 30, + [16479] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(820), 1, + ACTIONS(818), 1, anon_sym_RPAREN, - STATE(394), 1, + ACTIONS(820), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(624), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20593,75 +20631,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16583] = 30, + [16590] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, ACTIONS(822), 1, - anon_sym_RBRACK, - ACTIONS(824), 1, - sym_float, - STATE(394), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(620), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20674,75 +20712,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16694] = 30, + [16701] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, + ACTIONS(824), 1, + anon_sym_RBRACK, ACTIONS(826), 1, - anon_sym_RPAREN, - ACTIONS(828), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(631), 12, + STATE(595), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20755,13 +20793,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16805] = 4, + [16812] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(642), 18, + ACTIONS(648), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20780,7 +20818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(640), 29, + ACTIONS(646), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20810,146 +20848,117 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16864] = 4, + [16871] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(682), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(680), 29, + ACTIONS(562), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(566), 1, anon_sym_POUND, + ACTIONS(568), 1, anon_sym_LBRACK, + ACTIONS(570), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16923] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(662), 18, - anon_sym_SLASH, + ACTIONS(572), 1, anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(576), 1, anon_sym_todo, + ACTIONS(578), 1, anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - anon_sym_let, + ACTIONS(584), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(586), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(660), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(588), 1, anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(758), 1, sym_float, + ACTIONS(760), 1, + sym__name, + ACTIONS(828), 1, + anon_sym_RPAREN, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - sym__upname, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(571), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, [16982] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(758), 1, sym_float, @@ -20957,38 +20966,38 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(830), 1, anon_sym_RPAREN, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21007,7 +21016,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(686), 18, + ACTIONS(636), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -21026,7 +21035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(684), 29, + ACTIONS(634), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21059,72 +21068,72 @@ static const uint16_t ts_small_parse_table[] = { [17152] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, ACTIONS(832), 1, - anon_sym_RPAREN, - STATE(394), 1, + anon_sym_RBRACK, + ACTIONS(834), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(598), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21140,72 +21149,72 @@ static const uint16_t ts_small_parse_table[] = { [17263] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(834), 1, + ACTIONS(836), 1, anon_sym_RPAREN, - STATE(394), 1, + ACTIONS(838), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(632), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21221,153 +21230,72 @@ static const uint16_t ts_small_parse_table[] = { [17374] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(836), 1, - anon_sym_RPAREN, - STATE(394), 1, + ACTIONS(792), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(575), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [17485] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(838), 1, - anon_sym_RBRACK, - ACTIONS(840), 1, - sym_float, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, + STATE(1397), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 12, + STATE(626), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21380,13 +21308,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17596] = 4, + [17485] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 18, + ACTIONS(704), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -21405,7 +21333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(728), 29, + ACTIONS(702), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21435,13 +21363,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17655] = 4, + [17544] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(638), 18, + ACTIONS(696), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -21460,7 +21388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(636), 29, + ACTIONS(694), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21490,73 +21418,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17714] = 29, + [17603] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(842), 1, - sym_float, - STATE(394), 1, + ACTIONS(840), 1, + anon_sym_RPAREN, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(465), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21569,75 +21499,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17822] = 29, + [17714] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(312), 1, sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(842), 1, + anon_sym_GT_GT, ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(394), 1, + STATE(146), 1, sym_identifier, - STATE(440), 1, + STATE(149), 1, sym_tuple, - STATE(441), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(502), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -21648,73 +21580,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17930] = 29, + [17826] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(592), 1, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(846), 1, - anon_sym_LBRACE, - STATE(394), 1, + ACTIONS(854), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(497), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21727,73 +21659,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18038] = 29, + [17934] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(873), 1, - sym_float, - ACTIONS(877), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(879), 1, - sym__name, - ACTIONS(881), 1, + ACTIONS(600), 1, sym__upname, - STATE(331), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(856), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(348), 1, + STATE(438), 1, sym_tuple, - STATE(350), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(372), 12, + STATE(670), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21806,73 +21738,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18146] = 29, + [18042] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(883), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(860), 1, sym_float, - STATE(143), 1, + STATE(38), 1, sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1399), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1400), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(305), 12, + STATE(104), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21885,73 +21817,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18254] = 29, + [18150] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(886), 1, + sym_float, + ACTIONS(890), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(885), 1, - sym_float, - STATE(143), 1, + STATE(335), 1, sym_identifier, - STATE(154), 1, + STATE(347), 1, sym_tuple, - STATE(155), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1344), 1, sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(302), 12, + STATE(367), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21964,52 +21896,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18362] = 29, + [18258] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(887), 1, + ACTIONS(896), 1, sym_float, - STATE(331), 1, + STATE(335), 1, sym_identifier, - STATE(348), 1, + STATE(347), 1, sym_tuple, - STATE(350), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22017,20 +21949,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(378), 12, + STATE(366), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22043,77 +21975,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18470] = 31, + [18366] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(889), 1, - anon_sym_GT_GT, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(898), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1117), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(313), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -22124,77 +22054,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18582] = 31, + [18474] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(900), 1, sym_float, - ACTIONS(901), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(396), 1, sym_identifier, - STATE(154), 1, + STATE(438), 1, sym_tuple, - STATE(155), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(668), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -22205,73 +22133,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18694] = 29, + [18582] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(903), 1, + ACTIONS(894), 1, + sym__upname, + ACTIONS(902), 1, sym_float, - STATE(394), 1, + STATE(335), 1, sym_identifier, - STATE(440), 1, + STATE(347), 1, sym_tuple, - STATE(441), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(662), 12, + STATE(363), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22284,73 +22212,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18802] = 29, + [18690] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(905), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(904), 1, sym_float, - STATE(143), 1, + STATE(396), 1, sym_identifier, - STATE(154), 1, + STATE(438), 1, sym_tuple, - STATE(155), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(304), 12, + STATE(672), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22363,52 +22291,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18910] = 29, + [18798] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(907), 1, + ACTIONS(906), 1, sym_float, - STATE(331), 1, + STATE(335), 1, sym_identifier, - STATE(348), 1, + STATE(347), 1, sym_tuple, - STATE(350), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22416,20 +22344,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(367), 12, + STATE(362), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22442,152 +22370,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19018] = 29, + [18906] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(909), 1, - sym_float, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(303), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [19126] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(858), 1, anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(911), 1, + ACTIONS(908), 1, sym_float, - STATE(143), 1, + STATE(38), 1, sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1399), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1400), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(313), 12, + STATE(106), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22600,73 +22449,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19234] = 29, + [19014] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(913), 1, + ACTIONS(910), 1, sym_float, - STATE(143), 1, + STATE(335), 1, sym_identifier, - STATE(154), 1, + STATE(347), 1, sym_tuple, - STATE(155), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1344), 1, sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(314), 12, + STATE(354), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22679,73 +22528,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19342] = 29, + [19122] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(915), 1, + ACTIONS(912), 1, sym_float, - STATE(143), 1, + STATE(335), 1, sym_identifier, - STATE(154), 1, + STATE(347), 1, sym_tuple, - STATE(155), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1344), 1, sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(293), 12, + STATE(373), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22758,52 +22607,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19450] = 29, + [19230] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(917), 1, + ACTIONS(914), 1, sym_float, - STATE(331), 1, + STATE(335), 1, sym_identifier, - STATE(348), 1, + STATE(347), 1, sym_tuple, - STATE(350), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22811,20 +22660,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(364), 12, + STATE(357), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22837,52 +22686,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19558] = 29, + [19338] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(919), 1, + ACTIONS(916), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22890,20 +22739,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(309), 12, + STATE(300), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22916,56 +22765,56 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19666] = 31, + [19446] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(891), 1, + ACTIONS(844), 1, anon_sym_DASH, - ACTIONS(893), 1, + ACTIONS(846), 1, anon_sym_todo, - ACTIONS(895), 1, + ACTIONS(848), 1, anon_sym_assert, - ACTIONS(897), 1, + ACTIONS(850), 1, anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(852), 1, sym_float, - ACTIONS(921), 1, + ACTIONS(918), 1, anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1088), 1, + STATE(1120), 1, sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22973,20 +22822,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -22997,73 +22846,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19778] = 29, + [19558] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(923), 1, + ACTIONS(920), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(670), 12, + STATE(681), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23076,75 +22925,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19886] = 29, + [19666] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(857), 1, - anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(861), 1, - anon_sym_todo, - ACTIONS(863), 1, - anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(867), 1, - anon_sym_assert, - ACTIONS(869), 1, - anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(925), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(331), 1, + ACTIONS(922), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(348), 1, + STATE(149), 1, sym_tuple, - STATE(350), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1049), 1, + sym_expression_bit_string_segment, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(363), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -23155,52 +23006,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19994] = 29, + [19778] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(927), 1, + ACTIONS(924), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -23208,20 +23059,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(306), 12, + STATE(299), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23234,73 +23085,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20102] = 29, + [19886] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(929), 1, + ACTIONS(894), 1, + sym__upname, + ACTIONS(926), 1, sym_float, - STATE(394), 1, + STATE(335), 1, sym_identifier, - STATE(440), 1, + STATE(347), 1, sym_tuple, - STATE(441), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(669), 12, + STATE(356), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23313,73 +23164,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20210] = 29, + [19994] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(931), 1, + ACTIONS(928), 1, sym_float, - STATE(143), 1, + STATE(335), 1, sym_identifier, - STATE(154), 1, + STATE(347), 1, sym_tuple, - STATE(155), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1344), 1, sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(300), 12, + STATE(372), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23392,52 +23243,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20318] = 29, + [20102] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(894), 1, sym__upname, - ACTIONS(933), 1, + ACTIONS(930), 1, sym_float, - STATE(331), 1, + STATE(335), 1, sym_identifier, - STATE(348), 1, + STATE(347), 1, sym_tuple, - STATE(350), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -23445,20 +23296,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(354), 12, + STATE(365), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23471,73 +23322,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20426] = 29, + [20210] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(937), 1, + ACTIONS(758), 1, sym_float, - STATE(38), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(932), 1, + anon_sym_LBRACE, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(100), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23550,73 +23401,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20534] = 29, + [20318] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(760), 1, + sym__name, ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(939), 1, sym_float, - STATE(38), 1, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(107), 12, + STATE(663), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23629,75 +23480,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20642] = 29, + [20426] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(941), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(38), 1, + ACTIONS(937), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(106), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -23708,75 +23561,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20750] = 29, + [20538] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(943), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(38), 1, + ACTIONS(939), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(82), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -23787,75 +23642,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20858] = 29, + [20650] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(945), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(38), 1, + ACTIONS(941), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(83), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -23866,73 +23723,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20966] = 29, + [20762] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(947), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(943), 1, sym_float, - STATE(38), 1, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(84), 12, + STATE(662), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23945,73 +23802,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21074] = 29, + [20870] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(949), 1, + ACTIONS(945), 1, sym_float, - STATE(331), 1, + STATE(146), 1, sym_identifier, - STATE(348), 1, + STATE(149), 1, sym_tuple, - STATE(350), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(365), 12, + STATE(296), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24024,73 +23881,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21182] = 29, + [20978] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(951), 1, + ACTIONS(947), 1, sym_float, - STATE(38), 1, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1399), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(87), 12, + STATE(295), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24103,75 +23960,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21290] = 29, + [21086] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(857), 1, - anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(861), 1, - anon_sym_todo, - ACTIONS(863), 1, - anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(867), 1, - anon_sym_assert, - ACTIONS(869), 1, - anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(953), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(331), 1, + ACTIONS(949), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(348), 1, + STATE(149), 1, sym_tuple, - STATE(350), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1089), 1, + sym_expression_bit_string_segment, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(366), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -24182,77 +24041,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21398] = 31, + [21198] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(951), 1, sym_float, - ACTIONS(955), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(308), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -24263,75 +24120,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21510] = 29, + [21306] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(143), 1, + ACTIONS(953), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(299), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -24342,73 +24201,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21618] = 29, + [21418] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(959), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(955), 1, sym_float, - STATE(38), 1, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(99), 12, + STATE(658), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24421,77 +24280,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21726] = 31, + [21526] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(957), 1, sym_float, - ACTIONS(961), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(301), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -24502,77 +24359,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21838] = 31, + [21634] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(959), 1, sym_float, - ACTIONS(963), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(303), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -24583,52 +24438,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21950] = 29, + [21742] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(965), 1, + ACTIONS(961), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -24636,20 +24491,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(305), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24662,52 +24517,52 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22058] = 29, + [21850] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(300), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(310), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(967), 1, + ACTIONS(963), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1362), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -24715,20 +24570,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(308), 12, + STATE(307), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24741,73 +24596,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22166] = 29, + [21958] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(969), 1, + ACTIONS(965), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(664), 12, + STATE(684), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24820,73 +24675,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22274] = 29, + [22066] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(859), 1, - anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(971), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(967), 1, sym_float, - STATE(331), 1, + STATE(38), 1, sym_identifier, - STATE(348), 1, - sym_tuple, - STATE(350), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(376), 12, + STATE(87), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24899,73 +24754,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22382] = 29, + [22174] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(859), 1, - anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(973), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(969), 1, sym_float, - STATE(331), 1, + STATE(38), 1, sym_identifier, - STATE(348), 1, - sym_tuple, - STATE(350), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(371), 12, + STATE(88), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24978,73 +24833,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22490] = 29, + [22282] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, + ACTIONS(758), 1, + sym_float, ACTIONS(760), 1, sym__name, - ACTIONS(975), 1, - sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(655), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25057,154 +24912,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22598] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(288), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, - sym_float, - ACTIONS(977), 1, - anon_sym_GT_GT, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1048), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1047), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [22710] = 29, + [22390] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(859), 1, - anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(979), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(971), 1, sym_float, - STATE(331), 1, + STATE(38), 1, sym_identifier, - STATE(348), 1, - sym_tuple, - STATE(350), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(373), 12, + STATE(90), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25217,73 +24991,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22818] = 29, + [22498] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(981), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(973), 1, sym_float, - STATE(38), 1, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(114), 12, + STATE(674), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25296,73 +25070,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22926] = 29, + [22606] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(983), 1, + ACTIONS(975), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(469), 12, + STATE(682), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25375,77 +25149,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23034] = 31, + [22714] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(977), 1, sym_float, - ACTIONS(985), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(396), 1, sym_identifier, - STATE(154), 1, + STATE(438), 1, sym_tuple, - STATE(155), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(685), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -25456,7 +25228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23146] = 29, + [22822] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25487,21 +25259,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(935), 1, + ACTIONS(858), 1, anon_sym_fn, - ACTIONS(987), 1, + ACTIONS(979), 1, sym_float, STATE(38), 1, sym_identifier, - STATE(68), 1, - sym_tuple, STATE(71), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, STATE(1399), 1, + sym__maybe_record_expression, + STATE(1400), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25509,7 +25281,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, @@ -25522,7 +25294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_access, sym_field_access, sym_function_call, - STATE(112), 12, + STATE(92), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25535,73 +25307,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23254] = 29, + [22930] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(989), 1, + ACTIONS(981), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(673), 12, + STATE(469), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25614,73 +25386,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23362] = 29, + [23038] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(991), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(983), 1, sym_float, - STATE(38), 1, + STATE(396), 1, sym_identifier, - STATE(68), 1, + STATE(438), 1, sym_tuple, - STATE(71), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, + STATE(1363), 1, sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(113), 12, + STATE(467), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25693,73 +25465,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23470] = 29, + [23146] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(993), 1, + ACTIONS(985), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(675), 12, + STATE(660), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25772,73 +25544,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23578] = 29, + [23254] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(995), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(987), 1, sym_float, - STATE(394), 1, + STATE(38), 1, sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(683), 12, + STATE(94), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25851,73 +25623,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23686] = 29, + [23362] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(758), 1, - sym_float, ACTIONS(760), 1, sym__name, - STATE(394), 1, + ACTIONS(989), 1, + sym_float, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(679), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25930,77 +25702,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23794] = 31, + [23470] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(41), 1, + anon_sym_assert, + ACTIONS(45), 1, + anon_sym_BANG, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(991), 1, sym_float, - ACTIONS(997), 1, - anon_sym_GT_GT, - STATE(143), 1, + STATE(38), 1, sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(100), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -26011,73 +25781,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23906] = 29, + [23578] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(999), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(993), 1, sym_float, - STATE(394), 1, + STATE(38), 1, sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(460), 12, + STATE(101), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26090,56 +25860,56 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24014] = 31, + [23686] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(891), 1, + ACTIONS(844), 1, anon_sym_DASH, - ACTIONS(893), 1, + ACTIONS(846), 1, anon_sym_todo, - ACTIONS(895), 1, + ACTIONS(848), 1, anon_sym_assert, - ACTIONS(897), 1, + ACTIONS(850), 1, anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(852), 1, sym_float, - ACTIONS(1001), 1, + ACTIONS(995), 1, anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -26147,20 +25917,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -26171,75 +25941,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24126] = 29, + [23798] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(598), 1, - anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(602), 1, - anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(610), 1, - anon_sym_assert, - ACTIONS(612), 1, - anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1003), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, sym_float, - STATE(394), 1, + ACTIONS(997), 1, + anon_sym_GT_GT, + STATE(146), 1, sym_identifier, - STATE(440), 1, + STATE(149), 1, sym_tuple, - STATE(441), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(679), 12, - sym__expression, - sym_binary_expression, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -26250,73 +26022,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24234] = 29, + [23910] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1005), 1, + ACTIONS(999), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(506), 12, + STATE(459), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26329,73 +26101,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24342] = 29, + [24018] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1007), 1, + ACTIONS(1001), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(477), 12, + STATE(476), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26408,73 +26180,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24450] = 29, + [24126] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1009), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1003), 1, sym_float, - STATE(394), 1, + STATE(146), 1, sym_identifier, - STATE(440), 1, + STATE(149), 1, sym_tuple, - STATE(441), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(479), 12, + STATE(310), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26487,73 +26259,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24558] = 29, + [24234] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1011), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(1005), 1, sym_float, - STATE(394), 1, + STATE(38), 1, sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(641), 12, + STATE(108), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26566,73 +26338,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24666] = 29, + [24342] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1013), 1, + ACTIONS(1007), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 12, + STATE(477), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26645,73 +26417,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24774] = 29, + [24450] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1015), 1, + ACTIONS(1009), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(480), 12, + STATE(479), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26724,56 +26496,56 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24882] = 31, + [24558] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(891), 1, + ACTIONS(844), 1, anon_sym_DASH, - ACTIONS(893), 1, + ACTIONS(846), 1, anon_sym_todo, - ACTIONS(895), 1, + ACTIONS(848), 1, anon_sym_assert, - ACTIONS(897), 1, + ACTIONS(850), 1, anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(852), 1, sym_float, - ACTIONS(1017), 1, + ACTIONS(1011), 1, anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1135), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -26781,20 +26553,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -26805,73 +26577,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24994] = 29, + [24670] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1019), 1, + ACTIONS(1013), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(658), 12, + STATE(480), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26884,73 +26656,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25102] = 29, + [24778] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(879), 1, - sym__name, - ACTIONS(881), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1021), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1015), 1, sym_float, - STATE(331), 1, + STATE(396), 1, sym_identifier, - STATE(348), 1, + STATE(438), 1, sym_tuple, - STATE(350), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(361), 12, + STATE(491), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26963,73 +26735,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25210] = 29, + [24886] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(1023), 1, + ACTIONS(894), 1, + sym__upname, + ACTIONS(1017), 1, sym_float, - STATE(394), 1, + STATE(335), 1, sym_identifier, - STATE(440), 1, + STATE(347), 1, sym_tuple, - STATE(441), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(497), 12, + STATE(378), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27042,56 +26814,56 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25318] = 31, + [24994] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(891), 1, + ACTIONS(844), 1, anon_sym_DASH, - ACTIONS(893), 1, + ACTIONS(846), 1, anon_sym_todo, - ACTIONS(895), 1, + ACTIONS(848), 1, anon_sym_assert, - ACTIONS(897), 1, + ACTIONS(850), 1, anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(852), 1, sym_float, - ACTIONS(1025), 1, + ACTIONS(1019), 1, anon_sym_GT_GT, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1253), 1, + STATE(1136), 1, sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, @@ -27099,20 +26871,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(1048), 10, sym__expression_unit, sym_todo, sym_panic, @@ -27123,206 +26895,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25430] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(326), 18, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(324), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [25488] = 29, + [25106] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_panic, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(935), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(1027), 1, - sym_float, - STATE(38), 1, - sym_identifier, - STATE(68), 1, - sym_tuple, - STATE(71), 1, - sym_anonymous_function, - STATE(1232), 1, - sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, - STATE(1399), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(34), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(108), 12, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [25596] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(21), 1, - anon_sym_POUND, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_LT_LT, - ACTIONS(27), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(1029), 1, + ACTIONS(1021), 1, sym_float, - STATE(38), 1, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1399), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(103), 12, + STATE(291), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27335,73 +26974,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25704] = 29, + [25214] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1031), 1, + ACTIONS(1023), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(660), 12, + STATE(666), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27414,73 +27053,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25812] = 29, + [25322] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(1033), 1, + ACTIONS(894), 1, + sym__upname, + ACTIONS(1025), 1, sym_float, - STATE(394), 1, + STATE(335), 1, sym_identifier, - STATE(440), 1, + STATE(347), 1, sym_tuple, - STATE(441), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(657), 12, + STATE(359), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27493,17 +27132,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25920] = 6, + [25430] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1037), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 18, + ACTIONS(384), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -27522,9 +27157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(336), 26, + ACTIONS(382), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -27549,73 +27186,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [25982] = 29, + [25488] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(592), 1, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, sym__upname, - ACTIONS(758), 1, + ACTIONS(1027), 1, sym_float, - ACTIONS(760), 1, - sym__name, - ACTIONS(1039), 1, - anon_sym_LBRACE, - STATE(394), 1, + STATE(146), 1, sym_identifier, - STATE(440), 1, + STATE(149), 1, sym_tuple, - STATE(441), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1354), 1, sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(304), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27628,73 +27265,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26090] = 29, + [25596] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1042), 1, + ACTIONS(1029), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(665), 12, + STATE(525), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27707,73 +27344,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26198] = 29, + [25704] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1044), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(1031), 1, sym_float, - STATE(394), 1, + STATE(38), 1, sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(674), 12, + STATE(112), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27786,73 +27423,129 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26306] = 29, + [25812] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(1035), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(346), 18, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(344), 26, anon_sym_LBRACE, - ACTIONS(592), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(594), 1, anon_sym_LBRACK, - ACTIONS(596), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [25874] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1046), 1, + ACTIONS(1037), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(525), 12, + STATE(657), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27865,73 +27558,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26414] = 29, + [25982] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, - anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(859), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(879), 1, - sym__name, - ACTIONS(881), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1048), 1, + ACTIONS(758), 1, sym_float, - STATE(331), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1039), 1, + anon_sym_LBRACE, + STATE(396), 1, sym_identifier, - STATE(348), 1, + STATE(438), 1, sym_tuple, - STATE(350), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1343), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(356), 12, + STATE(571), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27944,73 +27637,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26522] = 29, + [26090] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1050), 1, + ACTIONS(1042), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(552), 12, + STATE(651), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28023,73 +27716,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26630] = 29, + [26198] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(864), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(866), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(868), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(870), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(872), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(874), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(876), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(878), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(880), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(882), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(884), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(892), 1, sym__name, - ACTIONS(1052), 1, + ACTIONS(894), 1, + sym__upname, + ACTIONS(1044), 1, sym_float, - STATE(394), 1, + STATE(335), 1, sym_identifier, - STATE(440), 1, + STATE(347), 1, sym_tuple, - STATE(441), 1, + STATE(348), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1307), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1344), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1395), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(322), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(346), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(336), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(677), 12, + STATE(358), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28102,73 +27795,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26738] = 29, + [26306] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(594), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(596), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(572), 1, anon_sym_DASH, - ACTIONS(600), 1, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(576), 1, anon_sym_todo, - ACTIONS(604), 1, + ACTIONS(578), 1, anon_sym_panic, - ACTIONS(608), 1, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(584), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(586), 1, anon_sym_BANG, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1054), 1, + ACTIONS(1046), 1, sym_float, - STATE(394), 1, + STATE(396), 1, sym_identifier, - STATE(440), 1, + STATE(438), 1, sym_tuple, - STATE(441), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(676), 12, + STATE(552), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28181,129 +27874,154 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26846] = 5, + [26414] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1056), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(522), 18, - anon_sym_SLASH, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(576), 1, anon_sym_todo, + ACTIONS(578), 1, anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - anon_sym_let, + ACTIONS(584), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(586), 1, anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, sym__name, - ACTIONS(520), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(1048), 1, sym_float, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [26905] = 30, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(683), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26522] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(899), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1050), 1, sym_float, - STATE(143), 1, + STATE(396), 1, sym_identifier, - STATE(154), 1, + STATE(438), 1, sym_tuple, - STATE(155), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1253), 1, - sym_expression_bit_string_segment, - STATE(1276), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1047), 10, + STATE(678), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -28314,73 +28032,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27014] = 29, + [26630] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(859), 1, - anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(879), 1, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1058), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(1052), 1, sym_float, - ACTIONS(1062), 1, - sym__decimal, - STATE(331), 1, + STATE(38), 1, sym_identifier, - STATE(348), 1, - sym_tuple, - STATE(350), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(1060), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(384), 10, + STATE(84), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -28391,73 +28111,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27120] = 29, + [26738] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(893), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(895), 1, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(897), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(1064), 1, - sym_float, - ACTIONS(1068), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - STATE(143), 1, + ACTIONS(59), 1, + sym__name, + ACTIONS(61), 1, + sym__upname, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(1054), 1, + sym_float, + STATE(38), 1, sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1342), 1, - sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(1066), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(188), 10, + STATE(113), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -28468,43 +28190,24 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27226] = 12, + [26846] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, + ACTIONS(1056), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(530), 18, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1072), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1076), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 10, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -28514,7 +28217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 13, + ACTIONS(528), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -28522,52 +28225,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27298] = 14, + [26905] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(852), 1, + sym_float, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1263), 1, + sym_expression_bit_string_segment, + STATE(1345), 1, + sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1048), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27014] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1062), 1, anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, + ACTIONS(1064), 1, anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1074), 2, + ACTIONS(1066), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(718), 10, + ACTIONS(628), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -28578,7 +28373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(716), 11, + ACTIONS(626), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -28590,73 +28385,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27374] = 29, + [27090] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(292), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(298), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(302), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(59), 1, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(935), 1, - anon_sym_fn, - ACTIONS(1090), 1, + ACTIONS(1078), 1, sym_float, - ACTIONS(1094), 1, - sym__decimal, - STATE(38), 1, + STATE(146), 1, sym_identifier, - STATE(68), 1, + STATE(149), 1, sym_tuple, - STATE(71), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1398), 1, + STATE(1354), 1, sym__maybe_record_expression, - STATE(1399), 1, + STATE(1389), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(1092), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(34), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(110), 10, + STATE(194), 10, sym__expression_unit, sym_todo, sym_panic, @@ -28667,73 +28462,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27480] = 29, + [27196] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(849), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(853), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(855), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(857), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(859), 1, - anon_sym_fn, - ACTIONS(861), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(863), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(865), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(867), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(871), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(877), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(879), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1096), 1, + ACTIONS(858), 1, + anon_sym_fn, + ACTIONS(1080), 1, sym_float, - STATE(331), 1, + STATE(38), 1, sym_identifier, - STATE(348), 1, - sym_tuple, - STATE(350), 1, + STATE(71), 1, sym_anonymous_function, - STATE(1306), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1343), 1, - sym__maybe_tuple_expression, - STATE(1394), 1, + STATE(1399), 1, sym__maybe_record_expression, + STATE(1400), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(347), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(875), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(337), 5, + STATE(34), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(381), 10, + STATE(91), 10, sym__expression_unit, sym_todo, sym_panic, @@ -28744,150 +28539,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27586] = 29, + [27302] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1064), 1, - sym_float, - ACTIONS(1068), 1, - sym__decimal, - STATE(143), 1, - sym_identifier, - STATE(154), 1, - sym_tuple, - STATE(155), 1, - sym_anonymous_function, - STATE(1276), 1, - sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(133), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(153), 2, - sym_record, - sym_record_update, - ACTIONS(1066), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(188), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [27692] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, anon_sym_DASH, - ACTIONS(600), 1, - anon_sym_fn, - ACTIONS(602), 1, + ACTIONS(846), 1, anon_sym_todo, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(608), 1, - anon_sym_case, - ACTIONS(610), 1, + ACTIONS(848), 1, anon_sym_assert, - ACTIONS(612), 1, + ACTIONS(850), 1, anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1098), 1, + ACTIONS(1082), 1, sym_float, - ACTIONS(1102), 1, + ACTIONS(1086), 1, sym__decimal, - STATE(394), 1, + STATE(146), 1, sym_identifier, - STATE(440), 1, + STATE(149), 1, sym_tuple, - STATE(441), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1264), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1369), 1, + STATE(1345), 1, sym__maybe_tuple_expression, - STATE(1382), 1, + STATE(1354), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(389), 2, + STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(439), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(1100), 3, + ACTIONS(1084), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(491), 10, + STATE(190), 10, sym__expression_unit, sym_todo, sym_panic, @@ -28898,47 +28616,34 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27798] = 14, + [27408] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, + ACTIONS(1072), 1, anon_sym_PIPE_GT, - ACTIONS(1086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(1074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1082), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, ACTIONS(1076), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1078), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(678), 10, + ACTIONS(640), 14, anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -28948,34 +28653,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(676), 11, + ACTIONS(638), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, sym__octal, sym__binary, sym__upname, - [27874] = 4, + [27474] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(586), 18, + ACTIONS(1058), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1060), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1074), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1076), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(640), 14, anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -28985,7 +28708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 26, + ACTIONS(638), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -29000,85 +28723,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27930] = 29, + [27538] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(562), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(566), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(568), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(570), 1, anon_sym_LT_LT, - ACTIONS(296), 1, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, anon_sym_fn, - ACTIONS(302), 1, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, anon_sym_case, - ACTIONS(312), 1, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(604), 1, - anon_sym_panic, - ACTIONS(891), 1, - anon_sym_DASH, - ACTIONS(893), 1, - anon_sym_todo, - ACTIONS(895), 1, - anon_sym_assert, - ACTIONS(897), 1, - anon_sym_BANG, - ACTIONS(1104), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1088), 1, sym_float, - STATE(143), 1, + STATE(396), 1, sym_identifier, - STATE(154), 1, + STATE(438), 1, sym_tuple, - STATE(155), 1, + STATE(439), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1265), 1, sym__maybe_function_expression, - STATE(1342), 1, + STATE(1363), 1, sym__maybe_tuple_expression, - STATE(1353), 1, + STATE(1383), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(133), 2, + STATE(388), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(431), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(409), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(193), 10, + STATE(487), 10, sym__expression_unit, sym_todo, sym_panic, @@ -29089,162 +28806,123 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28036] = 14, + [27644] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1070), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1072), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1076), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1078), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(726), 10, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(724), 11, + ACTIONS(862), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(864), 1, anon_sym_POUND, + ACTIONS(866), 1, anon_sym_LBRACK, + ACTIONS(868), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28112] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1070), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1084), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 16, + ACTIONS(870), 1, anon_sym_DASH, + ACTIONS(872), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, + ACTIONS(874), 1, anon_sym_todo, + ACTIONS(876), 1, anon_sym_panic, + ACTIONS(878), 1, anon_sym_case, - anon_sym_let, + ACTIONS(880), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(882), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(584), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(884), 1, anon_sym_DQUOTE, + ACTIONS(892), 1, + sym__name, + ACTIONS(894), 1, + sym__upname, + ACTIONS(1090), 1, sym_float, + ACTIONS(1094), 1, + sym__decimal, + STATE(335), 1, + sym_identifier, + STATE(347), 1, + sym_tuple, + STATE(348), 1, + sym_anonymous_function, + STATE(1307), 1, + sym__maybe_function_expression, + STATE(1344), 1, + sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(322), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(346), 2, + sym_record, + sym_record_update, + ACTIONS(1092), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28172] = 14, + STATE(336), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(384), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27750] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, + ACTIONS(1062), 1, anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, + ACTIONS(1064), 1, anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1074), 2, + ACTIONS(1066), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(702), 10, + ACTIONS(692), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -29255,7 +28933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(700), 11, + ACTIONS(690), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -29267,32 +28945,47 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28248] = 8, + [27826] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1064), 1, + anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1082), 2, + ACTIONS(1066), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1084), 4, + ACTIONS(1068), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1070), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(586), 14, + ACTIONS(684), 10, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -29302,65 +28995,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 20, + ACTIONS(682), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28312] = 13, + [27902] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, + ACTIONS(1072), 1, anon_sym_PIPE_GT, - ACTIONS(1088), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1074), 2, + ACTIONS(1066), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(586), 10, + ACTIONS(640), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -29371,86 +29053,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 12, + ACTIONS(638), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28386] = 29, + [27974] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(288), 1, + ACTIONS(280), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(288), 1, anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(300), 1, - anon_sym_panic, - ACTIONS(302), 1, + ACTIONS(294), 1, anon_sym_case, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(310), 1, - anon_sym_BANG, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1104), 1, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(844), 1, + anon_sym_DASH, + ACTIONS(846), 1, + anon_sym_todo, + ACTIONS(848), 1, + anon_sym_assert, + ACTIONS(850), 1, + anon_sym_BANG, + ACTIONS(1078), 1, sym_float, - STATE(143), 1, + STATE(146), 1, sym_identifier, - STATE(154), 1, + STATE(149), 1, sym_tuple, - STATE(155), 1, + STATE(166), 1, sym_anonymous_function, - STATE(1276), 1, + STATE(1259), 1, sym__maybe_function_expression, - STATE(1353), 1, - sym__maybe_record_expression, - STATE(1362), 1, + STATE(1345), 1, sym__maybe_tuple_expression, + STATE(1354), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(133), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(153), 2, + STATE(157), 2, sym_record, sym_record_update, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(147), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(193), 10, + STATE(194), 10, sym__expression_unit, sym_todo, sym_panic, @@ -29461,46 +29144,44 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28492] = 14, + [28080] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, + ACTIONS(1064), 1, anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1074), 2, + ACTIONS(1066), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(722), 10, + ACTIONS(640), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -29511,58 +29192,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(720), 11, + ACTIONS(638), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28568] = 14, + [28154] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, + ACTIONS(1062), 1, anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, + ACTIONS(1064), 1, anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1074), 2, + ACTIONS(1066), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(690), 10, + ACTIONS(720), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -29573,7 +29255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(688), 11, + ACTIONS(718), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -29585,84 +29267,61 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28644] = 29, + [28230] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(588), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_POUND, - ACTIONS(594), 1, - anon_sym_LBRACK, - ACTIONS(596), 1, - anon_sym_LT_LT, - ACTIONS(598), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1058), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1076), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(640), 16, anon_sym_DASH, - ACTIONS(600), 1, anon_sym_fn, - ACTIONS(602), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_todo, - ACTIONS(604), 1, anon_sym_panic, - ACTIONS(608), 1, anon_sym_case, - ACTIONS(610), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(612), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, sym__name, - ACTIONS(1106), 1, + ACTIONS(638), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, sym_float, - STATE(394), 1, - sym_identifier, - STATE(440), 1, - sym_tuple, - STATE(441), 1, - sym_anonymous_function, - STATE(1264), 1, - sym__maybe_function_expression, - STATE(1369), 1, - sym__maybe_tuple_expression, - STATE(1382), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(389), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(439), 2, - sym_record, - sym_record_update, - ACTIONS(618), 3, sym__hex, sym__octal, sym__binary, - STATE(407), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(486), 10, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_boolean_negation, - sym_integer_negation, - sym_string, - sym_integer, - [28750] = 29, + sym__upname, + [28290] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -29687,27 +29346,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - sym__decimal, ACTIONS(59), 1, sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(935), 1, + ACTIONS(858), 1, anon_sym_fn, - ACTIONS(1108), 1, + ACTIONS(1096), 1, sym_float, + ACTIONS(1100), 1, + sym__decimal, STATE(38), 1, sym_identifier, - STATE(68), 1, - sym_tuple, STATE(71), 1, sym_anonymous_function, - STATE(1232), 1, + STATE(74), 1, + sym_tuple, + STATE(1245), 1, sym__maybe_function_expression, - STATE(1398), 1, - sym__maybe_record_expression, STATE(1399), 1, + sym__maybe_record_expression, + STATE(1400), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -29715,10 +29374,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(1098), 3, sym__hex, sym__octal, sym__binary, @@ -29728,7 +29387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_access, sym_field_access, sym_function_call, - STATE(90), 10, + STATE(81), 10, sym__expression_unit, sym_todo, sym_panic, @@ -29739,96 +29398,22 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28856] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, - ACTIONS(1086), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1088), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1070), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1072), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1074), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1082), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1076), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1078), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(556), 10, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(554), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28932] = 9, + [28396] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(640), 18, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1072), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1082), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1084), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 14, anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -29838,7 +29423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 19, + ACTIONS(638), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -29852,45 +29437,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28998] = 11, + [28452] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1080), 1, + ACTIONS(1072), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1058), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1072), 2, + ACTIONS(1060), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1082), 2, + ACTIONS(1074), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1076), 4, + ACTIONS(1068), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1078), 4, + ACTIONS(1070), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1084), 4, + ACTIONS(1076), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(586), 10, + ACTIONS(640), 10, anon_sym_fn, anon_sym_todo, anon_sym_panic, @@ -29901,7 +29493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(584), 15, + ACTIONS(638), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -29917,24 +29509,441 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29068] = 4, + [28522] = 29, ACTIONS(3), 1, sym_module_comment, + ACTIONS(562), 1, + anon_sym_LBRACE, + ACTIONS(566), 1, + anon_sym_POUND, + ACTIONS(568), 1, + anon_sym_LBRACK, + ACTIONS(570), 1, + anon_sym_LT_LT, + ACTIONS(572), 1, + anon_sym_DASH, + ACTIONS(574), 1, + anon_sym_fn, + ACTIONS(576), 1, + anon_sym_todo, + ACTIONS(578), 1, + anon_sym_panic, + ACTIONS(582), 1, + anon_sym_case, + ACTIONS(584), 1, + anon_sym_assert, + ACTIONS(586), 1, + anon_sym_BANG, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1102), 1, + sym_float, + ACTIONS(1106), 1, + sym__decimal, + STATE(396), 1, + sym_identifier, + STATE(438), 1, + sym_tuple, + STATE(439), 1, + sym_anonymous_function, + STATE(1265), 1, + sym__maybe_function_expression, + STATE(1363), 1, + sym__maybe_tuple_expression, + STATE(1383), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(374), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, + STATE(388), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(431), 2, + sym_record, + sym_record_update, + ACTIONS(1104), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(409), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(493), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28628] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1064), 1, + anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1058), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1060), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1066), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1074), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1068), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1070), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1076), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(700), 10, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(698), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [28704] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(276), 1, + anon_sym_LBRACE, + ACTIONS(280), 1, + anon_sym_POUND, + ACTIONS(282), 1, + anon_sym_LBRACK, + ACTIONS(284), 1, + anon_sym_LT_LT, + ACTIONS(286), 1, + anon_sym_DASH, + ACTIONS(288), 1, + anon_sym_fn, + ACTIONS(290), 1, + anon_sym_todo, + ACTIONS(292), 1, + anon_sym_panic, + ACTIONS(294), 1, + anon_sym_case, + ACTIONS(298), 1, + anon_sym_assert, + ACTIONS(302), 1, + anon_sym_BANG, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1082), 1, + sym_float, + ACTIONS(1086), 1, + sym__decimal, + STATE(146), 1, + sym_identifier, + STATE(149), 1, + sym_tuple, + STATE(166), 1, + sym_anonymous_function, + STATE(1259), 1, + sym__maybe_function_expression, + STATE(1354), 1, + sym__maybe_record_expression, + STATE(1389), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(133), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(157), 2, + sym_record, + sym_record_update, + ACTIONS(1084), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(147), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(190), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28810] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1064), 1, + anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1058), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1060), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1066), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1074), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1068), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1070), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1076), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(604), 10, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(602), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [28886] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1062), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1064), 1, + anon_sym_AMP_AMP, + ACTIONS(1072), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1058), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1060), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1066), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1074), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1068), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1070), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1076), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(716), 10, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(714), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [28962] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(864), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_LBRACK, + ACTIONS(868), 1, + anon_sym_LT_LT, + ACTIONS(870), 1, + anon_sym_DASH, + ACTIONS(872), 1, + anon_sym_fn, + ACTIONS(874), 1, + anon_sym_todo, + ACTIONS(876), 1, + anon_sym_panic, + ACTIONS(878), 1, + anon_sym_case, + ACTIONS(880), 1, + anon_sym_assert, + ACTIONS(882), 1, + anon_sym_BANG, + ACTIONS(884), 1, + anon_sym_DQUOTE, + ACTIONS(890), 1, + sym__decimal, + ACTIONS(892), 1, + sym__name, + ACTIONS(894), 1, + sym__upname, + ACTIONS(1108), 1, + sym_float, + STATE(335), 1, + sym_identifier, + STATE(347), 1, + sym_tuple, + STATE(348), 1, + sym_anonymous_function, + STATE(1307), 1, + sym__maybe_function_expression, + STATE(1344), 1, + sym__maybe_tuple_expression, + STATE(1395), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(322), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(346), 2, + sym_record, + sym_record_update, + ACTIONS(888), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(336), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(381), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29068] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(356), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(372), 33, + ACTIONS(354), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -29974,7 +29983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 10, + ACTIONS(376), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -29985,7 +29994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(376), 33, + ACTIONS(374), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -30025,7 +30034,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(382), 10, + ACTIONS(372), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -30036,7 +30045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(380), 33, + ACTIONS(370), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -30076,7 +30085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 10, + ACTIONS(380), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -30087,7 +30096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(358), 33, + ACTIONS(378), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -30127,7 +30136,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(666), 9, + ACTIONS(668), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -30137,7 +30146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(664), 32, + ACTIONS(666), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -30176,9 +30185,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 9, - anon_sym_DOT, + ACTIONS(680), 9, anon_sym_SLASH, + anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30186,15 +30195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(276), 32, + ACTIONS(678), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_RBRACK, @@ -30225,9 +30234,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(646), 9, + ACTIONS(326), 9, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30235,15 +30244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(644), 32, + ACTIONS(324), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_RBRACK, @@ -30273,7 +30282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1110), 1, anon_sym_LPAREN, - STATE(343), 1, + STATE(351), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -30323,7 +30332,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 11, + ACTIONS(318), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30335,7 +30344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(376), 27, + ACTIONS(316), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30369,7 +30378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(322), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30381,7 +30390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 27, + ACTIONS(320), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30415,7 +30424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 11, + ACTIONS(330), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30427,7 +30436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(362), 27, + ACTIONS(328), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30461,7 +30470,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 11, + ACTIONS(502), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30473,7 +30482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(280), 27, + ACTIONS(500), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30507,7 +30516,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(332), 11, + ACTIONS(380), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30519,7 +30528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(330), 27, + ACTIONS(378), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30553,7 +30562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 11, + ACTIONS(342), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30565,7 +30574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(484), 27, + ACTIONS(340), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30599,7 +30608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(382), 11, + ACTIONS(488), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30611,7 +30620,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(380), 27, + ACTIONS(486), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30645,7 +30654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 11, + ACTIONS(372), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30657,7 +30666,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(276), 27, + ACTIONS(370), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30685,17 +30694,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29902] = 6, + [29902] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 11, + ACTIONS(384), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30707,8 +30712,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(457), 25, + ACTIONS(382), 27, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30733,13 +30740,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29956] = 4, + [29952] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 11, + ACTIONS(411), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30751,7 +30758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(324), 27, + ACTIONS(409), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30779,13 +30786,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30006] = 4, + [30002] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(500), 11, + ACTIONS(356), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30797,7 +30804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(498), 27, + ACTIONS(354), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30825,13 +30832,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30056] = 4, + [30052] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 11, + ACTIONS(336), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30843,7 +30850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(358), 27, + ACTIONS(334), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -30871,13 +30878,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30106] = 4, + [30102] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(1112), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(392), 11, + ACTIONS(398), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30889,10 +30900,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(390), 27, + ACTIONS(396), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30917,13 +30926,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30156] = 4, + [30156] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(402), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(346), 11, + ACTIONS(398), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30935,10 +30948,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(344), 27, + ACTIONS(396), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30963,17 +30974,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30206] = 6, + [30210] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 11, + ACTIONS(376), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30985,8 +30992,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(457), 25, + ACTIONS(374), 27, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31011,17 +31020,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30260] = 6, + [30260] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1116), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 11, + ACTIONS(496), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31033,8 +31038,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(336), 25, + ACTIONS(494), 27, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31059,13 +31066,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30314] = 4, + [30310] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1116), 1, + anon_sym_LPAREN, + ACTIONS(1118), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 11, + ACTIONS(346), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31077,10 +31088,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(366), 27, + ACTIONS(344), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31111,7 +31120,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(374), 11, + ACTIONS(425), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31123,7 +31132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(372), 27, + ACTIONS(423), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -31157,7 +31166,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(386), 11, + ACTIONS(326), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31169,7 +31178,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(384), 27, + ACTIONS(324), 27, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_DOT, @@ -31203,7 +31212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(518), 11, + ACTIONS(552), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31215,7 +31224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(516), 26, + ACTIONS(550), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -31248,7 +31257,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 11, + ACTIONS(540), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31260,7 +31269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(530), 26, + ACTIONS(538), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -31293,7 +31302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 11, + ACTIONS(536), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31305,7 +31314,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(550), 26, + ACTIONS(534), 26, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_POUND, @@ -31332,13 +31341,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30611] = 4, + [30611] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1120), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(528), 11, + ACTIONS(530), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31350,9 +31361,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(526), 26, + ACTIONS(528), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31377,15 +31387,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30660] = 5, + [30662] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1120), 1, - anon_sym_as, + ACTIONS(548), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(522), 11, + ACTIONS(398), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31397,7 +31407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(520), 25, + ACTIONS(396), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31423,15 +31433,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30711] = 5, + [30713] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, + ACTIONS(546), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 11, + ACTIONS(398), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31443,7 +31453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(457), 25, + ACTIONS(396), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31469,15 +31479,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30762] = 5, + [30764] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(536), 1, - anon_sym_DOT, + ACTIONS(400), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 11, + ACTIONS(398), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31489,7 +31499,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(457), 25, + ACTIONS(396), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31515,7 +31525,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30813] = 4, + [30815] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -31560,15 +31570,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30862] = 5, + [30864] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 11, + ACTIONS(518), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31580,8 +31588,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(457), 25, + ACTIONS(516), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31612,7 +31621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(540), 11, + ACTIONS(514), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31624,7 +31633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(538), 26, + ACTIONS(512), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -31657,7 +31666,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 11, + ACTIONS(522), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31669,9 +31678,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(512), 26, + ACTIONS(520), 26, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31702,7 +31711,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 11, + ACTIONS(526), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31714,9 +31723,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(546), 26, + ACTIONS(524), 26, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31741,10 +31750,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31060] = 12, + [31060] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, + ACTIONS(1130), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, @@ -31755,51 +31764,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(586), 3, + ACTIONS(640), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1128), 4, + ACTIONS(1126), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 12, + ACTIONS(638), 14, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31124] = 4, + [31122] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(698), 11, + ACTIONS(652), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31811,7 +31819,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(696), 25, + ACTIONS(650), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31837,15 +31845,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31172] = 14, + [31170] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - ACTIONS(1140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -31855,61 +31857,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1144), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1128), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1130), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1138), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31240] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(638), 11, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(640), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(636), 25, + ACTIONS(638), 19, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31923,37 +31887,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31288] = 4, + [31226] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1130), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 11, + ACTIONS(1122), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1124), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1132), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1134), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(640), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(728), 25, + ACTIONS(638), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31966,168 +31936,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31336] = 4, + [31284] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1130), 1, + anon_sym_PIPE_GT, + ACTIONS(1138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1140), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(630), 11, + ACTIONS(1122), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1132), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1144), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(628), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1126), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(1136), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31384] = 4, + [31352] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1130), 1, + anon_sym_PIPE_GT, + ACTIONS(1138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1140), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(658), 11, + ACTIONS(1122), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1132), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(656), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1126), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(714), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31432] = 14, + [31420] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - ACTIONS(1140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(696), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(690), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1128), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(694), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(688), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31500] = 4, + [31468] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(666), 11, + ACTIONS(680), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32139,7 +32112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(664), 25, + ACTIONS(678), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32165,13 +32138,11 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31548] = 13, + [31516] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, + ACTIONS(1130), 1, anon_sym_PIPE_GT, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -32181,126 +32152,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(586), 3, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(640), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1128), 4, + ACTIONS(1126), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 11, + ACTIONS(638), 12, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31614] = 6, + [31580] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1130), 1, + anon_sym_PIPE_GT, + ACTIONS(1140), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(1122), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1136), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 9, + ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, + ACTIONS(1132), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(640), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(584), 21, + ACTIONS(1126), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1128), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1134), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 11, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31666] = 11, + [31646] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(676), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1134), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(586), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1128), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 14, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(674), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32309,20 +32270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31728] = 14, + [31694] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, + ACTIONS(1130), 1, anon_sym_PIPE_GT, - ACTIONS(1140), 1, + ACTIONS(1138), 1, anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, + ACTIONS(1140), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, @@ -32333,27 +32305,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(1148), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1128), 4, + ACTIONS(1126), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, @@ -32369,25 +32341,31 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31796] = 4, + [31762] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(586), 11, + ACTIONS(1122), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1134), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(640), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(584), 25, + ACTIONS(638), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32403,23 +32381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31844] = 4, + [31814] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 11, + ACTIONS(640), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32431,7 +32405,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(692), 25, + ACTIONS(638), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32457,13 +32431,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31892] = 4, + [31862] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(646), 11, + ACTIONS(668), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32475,7 +32449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(644), 25, + ACTIONS(666), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32501,13 +32475,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31940] = 4, + [31910] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(674), 11, + ACTIONS(729), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32519,7 +32493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(672), 25, + ACTIONS(726), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32545,35 +32519,25 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31988] = 8, + [31958] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(664), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1134), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1136), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(584), 19, + ACTIONS(662), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32587,127 +32551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32044] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - ACTIONS(1140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1122), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1124), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(718), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1128), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1130), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(716), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32112] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - ACTIONS(1140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1122), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1124), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(722), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1128), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1130), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(720), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32180] = 4, + [32006] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(650), 11, + ACTIONS(656), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32719,7 +32581,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(648), 25, + ACTIONS(654), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32745,55 +32607,69 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [32228] = 4, + [32054] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1130), 1, + anon_sym_PIPE_GT, + ACTIONS(1138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1140), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 11, + ACTIONS(1122), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1124), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1132), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(628), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(660), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1126), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(626), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32276] = 9, + [32122] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, + ACTIONS(1130), 1, anon_sym_PIPE_GT, + ACTIONS(1138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1140), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -32803,48 +32679,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1136), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 7, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(720), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1126), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(584), 18, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + ACTIONS(1134), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(718), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32334] = 4, + [32190] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(670), 11, + ACTIONS(644), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32856,7 +32733,139 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(668), 25, + ACTIONS(642), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [32238] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(556), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(554), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [32286] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(632), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(630), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [32334] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(686), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32885,11 +32894,11 @@ static const uint16_t ts_small_parse_table[] = { [32382] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, + ACTIONS(1130), 1, anon_sym_PIPE_GT, - ACTIONS(1140), 1, + ACTIONS(1138), 1, anon_sym_PIPE_PIPE, - ACTIONS(1142), 1, + ACTIONS(1140), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, @@ -32900,32 +32909,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1126), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1134), 2, + ACTIONS(1132), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(726), 3, + ACTIONS(1142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(692), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1128), 4, + ACTIONS(1126), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1130), 4, + ACTIONS(1128), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 4, + ACTIONS(1134), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(724), 10, + ACTIONS(690), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32942,7 +32951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(682), 11, + ACTIONS(708), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32954,7 +32963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(680), 25, + ACTIONS(706), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32986,7 +32995,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 11, + ACTIONS(704), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32998,7 +33007,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(578), 25, + ACTIONS(702), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -33030,7 +33039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(642), 11, + ACTIONS(648), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33042,7 +33051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(640), 25, + ACTIONS(646), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -33074,7 +33083,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(634), 11, + ACTIONS(636), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33086,7 +33095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(632), 25, + ACTIONS(634), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -33118,7 +33127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(686), 11, + ACTIONS(724), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33130,7 +33139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(684), 25, + ACTIONS(722), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -33162,7 +33171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 11, + ACTIONS(560), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33174,7 +33183,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(708), 25, + ACTIONS(558), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -33205,7 +33214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1154), 1, anon_sym_SLASH, - STATE(387), 1, + STATE(386), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -33293,7 +33302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1154), 1, anon_sym_SLASH, - STATE(386), 1, + STATE(385), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -33335,14 +33344,57 @@ static const uint16_t ts_small_parse_table[] = { [32888] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1171), 1, + ACTIONS(1167), 1, + anon_sym_LPAREN, + STATE(453), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(272), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(270), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [32937] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1173), 1, anon_sym_LPAREN, - STATE(449), 1, + STATE(448), 1, sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1167), 14, + ACTIONS(1169), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -33357,7 +33409,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1169), 17, + ACTIONS(1171), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -33375,17 +33427,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32937] = 6, + [32986] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1173), 1, - anon_sym_LPAREN, - STATE(447), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 9, + ACTIONS(384), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33395,8 +33443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(270), 22, + ACTIONS(382), 24, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33418,7 +33468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32986] = 4, + [33031] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -33459,47 +33509,6 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33031] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(326), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(324), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, [33076] = 6, ACTIONS(3), 1, sym_module_comment, @@ -33548,7 +33557,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 9, + ACTIONS(342), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33558,7 +33567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(280), 23, + ACTIONS(340), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -33582,17 +33591,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33168] = 6, + [33168] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, ACTIONS(1183), 1, - anon_sym_DOT, + anon_sym_RBRACE, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1195), 1, + sym_float, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, + sym_identifier, + STATE(912), 1, + sym_string, + STATE(963), 1, + sym__pattern, + STATE(987), 1, + sym_case_clause_pattern, + STATE(1110), 1, + sym_case_clause_patterns, + STATE(1361), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(434), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1197), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(939), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [33252] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 8, + ACTIONS(322), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33601,8 +33667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(457), 22, + ACTIONS(320), 23, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33624,54 +33691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33216] = 4, + [33296] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1187), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(400), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1189), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33260] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(1207), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(332), 9, - anon_sym_DOT, + ACTIONS(398), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33680,9 +33710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(330), 23, + ACTIONS(396), 22, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33704,55 +33733,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33304] = 24, + [33344] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1191), 1, - anon_sym_RBRACE, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1201), 1, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1203), 1, + ACTIONS(1195), 1, sym_float, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, - STATE(837), 1, + ACTIONS(1211), 1, + anon_sym_RBRACE, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(967), 1, + STATE(963), 1, sym__pattern, - STATE(981), 1, + STATE(987), 1, sym_case_clause_pattern, - STATE(1107), 1, + STATE(1110), 1, sym_case_clause_patterns, - STATE(1332), 1, + STATE(1359), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(455), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, @@ -33764,95 +33793,55 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [33388] = 4, + [33428] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(392), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(390), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [33432] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1201), 1, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1203), 1, + ACTIONS(1195), 1, sym_float, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, - ACTIONS(1215), 1, + ACTIONS(1213), 1, anon_sym_RBRACE, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(967), 1, + STATE(963), 1, sym__pattern, - STATE(981), 1, + STATE(987), 1, sym_case_clause_pattern, - STATE(1107), 1, + STATE(1110), 1, sym_case_clause_patterns, - STATE(1358), 1, + STATE(1432), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(455), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, @@ -33864,55 +33853,137 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [33516] = 24, + [33512] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1215), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_POUND, - ACTIONS(1195), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1217), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(1201), 1, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33556] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1219), 1, + anon_sym_LPAREN, + ACTIONS(1221), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(346), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(344), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [33604] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1203), 1, + ACTIONS(1195), 1, sym_float, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, - ACTIONS(1217), 1, + ACTIONS(1223), 1, anon_sym_RBRACE, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(967), 1, + STATE(963), 1, sym__pattern, - STATE(981), 1, + STATE(987), 1, sym_case_clause_pattern, - STATE(1107), 1, + STATE(1110), 1, sym_case_clause_patterns, - STATE(1433), 1, + STATE(1333), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(455), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, @@ -33924,17 +33995,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [33600] = 6, + [33688] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1219), 1, - anon_sym_LPAREN, - ACTIONS(1221), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 8, + ACTIONS(411), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33943,8 +34011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(336), 22, + ACTIONS(409), 23, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33966,13 +34035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33648] = 4, + [33732] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(500), 9, + ACTIONS(502), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33982,7 +34051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(498), 23, + ACTIONS(500), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34006,73 +34075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33692] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1203), 1, - sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1223), 1, - anon_sym_RBRACE, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(967), 1, - sym__pattern, - STATE(981), 1, - sym_case_clause_pattern, - STATE(1107), 1, - sym_case_clause_patterns, - STATE(1350), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(455), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, [33776] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 9, + ACTIONS(488), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34082,7 +34091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(366), 23, + ACTIONS(486), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34111,7 +34120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1229), 1, anon_sym_LPAREN, - STATE(540), 1, + STATE(553), 1, sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -34154,7 +34163,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 9, + ACTIONS(318), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34164,7 +34173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(352), 23, + ACTIONS(316), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34188,17 +34197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33912] = 6, + [33912] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(1231), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 8, + ACTIONS(330), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34207,8 +34213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(457), 22, + ACTIONS(328), 23, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34230,13 +34237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33960] = 4, + [33956] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(346), 9, + ACTIONS(425), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34246,7 +34253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(344), 23, + ACTIONS(423), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34270,14 +34277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34004] = 4, + [34000] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(400), 1, + anon_sym_LPAREN, + ACTIONS(1231), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 9, - anon_sym_DOT, + ACTIONS(398), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34286,9 +34296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(484), 23, + ACTIONS(396), 22, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34316,7 +34325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 9, + ACTIONS(496), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34326,7 +34335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(362), 23, + ACTIONS(494), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34350,52 +34359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34092] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(386), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(384), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [34136] = 6, + [34092] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(1238), 1, anon_sym_LPAREN, - STATE(458), 1, + STATE(505), 1, sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -34432,7 +34401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34184] = 4, + [34140] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34472,20 +34441,62 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34228] = 4, + [34184] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 14, - ts_builtin_sym_end, + ACTIONS(336), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(334), 23, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [34228] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1248), 1, anon_sym_LBRACE, + ACTIONS(1250), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1244), 12, + ts_builtin_sym_end, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -34511,73 +34522,99 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34271] = 24, + [34275] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(624), 1, - sym__name, - ACTIONS(626), 1, - sym__upname, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1248), 1, - anon_sym_RPAREN, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1252), 1, - anon_sym_DOT_DOT, ACTIONS(1254), 1, - sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1083), 1, - sym__pattern, - STATE(1103), 1, - sym_record_pattern_argument, - STATE(1328), 1, - sym_label, - STATE(1376), 1, - sym_pattern_spread, + anon_sym_DASH, + ACTIONS(1256), 1, + anon_sym_size, + ACTIONS(1262), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1252), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + ACTIONS(1260), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1073), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, - sym_discard, - [34354] = 4, + sym__bit_string_segment_option, + ACTIONS(1258), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [34332] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1268), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 9, - anon_sym_DOT, + ACTIONS(1264), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1266), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [34377] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(526), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34586,8 +34623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(546), 22, + ACTIONS(524), 23, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34609,13 +34647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34397] = 4, + [34420] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 8, + ACTIONS(536), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34624,7 +34662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(550), 23, + ACTIONS(534), 23, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -34648,15 +34686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34440] = 5, + [34463] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(376), 1, + ACTIONS(374), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1270), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -34670,7 +34708,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1258), 17, + ACTIONS(1272), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34688,64 +34726,96 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34485] = 11, + [34508] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1264), 1, - anon_sym_size, - ACTIONS(1270), 1, - anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 2, + ACTIONS(518), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(516), 22, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_GT_GT, - ACTIONS(618), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [34551] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1278), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1274), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1074), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1266), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [34542] = 5, + sym__upname, + ACTIONS(1276), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [34596] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1276), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1280), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -34756,7 +34826,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1274), 17, + ACTIONS(1282), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34774,13 +34844,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34587] = 4, + [34639] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(528), 9, + ACTIONS(522), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34790,7 +34860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(526), 22, + ACTIONS(520), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -34813,92 +34883,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34630] = 4, + [34682] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1278), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(598), 1, + sym__name, + ACTIONS(600), 1, + sym__upname, + ACTIONS(1185), 1, anon_sym_POUND, + ACTIONS(1187), 1, anon_sym_LBRACK, + ACTIONS(1189), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1284), 1, + anon_sym_RPAREN, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1288), 1, + anon_sym_DOT_DOT, + ACTIONS(1290), 1, sym_float, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(1085), 1, + sym__pattern, + STATE(1122), 1, + sym_record_pattern_argument, + STATE(1326), 1, + sym_pattern_spread, + STATE(1329), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1280), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34673] = 23, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [34765] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1282), 1, + ACTIONS(1292), 1, anon_sym_RBRACE, - ACTIONS(1284), 1, + ACTIONS(1294), 1, anon_sym_POUND, - ACTIONS(1287), 1, + ACTIONS(1297), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1300), 1, anon_sym_LT_LT, - ACTIONS(1293), 1, + ACTIONS(1303), 1, anon_sym_DASH, - ACTIONS(1296), 1, + ACTIONS(1306), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1309), 1, sym_float, - ACTIONS(1305), 1, + ACTIONS(1315), 1, sym__decimal, - ACTIONS(1308), 1, + ACTIONS(1318), 1, sym__discard_name, - ACTIONS(1311), 1, + ACTIONS(1321), 1, sym__name, - ACTIONS(1314), 1, + ACTIONS(1324), 1, sym__upname, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(967), 1, + STATE(963), 1, sym__pattern, - STATE(981), 1, + STATE(987), 1, sym_case_clause_pattern, - STATE(1107), 1, + STATE(1110), 1, sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(423), 2, + STATE(425), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1302), 3, + ACTIONS(1312), 3, sym__hex, sym__octal, sym__binary, @@ -34910,54 +35000,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [34754] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1321), 1, - anon_sym_LBRACE, - ACTIONS(1323), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1317), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1319), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34801] = 4, + [34846] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1325), 14, + ACTIONS(1327), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -34972,7 +35021,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1327), 17, + ACTIONS(1329), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34990,17 +35039,18 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34844] = 5, + [34889] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1333), 1, - anon_sym_DOT, + ACTIONS(1335), 1, + anon_sym_LBRACE, + ACTIONS(1337), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1329), 13, + ACTIONS(1331), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -35012,7 +35062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1331), 17, + ACTIONS(1333), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35030,38 +35080,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34889] = 11, + [34936] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - ACTIONS(1337), 1, + ACTIONS(1341), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1335), 2, + ACTIONS(1339), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1144), 5, + STATE(1147), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -35076,13 +35126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34946] = 4, + [34993] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 8, + ACTIONS(540), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35091,9 +35142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(512), 23, + ACTIONS(538), 22, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -35115,15 +35165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34989] = 5, + [35036] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(522), 8, + ACTIONS(530), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35132,7 +35182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(520), 22, + ACTIONS(528), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35155,14 +35205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35034] = 4, + [35081] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1345), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 9, - anon_sym_DOT, + ACTIONS(398), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35171,7 +35222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(542), 22, + ACTIONS(396), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35194,13 +35245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35077] = 4, + [35126] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(540), 9, + ACTIONS(544), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -35210,7 +35261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(538), 22, + ACTIONS(542), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35233,13 +35284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35120] = 4, + [35169] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1341), 13, + ACTIONS(1347), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -35253,7 +35304,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1343), 18, + ACTIONS(1349), 18, anon_sym_if, anon_sym_import, anon_sym_as, @@ -35272,138 +35323,57 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35163] = 6, + [35212] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1351), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1345), 12, - ts_builtin_sym_end, - anon_sym_AT, + ACTIONS(1185), 1, anon_sym_POUND, + ACTIONS(1187), 1, anon_sym_LBRACK, + ACTIONS(1189), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1347), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(1191), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35210] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1353), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH_GT, - anon_sym_BANG, + ACTIONS(1193), 1, anon_sym_DQUOTE, + ACTIONS(1195), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1355), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35253] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(624), 1, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(1205), 1, sym__upname, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1252), 1, - anon_sym_DOT_DOT, - ACTIONS(1254), 1, - sym_float, - ACTIONS(1357), 1, - anon_sym_RPAREN, - STATE(837), 1, + ACTIONS(1351), 1, + anon_sym_RBRACE, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(888), 1, sym_identifier, - STATE(901), 1, + STATE(912), 1, sym_string, - STATE(1083), 1, + STATE(963), 1, sym__pattern, - STATE(1103), 1, - sym_record_pattern_argument, - STATE(1328), 1, - sym_label, - STATE(1351), 1, - sym_pattern_spread, + STATE(987), 1, + sym_case_clause_pattern, + STATE(1110), 1, + sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(425), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(939), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -35411,104 +35381,58 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [35336] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(1270), 1, - anon_sym_unit, - ACTIONS(1337), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1268), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1144), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1266), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [35393] = 24, + [35293] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1252), 1, + ACTIONS(1288), 1, anon_sym_DOT_DOT, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1361), 1, + ACTIONS(1353), 1, anon_sym_RPAREN, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(960), 1, - sym_record_pattern_argument, - STATE(1083), 1, + STATE(1085), 1, sym__pattern, - STATE(1327), 1, - sym_pattern_spread, - STATE(1328), 1, + STATE(1122), 1, + sym_record_pattern_argument, + STATE(1329), 1, sym_label, + STATE(1348), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -35516,20 +35440,20 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [35476] = 4, + [35376] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1363), 14, + ACTIONS(1355), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -35537,7 +35461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1365), 17, + ACTIONS(1357), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35555,55 +35479,61 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35519] = 5, + [35419] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1367), 1, - anon_sym_DOT, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(1254), 1, + anon_sym_DASH, + ACTIONS(1262), 1, + anon_sym_unit, + ACTIONS(1341), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(457), 22, - anon_sym_LBRACE, + ACTIONS(1359), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [35564] = 5, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1260), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1147), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1258), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [35476] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1369), 1, + ACTIONS(1361), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 8, + ACTIONS(398), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35612,7 +35542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(457), 22, + ACTIONS(396), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35635,15 +35565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35609] = 5, + [35521] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, + ACTIONS(400), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(459), 8, + ACTIONS(398), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35652,7 +35582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(457), 22, + ACTIONS(396), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35675,13 +35605,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35654] = 4, + [35566] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(598), 1, + sym__name, + ACTIONS(600), 1, + sym__upname, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1288), 1, + anon_sym_DOT_DOT, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1363), 1, + anon_sym_RPAREN, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(958), 1, + sym_record_pattern_argument, + STATE(1085), 1, + sym__pattern, + STATE(1328), 1, + sym_pattern_spread, + STATE(1329), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [35649] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1371), 14, + ACTIONS(1365), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -35696,7 +35685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1373), 17, + ACTIONS(1367), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35714,17 +35703,56 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35697] = 6, + [35692] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1379), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1369), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1371), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [35735] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1377), 1, anon_sym_LBRACE, - ACTIONS(1381), 1, + ACTIONS(1379), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1375), 12, + ACTIONS(1373), 12, ts_builtin_sym_end, anon_sym_AT, anon_sym_POUND, @@ -35737,7 +35765,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1377), 17, + ACTIONS(1375), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35755,16 +35783,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35744] = 4, + [35782] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1383), 13, + ACTIONS(1381), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35775,10 +35804,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1385), 18, + ACTIONS(1383), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -35794,17 +35822,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35787] = 4, + [35825] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1387), 14, + ACTIONS(1385), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35815,9 +35842,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1389), 17, + ACTIONS(1387), 18, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -35833,13 +35861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35830] = 4, + [35868] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1391), 14, + ACTIONS(1389), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -35854,7 +35882,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1393), 17, + ACTIONS(1391), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35872,55 +35900,56 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35873] = 4, + [35911] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(530), 22, + ACTIONS(1393), 14, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [35916] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1395), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [35954] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1395), 13, + ACTIONS(1397), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35931,10 +35960,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1397), 18, + ACTIONS(1399), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -35950,17 +35978,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35959] = 4, + [35997] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1399), 14, + ACTIONS(1401), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35971,9 +35998,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1401), 17, + ACTIONS(1403), 18, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -35989,38 +36017,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36002] = 11, + [36040] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1264), 1, + ACTIONS(1256), 1, anon_sym_size, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1403), 2, + ACTIONS(1405), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1074), 5, + STATE(1073), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36035,38 +36063,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36059] = 11, + [36097] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - ACTIONS(1407), 1, + ACTIONS(1409), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1405), 2, + ACTIONS(1407), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1108), 5, + STATE(1144), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36081,52 +36109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36116] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(518), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(516), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [36159] = 4, + [36154] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1409), 13, + ACTIONS(1411), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36140,7 +36129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1411), 18, + ACTIONS(1413), 18, anon_sym_if, anon_sym_import, anon_sym_as, @@ -36159,38 +36148,77 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36202] = 11, + [36197] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(512), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [36240] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - ACTIONS(1407), 1, + ACTIONS(1409), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1413), 2, + ACTIONS(1415), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1108), 5, + STATE(1144), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36205,86 +36233,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36259] = 23, + [36297] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1421), 1, + anon_sym_LBRACE, + ACTIONS(1423), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1417), 12, + ts_builtin_sym_end, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1195), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1203), 1, sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1415), 1, - anon_sym_RBRACE, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(967), 1, - sym__pattern, - STATE(981), 1, - sym_case_clause_pattern, - STATE(1107), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(423), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [36340] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1421), 1, - anon_sym_LBRACE, - ACTIONS(1423), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1417), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + sym__hex, + sym__octal, + sym__binary, sym__upname, ACTIONS(1419), 17, anon_sym_if, @@ -36304,51 +36274,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36387] = 4, + [36344] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1425), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1427), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(552), 9, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36429] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(550), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [36387] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1429), 13, + ACTIONS(1425), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36362,7 +36333,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1431), 17, + ACTIONS(1427), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36380,52 +36351,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36471] = 5, + [36429] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1437), 1, - anon_sym_LBRACE, + ACTIONS(324), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1433), 12, - ts_builtin_sym_end, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1435), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(376), 9, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36515] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(374), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [36473] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(586), 8, + ACTIONS(640), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -36434,7 +36405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(584), 22, + ACTIONS(638), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -36457,13 +36428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [36557] = 4, + [36515] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1439), 13, + ACTIONS(1429), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36477,7 +36448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1441), 17, + ACTIONS(1431), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36495,13 +36466,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36599] = 4, + [36557] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1443), 13, + ACTIONS(1433), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36515,7 +36486,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1445), 17, + ACTIONS(1435), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36533,13 +36504,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36641] = 4, + [36599] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1447), 13, + ACTIONS(1437), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36553,7 +36524,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1449), 17, + ACTIONS(1439), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36571,13 +36542,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36683] = 4, + [36641] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1451), 13, + ACTIONS(1441), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36591,7 +36562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1453), 17, + ACTIONS(1443), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36609,84 +36580,37 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36725] = 13, + [36683] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1465), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1467), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(716), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [36785] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - ACTIONS(1407), 1, + ACTIONS(1409), 1, anon_sym_size, - STATE(1315), 1, + STATE(1312), 1, sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(979), 5, + STATE(1030), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36701,13 +36625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36841] = 4, + [36739] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1475), 13, + ACTIONS(1445), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36721,7 +36645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1477), 17, + ACTIONS(1447), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36739,13 +36663,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36883] = 4, + [36781] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1479), 13, + ACTIONS(1449), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36759,7 +36683,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1481), 17, + ACTIONS(1451), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36777,46 +36701,46 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36925] = 13, + [36823] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(720), 7, + ACTIONS(626), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -36824,13 +36748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_DOT_DOT, - [36985] = 4, + [36883] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1483), 13, + ACTIONS(1473), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36844,7 +36768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1485), 17, + ACTIONS(1475), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36862,51 +36786,60 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37027] = 4, + [36925] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1457), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1459), 1, + anon_sym_AMP_AMP, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(650), 8, + ACTIONS(1453), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(648), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(718), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DOT_DOT, - [37069] = 4, + [36985] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1487), 13, + ACTIONS(1477), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36920,7 +36853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1489), 17, + ACTIONS(1479), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36938,13 +36871,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37111] = 4, + [37027] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 8, + ACTIONS(644), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -36953,7 +36886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(660), 22, + ACTIONS(642), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -36976,13 +36909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [37153] = 4, + [37069] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1491), 13, + ACTIONS(1481), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36996,7 +36929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1493), 17, + ACTIONS(1483), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37014,13 +36947,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37195] = 4, + [37111] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1495), 13, + ACTIONS(688), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(686), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37153] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1485), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37034,7 +37005,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1497), 17, + ACTIONS(1487), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37052,13 +37023,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37237] = 4, + [37195] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1499), 13, + ACTIONS(1489), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37072,7 +37043,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1501), 17, + ACTIONS(1491), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37090,44 +37061,84 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37279] = 12, + [37237] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(640), 6, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(638), 18, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DOT_DOT, + [37283] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 8, + ACTIONS(638), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37136,13 +37147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_DOT_DOT, - [37337] = 4, + [37341] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1503), 13, + ACTIONS(1493), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37156,7 +37167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1505), 17, + ACTIONS(1495), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37174,42 +37185,42 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37379] = 11, + [37383] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 9, + ACTIONS(638), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37219,39 +37230,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, - [37435] = 10, + [37439] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(584), 11, + ACTIONS(638), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37263,13 +37274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DOT_DOT, - [37489] = 4, + [37493] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1507), 13, + ACTIONS(1497), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37283,7 +37294,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1509), 17, + ACTIONS(1499), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37301,13 +37312,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37531] = 4, + [37535] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1511), 13, + ACTIONS(1501), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37321,7 +37332,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1513), 17, + ACTIONS(1503), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37339,13 +37350,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37573] = 4, + [37577] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1515), 13, + ACTIONS(1505), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37359,7 +37370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1517), 17, + ACTIONS(1507), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37377,13 +37388,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37615] = 4, + [37619] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1519), 13, + ACTIONS(1509), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37397,7 +37408,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1521), 17, + ACTIONS(1511), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37415,13 +37426,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37657] = 4, + [37661] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1523), 13, + ACTIONS(1513), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37435,7 +37446,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1525), 17, + ACTIONS(1515), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37453,51 +37464,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37699] = 4, + [37703] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(642), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(640), 22, + ACTIONS(1517), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [37741] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1519), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37745] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(634), 8, + ACTIONS(648), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37506,7 +37517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(632), 22, + ACTIONS(646), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37529,13 +37540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [37783] = 4, + [37787] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1527), 13, + ACTIONS(1521), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37549,7 +37560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1529), 17, + ACTIONS(1523), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37567,13 +37578,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37825] = 4, + [37829] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1531), 13, + ACTIONS(636), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(634), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37871] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1525), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37587,7 +37636,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1533), 17, + ACTIONS(1527), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37605,13 +37654,56 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37867] = 4, + [37913] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1535), 13, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(640), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DOT_DOT, + [37965] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1529), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37625,7 +37717,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1537), 17, + ACTIONS(1531), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37643,13 +37735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37909] = 4, + [38007] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 8, + ACTIONS(560), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37658,7 +37750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(708), 22, + ACTIONS(558), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37681,13 +37773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [37951] = 4, + [38049] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1539), 13, + ACTIONS(1533), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37701,7 +37793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1541), 17, + ACTIONS(1535), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37719,13 +37811,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37993] = 4, + [38091] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 8, + ACTIONS(729), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37734,7 +37826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(578), 22, + ACTIONS(726), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37757,51 +37849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38035] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1543), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1545), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38077] = 4, + [38133] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(682), 8, + ACTIONS(724), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37810,7 +37864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(680), 22, + ACTIONS(722), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37833,22 +37887,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38119] = 4, + [38175] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(670), 8, + ACTIONS(1453), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(640), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(668), 22, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(638), 16, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37864,41 +37928,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DOT_DOT, - [38161] = 9, + [38225] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(704), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(586), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 15, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(702), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37913,14 +37959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DOT_DOT, - [38213] = 4, + [38267] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1547), 13, + ACTIONS(1537), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37934,7 +37987,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1549), 17, + ACTIONS(1539), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37952,13 +38005,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38255] = 4, + [38309] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1551), 13, + ACTIONS(1541), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37972,7 +38025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1553), 17, + ACTIONS(1543), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37990,13 +38043,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38297] = 4, + [38351] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1555), 13, + ACTIONS(1545), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38010,7 +38063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1557), 17, + ACTIONS(1547), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38028,13 +38081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38339] = 4, + [38393] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1559), 13, + ACTIONS(1549), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38048,7 +38101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1561), 17, + ACTIONS(1551), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38066,55 +38119,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38381] = 8, + [38435] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(586), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(584), 16, + ACTIONS(1553), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DOT_DOT, - [38431] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1555), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38477] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1563), 13, + ACTIONS(1557), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38128,7 +38177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1565), 17, + ACTIONS(1559), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38146,13 +38195,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38473] = 4, + [38519] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1567), 13, + ACTIONS(1561), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38166,7 +38215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1569), 17, + ACTIONS(1563), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38184,13 +38233,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38515] = 4, + [38561] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1571), 13, + ACTIONS(1244), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38204,7 +38253,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1573), 17, + ACTIONS(1246), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38222,53 +38271,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38557] = 6, + [38603] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(586), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(584), 18, + ACTIONS(1565), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DOT_DOT, - [38603] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1567), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38645] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1575), 13, + ACTIONS(1569), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38282,7 +38329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1577), 17, + ACTIONS(1571), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38300,13 +38347,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38645] = 4, + [38687] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1579), 13, + ACTIONS(1573), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38320,7 +38367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1581), 17, + ACTIONS(1575), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38338,51 +38385,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38687] = 4, + [38729] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 8, - anon_sym_SLASH, + ACTIONS(1577), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1579), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(692), 22, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38771] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1581), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [38729] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1583), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38813] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1583), 13, + ACTIONS(1585), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38396,7 +38481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1585), 17, + ACTIONS(1587), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38414,13 +38499,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38771] = 4, + [38855] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1587), 13, + ACTIONS(1589), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38434,7 +38519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1589), 17, + ACTIONS(1591), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38452,134 +38537,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38813] = 4, + [38897] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1591), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1593), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38855] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(1262), 1, + ACTIONS(556), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1270), 1, - anon_sym_unit, - ACTIONS(1337), 1, - anon_sym_size, - STATE(1218), 1, - sym_expression_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1268), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(998), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1266), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [38911] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1595), 13, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(554), 22, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1597), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38953] = 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [38939] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1599), 13, + ACTIONS(1593), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38593,7 +38595,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1601), 17, + ACTIONS(1595), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38611,13 +38613,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38995] = 4, + [38981] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 8, + ACTIONS(652), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -38626,7 +38628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(728), 22, + ACTIONS(650), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -38649,13 +38651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [39037] = 4, + [39023] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1603), 13, + ACTIONS(1597), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38669,7 +38671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1605), 17, + ACTIONS(1599), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38687,13 +38689,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39079] = 4, + [39065] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1607), 13, + ACTIONS(1601), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38707,7 +38709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1609), 17, + ACTIONS(1603), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38725,13 +38727,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39121] = 4, + [39107] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1611), 13, + ACTIONS(1605), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38745,7 +38747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1613), 17, + ACTIONS(1607), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38763,15 +38765,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39163] = 4, + [39149] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1613), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1345), 13, + ACTIONS(1609), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -38783,7 +38786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1347), 17, + ACTIONS(1611), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38801,13 +38804,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39205] = 4, + [39193] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(638), 8, + ACTIONS(696), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -38816,7 +38819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(636), 22, + ACTIONS(694), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -38839,7 +38842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [39247] = 4, + [39235] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -38877,7 +38880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39289] = 4, + [39277] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -38915,84 +38918,84 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39331] = 4, + [39319] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1623), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1625), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(664), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [39373] = 13, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(662), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [39361] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(724), 7, + ACTIONS(690), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -39000,37 +39003,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_DOT_DOT, - [39433] = 11, + [39421] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1264), 1, + ACTIONS(1256), 1, anon_sym_size, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - STATE(1309), 1, + STATE(1316), 1, sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1005), 5, + STATE(1007), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -39045,13 +39048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [39489] = 4, + [39477] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1627), 13, + ACTIONS(1623), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39065,7 +39068,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1629), 17, + ACTIONS(1625), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39083,51 +39086,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39531] = 4, + [39519] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1631), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1633), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(632), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [39573] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(630), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [39561] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1635), 13, + ACTIONS(1627), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39141,7 +39144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1637), 17, + ACTIONS(1629), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39159,13 +39162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39615] = 4, + [39603] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1639), 13, + ACTIONS(1631), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39179,7 +39182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1641), 17, + ACTIONS(1633), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39197,13 +39200,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39657] = 4, + [39645] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1643), 13, + ACTIONS(1635), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39217,7 +39220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1645), 17, + ACTIONS(1637), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39235,13 +39238,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39699] = 4, + [39687] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(1254), 1, + anon_sym_DASH, + ACTIONS(1262), 1, + anon_sym_unit, + ACTIONS(1341), 1, + anon_sym_size, + STATE(1224), 1, + sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1647), 13, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1260), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(985), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1258), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [39743] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1639), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39255,7 +39303,45 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1649), 17, + ACTIONS(1641), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [39785] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1643), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1645), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39273,13 +39359,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39741] = 4, + [39827] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(674), 8, + ACTIONS(656), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -39288,7 +39374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(672), 22, + ACTIONS(654), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -39311,13 +39397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [39783] = 4, + [39869] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1651), 13, + ACTIONS(1647), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39331,7 +39417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1653), 17, + ACTIONS(1649), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39349,13 +39435,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39825] = 4, + [39911] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(698), 8, + ACTIONS(676), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -39364,7 +39450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(696), 22, + ACTIONS(674), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -39387,13 +39473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [39867] = 4, + [39953] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(1651), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39407,7 +39493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1657), 17, + ACTIONS(1653), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39425,45 +39511,45 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39909] = 4, + [39995] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(630), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(628), 22, + ACTIONS(1655), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [39951] = 4, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1657), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [40037] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -39501,7 +39587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39993] = 4, + [40079] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -39539,7 +39625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40035] = 4, + [40121] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -39577,7 +39663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40077] = 4, + [40163] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -39615,54 +39701,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40119] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(378), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(376), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [40163] = 4, + [40205] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1679), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1675), 13, + ACTIONS(1675), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -39692,13 +39740,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40205] = 4, + [40249] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1679), 13, + ACTIONS(1681), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39712,7 +39760,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1681), 17, + ACTIONS(1683), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39730,13 +39778,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40247] = 4, + [40291] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1683), 13, + ACTIONS(1685), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39750,7 +39798,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1685), 17, + ACTIONS(1687), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39768,13 +39816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40289] = 4, + [40333] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1687), 13, + ACTIONS(1689), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39788,7 +39836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1689), 17, + ACTIONS(1691), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39806,13 +39854,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40331] = 4, + [40375] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1691), 13, + ACTIONS(1693), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -39826,7 +39874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1693), 17, + ACTIONS(1695), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39844,16 +39892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40373] = 5, + [40417] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1699), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1695), 12, + ACTIONS(1697), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -39865,7 +39912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1697), 17, + ACTIONS(1699), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39883,7 +39930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40417] = 4, + [40459] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -39921,44 +39968,6 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [40459] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(658), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(656), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, [40501] = 4, ACTIONS(3), 1, sym_module_comment, @@ -40000,43 +40009,43 @@ static const uint16_t ts_small_parse_table[] = { [40543] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(688), 7, + ACTIONS(714), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -40050,7 +40059,45 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(686), 8, + ACTIONS(1709), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1711), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [40645] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(708), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -40059,7 +40106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(684), 22, + ACTIONS(706), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -40082,107 +40129,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [40645] = 21, + [40687] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1203), 1, - sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1709), 1, - anon_sym_if, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(922), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [40720] = 21, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, anon_sym_DQUOTE, - ACTIONS(1203), 1, - sym_float, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, ACTIONS(1713), 1, - anon_sym_if, - STATE(837), 1, + anon_sym_LT_DASH, + ACTIONS(1715), 1, + sym_float, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(922), 1, + STATE(1029), 1, sym__pattern, + STATE(1079), 1, + sym_use_assignment, + STATE(1402), 1, + sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(939), 7, + STATE(953), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40190,50 +40184,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [40795] = 22, + [40764] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1201), 1, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1203), 1, + ACTIONS(1195), 1, sym_float, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, ACTIONS(1717), 1, anon_sym_if, ACTIONS(1719), 1, anon_sym_DASH_GT, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(967), 1, + STATE(963), 1, sym__pattern, - STATE(1112), 1, + STATE(1101), 1, sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, @@ -40245,12 +40239,12 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [40872] = 6, + [40841] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(1721), 1, anon_sym_LPAREN, - STATE(619), 1, + STATE(602), 1, sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -40284,145 +40278,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [40917] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1203), 1, - sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1723), 1, - anon_sym_if, - ACTIONS(1725), 1, - anon_sym_DASH_GT, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(967), 1, - sym__pattern, - STATE(1112), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [40994] = 22, + [40886] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, ACTIONS(1254), 1, - sym_float, - ACTIONS(1727), 1, - anon_sym_RBRACK, - ACTIONS(1729), 1, - anon_sym_DOT_DOT, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(922), 1, - sym__pattern, - STATE(1363), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41071] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(1262), 1, anon_sym_DASH, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, - ACTIONS(1337), 1, + ACTIONS(1341), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1144), 5, + STATE(1147), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -40437,54 +40321,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [41124] = 22, + [40939] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1195), 1, sym_float, - ACTIONS(1729), 1, - anon_sym_DOT_DOT, - ACTIONS(1731), 1, - anon_sym_RBRACK, - STATE(837), 1, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1723), 1, + anon_sym_if, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(888), 1, sym_identifier, - STATE(901), 1, + STATE(912), 1, sym_string, - STATE(968), 1, + STATE(925), 1, sym__pattern, - STATE(1370), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + ACTIONS(1725), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(939), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40492,54 +40375,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41201] = 22, + [41014] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1715), 1, sym_float, - ACTIONS(1729), 1, - anon_sym_DOT_DOT, - ACTIONS(1733), 1, - anon_sym_RBRACK, - STATE(837), 1, + ACTIONS(1727), 1, + anon_sym_LT_DASH, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(888), 1, sym_identifier, - STATE(901), 1, + STATE(912), 1, sym_string, - STATE(922), 1, + STATE(1029), 1, sym__pattern, - STATE(1357), 1, - sym_list_pattern_tail, + STATE(1079), 1, + sym_use_assignment, + STATE(1331), 1, + sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(953), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40547,35 +40430,35 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41278] = 10, + [41091] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1264), 1, - anon_sym_size, - ACTIONS(1270), 1, + ACTIONS(1262), 1, anon_sym_unit, + ACTIONS(1409), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1074), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1144), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -40590,35 +40473,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [41331] = 10, + [41144] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - ACTIONS(1270), 1, - anon_sym_unit, - ACTIONS(1407), 1, + ACTIONS(1256), 1, anon_sym_size, + ACTIONS(1262), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1268), 3, + ACTIONS(1260), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1108), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(1073), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1266), 14, + ACTIONS(1258), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -40633,54 +40516,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [41384] = 22, + [41197] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1735), 1, - anon_sym_LT_DASH, - ACTIONS(1737), 1, + ACTIONS(1290), 1, sym_float, - STATE(837), 1, + ACTIONS(1729), 1, + anon_sym_RBRACK, + ACTIONS(1731), 1, + anon_sym_DOT_DOT, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(872), 1, sym_identifier, - STATE(913), 1, + STATE(878), 1, sym_string, - STATE(977), 1, + STATE(925), 1, sym__pattern, - STATE(1079), 1, - sym_use_assignment, - STATE(1378), 1, - sym_use_assignments, + STATE(1360), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(963), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40688,54 +40571,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41461] = 22, + [41274] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1737), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1739), 1, - anon_sym_LT_DASH, - STATE(837), 1, + ACTIONS(1731), 1, + anon_sym_DOT_DOT, + ACTIONS(1733), 1, + anon_sym_RBRACK, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(872), 1, sym_identifier, - STATE(913), 1, + STATE(878), 1, sym_string, - STATE(977), 1, + STATE(925), 1, sym__pattern, - STATE(1079), 1, - sym_use_assignment, - STATE(1395), 1, - sym_use_assignments, + STATE(1332), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(963), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40743,102 +40626,109 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41538] = 18, + [41351] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1749), 1, - anon_sym_DQUOTE, - ACTIONS(1751), 1, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, sym_float, - ACTIONS(1755), 1, - sym__decimal, - ACTIONS(1757), 1, - sym__name, - ACTIONS(1759), 1, - sym__upname, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, - sym__case_clause_guard_binary_expression, - STATE(764), 1, + ACTIONS(1731), 1, + anon_sym_DOT_DOT, + ACTIONS(1735), 1, + anon_sym_RBRACK, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, sym_identifier, + STATE(878), 1, + sym_string, + STATE(967), 1, + sym__pattern, + STATE(1384), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1753), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(799), 10, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [41606] = 21, + sym_discard, + [41428] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1201), 1, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1207), 1, + ACTIONS(1195), 1, + sym_float, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, ACTIONS(1737), 1, - sym_float, - ACTIONS(1761), 1, - anon_sym_LT_DASH, - STATE(837), 1, + anon_sym_if, + ACTIONS(1739), 1, + anon_sym_DASH_GT, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, - STATE(977), 1, + STATE(963), 1, sym__pattern, - STATE(1312), 1, - sym_use_assignment, + STATE(1101), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(963), 7, + STATE(939), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40846,52 +40736,53 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41680] = 21, + [41505] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1195), 1, sym_float, - ACTIONS(1763), 1, - anon_sym_assert, - STATE(504), 1, - sym__assignment, - STATE(837), 1, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1741), 1, + anon_sym_if, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(888), 1, sym_identifier, - STATE(901), 1, + STATE(912), 1, sym_string, - STATE(1075), 1, + STATE(925), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + ACTIONS(1743), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(939), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40899,34 +40790,34 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41754] = 18, + [41580] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1749), 1, + ACTIONS(1753), 1, anon_sym_DQUOTE, ACTIONS(1755), 1, + sym_float, + ACTIONS(1759), 1, sym__decimal, - ACTIONS(1757), 1, + ACTIONS(1761), 1, sym__name, - ACTIONS(1759), 1, + ACTIONS(1763), 1, sym__upname, - ACTIONS(1765), 1, - sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, STATE(764), 1, + sym__case_clause_tuple_access, + STATE(766), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -40934,11 +40825,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1753), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, - STATE(797), 10, + STATE(781), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40949,52 +40840,52 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [41822] = 21, + [41648] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1767), 1, + ACTIONS(1765), 1, anon_sym_assert, - STATE(698), 1, + STATE(486), 1, sym__assignment, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1139), 1, + STATE(1075), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41002,52 +40893,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41896] = 21, + [41722] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(600), 1, + sym__upname, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1769), 1, - anon_sym_GT_GT, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1121), 1, + STATE(1085), 1, sym__pattern, - STATE(1311), 1, - sym_pattern_bit_string_segment, + STATE(1122), 1, + sym_record_pattern_argument, + STATE(1329), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41055,185 +40946,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41970] = 21, + [41796] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - ACTIONS(1771), 1, - anon_sym_GT_GT, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1121), 1, - sym__pattern, - STATE(1124), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [42044] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(624), 1, - sym__name, - ACTIONS(626), 1, - sym__upname, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1083), 1, - sym__pattern, - STATE(1103), 1, - sym_record_pattern_argument, - STATE(1328), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [42118] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1773), 5, + ACTIONS(1767), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_DOT_DOT, - [42176] = 18, + [41854] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1749), 1, + ACTIONS(1753), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1759), 1, sym__decimal, - ACTIONS(1757), 1, + ACTIONS(1761), 1, sym__name, - ACTIONS(1759), 1, + ACTIONS(1763), 1, sym__upname, - ACTIONS(1775), 1, + ACTIONS(1769), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, STATE(764), 1, + sym__case_clause_tuple_access, + STATE(766), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41241,11 +41026,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1753), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, - STATE(779), 10, + STATE(805), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41256,34 +41041,34 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42244] = 18, + [41922] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1749), 1, + ACTIONS(1753), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1759), 1, sym__decimal, - ACTIONS(1757), 1, + ACTIONS(1761), 1, sym__name, - ACTIONS(1759), 1, + ACTIONS(1763), 1, sym__upname, - ACTIONS(1777), 1, + ACTIONS(1771), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, STATE(764), 1, + sym__case_clause_tuple_access, + STATE(766), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41291,11 +41076,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1753), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, - STATE(807), 10, + STATE(800), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41306,34 +41091,34 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42312] = 18, + [41990] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1199), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1749), 1, + ACTIONS(1753), 1, anon_sym_DQUOTE, - ACTIONS(1755), 1, + ACTIONS(1759), 1, sym__decimal, - ACTIONS(1757), 1, + ACTIONS(1761), 1, sym__name, - ACTIONS(1759), 1, + ACTIONS(1763), 1, sym__upname, - ACTIONS(1779), 1, + ACTIONS(1773), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, STATE(764), 1, + sym__case_clause_tuple_access, + STATE(766), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41341,7 +41126,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1753), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, @@ -41356,52 +41141,52 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42380] = 21, + [42058] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1781), 1, + ACTIONS(1775), 1, anon_sym_GT_GT, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1121), 1, + STATE(1127), 1, sym__pattern, - STATE(1311), 1, + STATE(1128), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41409,34 +41194,190 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42454] = 18, + [42132] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1715), 1, + sym_float, + ACTIONS(1777), 1, + anon_sym_LT_DASH, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, + sym_identifier, + STATE(912), 1, + sym_string, + STATE(1029), 1, + sym__pattern, + STATE(1315), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1197), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(953), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [42206] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1779), 1, + anon_sym_assert, + STATE(701), 1, + sym__assignment, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(1140), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [42280] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, ACTIONS(1745), 1, + anon_sym_LBRACE, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1755), 1, + sym_float, + ACTIONS(1781), 1, + anon_sym_DASH, + STATE(763), 1, + sym__case_clause_guard_binary_expression, + STATE(764), 1, + sym__case_clause_tuple_access, + STATE(771), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(781), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [42348] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1745), 1, + anon_sym_LBRACE, ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_DASH, - ACTIONS(1785), 1, + ACTIONS(1783), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, - STATE(780), 1, + STATE(764), 1, + sym__case_clause_tuple_access, + STATE(771), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41444,11 +41385,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(795), 10, + STATE(830), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41459,34 +41400,137 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42522] = 18, + [42416] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1785), 1, + anon_sym_GT_GT, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(1127), 1, + sym__pattern, + STATE(1313), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [42490] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1745), 1, + anon_sym_LBRACE, ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_DASH, ACTIONS(1787), 1, sym_float, - STATE(737), 1, + STATE(763), 1, + sym__case_clause_guard_binary_expression, + STATE(764), 1, sym__case_clause_tuple_access, - STATE(761), 1, + STATE(771), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(817), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [42558] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1745), 1, + anon_sym_LBRACE, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1753), 1, + anon_sym_DQUOTE, + ACTIONS(1759), 1, + sym__decimal, + ACTIONS(1761), 1, + sym__name, + ACTIONS(1763), 1, + sym__upname, + ACTIONS(1789), 1, + sym_float, + STATE(763), 1, sym__case_clause_guard_binary_expression, - STATE(780), 1, + STATE(764), 1, + sym__case_clause_tuple_access, + STATE(766), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41494,11 +41538,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, - STATE(791), 10, + STATE(840), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41509,34 +41553,34 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42590] = 18, + [42626] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1741), 1, + ACTIONS(1745), 1, anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_DASH, - ACTIONS(1789), 1, + ACTIONS(1791), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, + STATE(763), 1, sym__case_clause_guard_binary_expression, - STATE(780), 1, + STATE(764), 1, + sym__case_clause_tuple_access, + STATE(771), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -41544,11 +41588,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(814), 10, + STATE(793), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41559,52 +41603,425 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [42658] = 21, + [42694] = 21, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1715), 1, + sym_float, + ACTIONS(1793), 1, + anon_sym_LT_DASH, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, + sym_identifier, + STATE(912), 1, + sym_string, + STATE(1029), 1, + sym__pattern, + STATE(1315), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1197), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(953), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [42768] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1745), 1, + anon_sym_LBRACE, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1781), 1, + anon_sym_DASH, + ACTIONS(1795), 1, + sym_float, + STATE(763), 1, + sym__case_clause_guard_binary_expression, + STATE(764), 1, + sym__case_clause_tuple_access, + STATE(771), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(832), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [42836] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1797), 1, + anon_sym_GT_GT, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(1127), 1, + sym__pattern, + STATE(1313), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [42910] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1629), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1627), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [42949] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1799), 1, + anon_sym_RPAREN, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(925), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [43020] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1459), 1, + anon_sym_AMP_AMP, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, + ACTIONS(1801), 1, + anon_sym_COMMA, + ACTIONS(1803), 1, + anon_sym_RBRACK, + ACTIONS(1805), 1, + anon_sym_DOT_DOT, + STATE(1005), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1463), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1465), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [43083] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1637), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1635), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [43122] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + ACTIONS(1807), 1, + anon_sym_RPAREN, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(925), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [43193] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1737), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1791), 1, - anon_sym_LT_DASH, - STATE(837), 1, + STATE(86), 1, + sym__assignment, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(872), 1, sym_identifier, - STATE(913), 1, + STATE(878), 1, sym_string, - STATE(977), 1, + STATE(1075), 1, sym__pattern, - STATE(1312), 1, - sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(963), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41612,251 +42029,167 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42732] = 18, + [43264] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1783), 1, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1793), 1, + ACTIONS(1715), 1, sym_float, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, - sym__case_clause_guard_binary_expression, - STATE(780), 1, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, sym_identifier, + STATE(912), 1, + sym_string, + STATE(1029), 1, + sym__pattern, + STATE(1315), 1, + sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(794), 10, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, + STATE(953), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [42800] = 18, + sym_discard, + [43335] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1775), 1, - sym_float, - ACTIONS(1783), 1, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, anon_sym_DASH, - STATE(737), 1, - sym__case_clause_tuple_access, - STATE(761), 1, - sym__case_clause_guard_binary_expression, - STATE(780), 1, + ACTIONS(1290), 1, + sym_float, + STATE(382), 1, + sym__assignment, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, sym_identifier, + STATE(878), 1, + sym_string, + STATE(1088), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(779), 10, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [42868] = 4, + sym_discard, + [43406] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1609), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1607), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [42907] = 16, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1795), 1, + ACTIONS(1809), 1, anon_sym_COMMA, - ACTIONS(1797), 1, + ACTIONS(1811), 1, anon_sym_RBRACK, - ACTIONS(1799), 1, + ACTIONS(1813), 1, anon_sym_DOT_DOT, - STATE(999), 1, + STATE(989), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [42970] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - STATE(88), 1, - sym__assignment, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1075), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [43041] = 4, + [43469] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1685), 4, + ACTIONS(1633), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1683), 23, + ACTIONS(1631), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -41880,18 +42213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43080] = 4, + [43508] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1677), 4, + ACTIONS(1687), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1675), 23, + ACTIONS(1685), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -41915,167 +42248,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43119] = 16, + [43547] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1801), 1, + ACTIONS(1815), 1, anon_sym_COMMA, - ACTIONS(1803), 1, + ACTIONS(1817), 1, anon_sym_RBRACK, - ACTIONS(1805), 1, + ACTIONS(1819), 1, anon_sym_DOT_DOT, - STATE(1001), 1, + STATE(990), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [43182] = 4, + [43610] = 20, ACTIONS(3), 1, sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, + sym_float, + STATE(197), 1, + sym__assignment, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + STATE(1118), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1637), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1635), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43221] = 4, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [43681] = 20, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1195), 1, + sym_float, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, + sym_identifier, + STATE(912), 1, + sym_string, + STATE(963), 1, + sym__pattern, + STATE(1101), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1673), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1671), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43260] = 20, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1197), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(939), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [43752] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1121), 1, + STATE(1127), 1, sym__pattern, - STATE(1311), 1, + STATE(1313), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42083,88 +42448,18 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [43331] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1665), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1663), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43370] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1657), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1655), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43409] = 4, + [43823] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1597), 4, + ACTIONS(1711), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1595), 23, + ACTIONS(1709), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42188,18 +42483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43448] = 4, + [43862] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1633), 4, + ACTIONS(1683), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1631), 23, + ACTIONS(1681), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42223,18 +42518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43487] = 4, + [43901] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1601), 4, + ACTIONS(1673), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1599), 23, + ACTIONS(1671), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42258,50 +42553,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43526] = 20, + [43940] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - STATE(168), 1, + STATE(700), 1, sym__assignment, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1116), 1, + STATE(1140), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42309,101 +42604,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [43597] = 20, + [44011] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - STATE(168), 1, + STATE(509), 1, sym__assignment, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1139), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [43668] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - ACTIONS(1807), 1, - anon_sym_RPAREN, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(922), 1, + STATE(1075), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42411,69 +42655,53 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [43739] = 20, + [44082] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - STATE(699), 1, - sym__assignment, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1139), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [43810] = 4, + ACTIONS(1665), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1663), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [44121] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1553), 4, + ACTIONS(1595), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1551), 23, + ACTIONS(1593), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42497,18 +42725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43849] = 4, + [44160] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1605), 4, + ACTIONS(1599), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1603), 23, + ACTIONS(1597), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42532,18 +42760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43888] = 4, + [44199] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1593), 4, + ACTIONS(1621), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1591), 23, + ACTIONS(1619), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42567,18 +42795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43927] = 4, + [44238] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1613), 4, + ACTIONS(1657), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1611), 23, + ACTIONS(1655), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42602,7 +42830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43966] = 4, + [44277] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -42637,203 +42865,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [44005] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1737), 1, - sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(977), 1, - sym__pattern, - STATE(1312), 1, - sym_use_assignment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(963), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44076] = 20, + [44316] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - STATE(544), 1, - sym__assignment, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1075), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44147] = 20, + ACTIONS(1703), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1701), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [44355] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1203), 1, - sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(967), 1, - sym__pattern, - STATE(1112), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1205), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44218] = 20, + ACTIONS(1641), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1639), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [44394] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1809), 1, - anon_sym_RPAREN, - STATE(837), 1, + STATE(197), 1, + sym__assignment, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(922), 1, + STATE(1140), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42841,18 +42986,18 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [44289] = 4, + [44465] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1645), 4, + ACTIONS(1669), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1643), 23, + ACTIONS(1667), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42876,18 +43021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [44328] = 4, + [44504] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1641), 4, + ACTIONS(1607), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1639), 23, + ACTIONS(1605), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -42911,97 +43056,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [44367] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, - ACTIONS(1811), 1, - anon_sym_COMMA, - ACTIONS(1813), 1, - anon_sym_RBRACK, - ACTIONS(1815), 1, - anon_sym_DOT_DOT, - STATE(972), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1465), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1467), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [44430] = 20, + [44543] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - STATE(382), 1, + STATE(489), 1, sym__assignment, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1087), 1, + STATE(1118), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -43009,101 +43107,85 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [44501] = 20, + [44614] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, - sym_float, - STATE(487), 1, - sym__assignment, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, - sym_identifier, - STATE(901), 1, - sym_string, - STATE(1116), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(618), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44572] = 20, + ACTIONS(1603), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1601), 23, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [44653] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1290), 1, sym_float, - ACTIONS(1817), 1, + ACTIONS(1821), 1, anon_sym_RPAREN, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(872), 1, sym_identifier, - STATE(901), 1, + STATE(878), 1, sym_string, - STATE(1097), 1, + STATE(1099), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, + STATE(885), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -43111,164 +43193,81 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [44643] = 4, + [44724] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1669), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1667), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44682] = 16, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1819), 1, + ACTIONS(1823), 1, anon_sym_COMMA, - ACTIONS(1821), 1, + ACTIONS(1825), 1, anon_sym_RBRACK, - ACTIONS(1823), 1, + ACTIONS(1827), 1, anon_sym_DOT_DOT, - STATE(1015), 1, + STATE(974), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [44745] = 18, + [44787] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1825), 1, - anon_sym_RPAREN, - ACTIONS(1827), 1, - sym_float, - STATE(945), 1, - sym_identifier, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1321), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1284), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [44811] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(624), 1, - sym__name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, - sym_float, ACTIONS(1829), 1, anon_sym_RPAREN, - STATE(945), 1, + ACTIONS(1831), 1, + sym_float, + STATE(940), 1, sym_identifier, - STATE(1245), 1, + STATE(1249), 1, sym_constant_record_argument, - STATE(1321), 1, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43276,11 +43275,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43289,34 +43288,34 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44877] = 18, + [44853] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, ACTIONS(1831), 1, - anon_sym_RPAREN, - ACTIONS(1833), 1, sym_float, - STATE(945), 1, + ACTIONS(1833), 1, + anon_sym_RPAREN, + STATE(940), 1, sym_identifier, - STATE(1293), 1, - sym_attribute_value, - STATE(1425), 1, + STATE(1249), 1, + sym_constant_record_argument, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43324,11 +43323,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43337,222 +43336,265 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44943] = 15, + [44919] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(1835), 1, anon_sym_COMMA, ACTIONS(1837), 1, anon_sym_RPAREN, - STATE(1102), 1, + STATE(1104), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [45003] = 19, + [44979] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(760), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1839), 1, + anon_sym_RPAREN, + ACTIONS(1841), 1, sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, + STATE(940), 1, sym_identifier, - STATE(901), 1, - sym_string, - STATE(1091), 1, - sym__pattern, + STATE(1286), 1, + sym_attribute_value, + STATE(1428), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1208), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [45071] = 15, + [45045] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1459), 1, + anon_sym_AMP_AMP, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, + ACTIONS(1843), 1, + anon_sym_LBRACE, + ACTIONS(1845), 1, + anon_sym_COMMA, + STATE(1117), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1463), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1465), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [45105] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1839), 1, - anon_sym_LBRACE, - ACTIONS(1841), 1, + ACTIONS(1847), 1, anon_sym_COMMA, - STATE(1118), 1, + ACTIONS(1849), 1, + anon_sym_RPAREN, + STATE(1082), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [45131] = 19, + [45165] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(314), 1, + sym__upname, + ACTIONS(598), 1, + sym__name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, - ACTIONS(1201), 1, - anon_sym_DQUOTE, - ACTIONS(1203), 1, + ACTIONS(1831), 1, sym_float, - ACTIONS(1207), 1, - sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, - sym__upname, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, + ACTIONS(1851), 1, + anon_sym_RPAREN, + STATE(940), 1, sym_identifier, - STATE(913), 1, - sym_string, - STATE(922), 1, - sym__pattern, + STATE(1249), 1, + sym_constant_record_argument, + STATE(1370), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(939), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1280), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [45199] = 18, + [45231] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1841), 1, sym_float, - ACTIONS(1843), 1, + ACTIONS(1853), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1293), 1, + STATE(1286), 1, sym_attribute_value, - STATE(1425), 1, + STATE(1428), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43560,11 +43602,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, + STATE(1208), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43573,173 +43615,172 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45265] = 15, + [45297] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1845), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - ACTIONS(1847), 1, + ACTIONS(1857), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1169), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [45325] = 19, + [45357] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(760), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1193), 1, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1254), 1, + ACTIONS(1841), 1, sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(869), 1, + ACTIONS(1859), 1, + anon_sym_RPAREN, + STATE(940), 1, sym_identifier, - STATE(901), 1, - sym_string, - STATE(922), 1, - sym__pattern, + STATE(1286), 1, + sym_attribute_value, + STATE(1428), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(888), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1208), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [45393] = 15, + [45423] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1849), 1, + ACTIONS(1861), 1, anon_sym_COMMA, - ACTIONS(1851), 1, + ACTIONS(1863), 1, anon_sym_RPAREN, - STATE(1080), 1, + STATE(1175), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [45453] = 18, + [45483] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1831), 1, sym_float, - ACTIONS(1853), 1, + ACTIONS(1865), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1157), 1, + STATE(1161), 1, sym_constant_record_argument, - STATE(1321), 1, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43747,11 +43788,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43760,82 +43801,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45519] = 18, + [45549] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(760), 1, sym__name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, sym_float, - ACTIONS(1855), 1, - anon_sym_RPAREN, - STATE(945), 1, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, sym_identifier, - STATE(1293), 1, - sym_attribute_value, - STATE(1425), 1, - sym_label, + STATE(878), 1, + sym_string, + STATE(1091), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [45585] = 18, + sym_discard, + [45617] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1831), 1, sym_float, - ACTIONS(1857), 1, + ACTIONS(1867), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1245), 1, + STATE(1249), 1, sym_constant_record_argument, - STATE(1321), 1, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43843,11 +43885,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43856,82 +43898,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45651] = 18, + [45683] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(624), 1, - sym__name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1191), 1, + anon_sym_DASH, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1195), 1, sym_float, - ACTIONS(1859), 1, - anon_sym_RPAREN, - STATE(945), 1, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(888), 1, sym_identifier, - STATE(1245), 1, - sym_constant_record_argument, - STATE(1321), 1, - sym_label, + STATE(912), 1, + sym_string, + STATE(925), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(939), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [45717] = 18, + sym_discard, + [45751] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1831), 1, sym_float, - ACTIONS(1861), 1, + ACTIONS(1869), 1, anon_sym_RPAREN, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1245), 1, + STATE(1116), 1, sym_constant_record_argument, - STATE(1321), 1, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -43939,11 +43982,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43952,137 +43995,95 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45783] = 18, + [45817] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(760), 1, sym__name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1290), 1, sym_float, - ACTIONS(1863), 1, - anon_sym_RPAREN, - STATE(945), 1, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, sym_identifier, - STATE(1293), 1, - sym_attribute_value, - STATE(1425), 1, - sym_label, + STATE(878), 1, + sym_string, + STATE(925), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, + STATE(885), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [45849] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(1173), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1465), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1467), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [45909] = 17, + sym_discard, + [45885] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(598), 1, + sym__name, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1869), 1, - anon_sym_GT_GT, - ACTIONS(1871), 1, + ACTIONS(1841), 1, sym_float, - STATE(945), 1, + ACTIONS(1871), 1, + anon_sym_RPAREN, + STATE(940), 1, sym_identifier, - STATE(1313), 1, - sym_constant_bit_string_segment, + STATE(1286), 1, + sym_attribute_value, + STATE(1428), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1208), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44091,32 +44092,32 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45972] = 17, + [45951] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1871), 1, - sym_float, ACTIONS(1873), 1, anon_sym_GT_GT, - STATE(945), 1, + ACTIONS(1875), 1, + sym_float, + STATE(940), 1, sym_identifier, - STATE(1313), 1, + STATE(1069), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, @@ -44124,11 +44125,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44137,86 +44138,86 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46035] = 13, + [46014] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1875), 2, + ACTIONS(1877), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [46090] = 17, + [46069] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(598), 1, + sym__name, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1871), 1, + ACTIONS(1841), 1, sym_float, - ACTIONS(1877), 1, - anon_sym_GT_GT, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1180), 1, - sym_constant_bit_string_segment, + STATE(1165), 1, + sym_attribute_value, + STATE(1428), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1208), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44225,44 +44226,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46153] = 17, + [46132] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(624), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1875), 1, sym_float, - STATE(945), 1, + ACTIONS(1879), 1, + anon_sym_GT_GT, + STATE(940), 1, sym_identifier, - STATE(1245), 1, - sym_constant_record_argument, - STATE(1321), 1, - sym_label, + STATE(1311), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44271,79 +44272,78 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46216] = 18, + [46195] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, - anon_sym_POUND, - ACTIONS(1195), 1, - anon_sym_LBRACK, - ACTIONS(1197), 1, - anon_sym_LT_LT, - ACTIONS(1201), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(1207), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1213), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(598), 1, + sym__name, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1879), 1, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1841), 1, sym_float, - STATE(837), 1, - sym__pattern_binary_expression, - STATE(897), 1, + STATE(940), 1, sym_identifier, - STATE(913), 1, - sym_string, + STATE(1286), 1, + sym_attribute_value, + STATE(1428), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1208), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym_discard, - [46281] = 17, + [46258] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1841), 1, sym_float, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1293), 1, + STATE(1170), 1, sym_attribute_value, - STATE(1425), 1, + STATE(1428), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -44351,11 +44351,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, + STATE(1208), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44364,32 +44364,32 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46344] = 17, + [46321] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1871), 1, + ACTIONS(1875), 1, sym_float, ACTIONS(1881), 1, anon_sym_GT_GT, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1067), 1, + STATE(1311), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, @@ -44397,11 +44397,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44410,44 +44410,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46407] = 17, + [46384] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(624), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1875), 1, sym_float, - STATE(945), 1, + ACTIONS(1883), 1, + anon_sym_GT_GT, + STATE(940), 1, sym_identifier, - STATE(1162), 1, - sym_attribute_value, - STATE(1425), 1, - sym_label, + STATE(1311), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44456,32 +44456,32 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46470] = 17, + [46447] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1871), 1, + ACTIONS(1875), 1, sym_float, - ACTIONS(1883), 1, + ACTIONS(1885), 1, anon_sym_GT_GT, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1313), 1, + STATE(1311), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, @@ -44489,11 +44489,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44502,32 +44502,32 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46533] = 17, + [46510] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1871), 1, + ACTIONS(1875), 1, sym_float, - ACTIONS(1885), 1, + ACTIONS(1887), 1, anon_sym_GT_GT, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1313), 1, + STATE(1183), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, @@ -44535,11 +44535,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1068), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44548,32 +44548,32 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46596] = 17, + [46573] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(624), 1, + ACTIONS(598), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, + ACTIONS(1831), 1, sym_float, - STATE(945), 1, + STATE(940), 1, sym_identifier, - STATE(1169), 1, - sym_attribute_value, - STATE(1425), 1, + STATE(1249), 1, + sym_constant_record_argument, + STATE(1370), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, @@ -44581,11 +44581,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1206), 8, + STATE(1280), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44594,46 +44594,135 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46659] = 18, + [46636] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1193), 1, + ACTIONS(1457), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1459), 1, + anon_sym_AMP_AMP, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1889), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1463), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1465), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [46691] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(600), 1, + sym__upname, + ACTIONS(760), 1, + sym__name, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1199), 1, - anon_sym_DASH, ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1891), 1, + sym_float, + STATE(828), 1, + sym__pattern_binary_expression, + STATE(872), 1, + sym_identifier, + STATE(878), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(722), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(809), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46756] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1185), 1, + anon_sym_POUND, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(1189), 1, + anon_sym_LT_LT, + ACTIONS(1193), 1, anon_sym_DQUOTE, - ACTIONS(1207), 1, + ACTIONS(1199), 1, sym__decimal, - ACTIONS(1209), 1, + ACTIONS(1201), 1, sym__discard_name, - ACTIONS(1211), 1, + ACTIONS(1203), 1, sym__name, - ACTIONS(1213), 1, + ACTIONS(1205), 1, sym__upname, - ACTIONS(1879), 1, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1891), 1, sym_float, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(897), 1, + STATE(888), 1, sym_identifier, - STATE(913), 1, + STATE(912), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1205), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 7, + STATE(809), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -44641,88 +44730,88 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [46724] = 13, + [46821] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1887), 2, + ACTIONS(1893), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [46779] = 18, + [46876] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, - sym__name, - ACTIONS(1193), 1, + ACTIONS(1185), 1, anon_sym_POUND, - ACTIONS(1195), 1, + ACTIONS(1187), 1, anon_sym_LBRACK, - ACTIONS(1197), 1, + ACTIONS(1189), 1, anon_sym_LT_LT, - ACTIONS(1209), 1, - sym__discard_name, - ACTIONS(1250), 1, + ACTIONS(1191), 1, anon_sym_DASH, - ACTIONS(1879), 1, + ACTIONS(1193), 1, + anon_sym_DQUOTE, + ACTIONS(1199), 1, + sym__decimal, + ACTIONS(1201), 1, + sym__discard_name, + ACTIONS(1203), 1, + sym__name, + ACTIONS(1205), 1, + sym__upname, + ACTIONS(1891), 1, sym_float, - STATE(837), 1, + STATE(828), 1, sym__pattern_binary_expression, - STATE(869), 1, + STATE(888), 1, sym_identifier, - STATE(901), 1, + STATE(912), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(724), 2, + STATE(722), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 7, + STATE(809), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -44730,236 +44819,411 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [46844] = 13, + [46941] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1895), 1, + anon_sym_RPAREN, + ACTIONS(1897), 1, + sym_float, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1106), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47001] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, + ACTIONS(1899), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1889), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [46899] = 13, + [47055] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1891), 1, + ACTIONS(1901), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [46953] = 13, + [47109] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1903), 1, + anon_sym_RPAREN, + ACTIONS(1905), 1, + sym_float, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1081), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47169] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1893), 1, + ACTIONS(1907), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47007] = 13, + [47223] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1905), 1, + sym_float, + ACTIONS(1909), 1, + anon_sym_RBRACK, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1081), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47283] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1895), 1, - anon_sym_RBRACK, + ACTIONS(1911), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47061] = 13, + [47337] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1897), 1, + ACTIONS(1913), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47115] = 16, + [47391] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1905), 1, + sym_float, + ACTIONS(1915), 1, + anon_sym_RBRACK, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1081), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47451] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, - anon_sym_RPAREN, - ACTIONS(1901), 1, + ACTIONS(1917), 1, + anon_sym_RBRACK, + ACTIONS(1919), 1, sym_float, - STATE(945), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -44967,11 +45231,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1071), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44980,71 +45244,156 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47175] = 13, + [47511] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1903), 1, + ACTIONS(1921), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47229] = 16, + [47565] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, + ACTIONS(1905), 1, sym_float, + ACTIONS(1923), 1, + anon_sym_RPAREN, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1081), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47625] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1459), 1, + anon_sym_AMP_AMP, + ACTIONS(1467), 1, + anon_sym_PIPE_GT, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1453), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1461), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1469), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1463), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1465), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1471), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [47679] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, ACTIONS(1905), 1, + sym_float, + ACTIONS(1927), 1, anon_sym_RBRACK, - STATE(945), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45052,11 +45401,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1081), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45065,83 +45414,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47289] = 13, + [47739] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1907), 1, + ACTIONS(1929), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47343] = 16, + [47793] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1909), 1, - anon_sym_RBRACK, - ACTIONS(1911), 1, + ACTIONS(1875), 1, sym_float, - STATE(945), 1, + STATE(940), 1, sym_identifier, + STATE(1311), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1179), 8, + STATE(1070), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45150,112 +45499,156 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47403] = 13, + [47853] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1913), 1, - anon_sym_COMMA, + ACTIONS(1931), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47457] = 13, + [47907] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(312), 1, + sym__name, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, + anon_sym_POUND, + ACTIONS(1749), 1, + anon_sym_LBRACK, + ACTIONS(1751), 1, + anon_sym_LT_LT, + ACTIONS(1905), 1, + sym_float, + ACTIONS(1933), 1, + anon_sym_RPAREN, + STATE(940), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(557), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1081), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [47967] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1915), 1, + ACTIONS(1935), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47511] = 16, + [48021] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, - sym_float, - ACTIONS(1917), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, - STATE(945), 1, + ACTIONS(1939), 1, + sym_float, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45263,11 +45656,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1166), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45276,30 +45669,30 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47571] = 16, + [48081] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, + ACTIONS(1941), 1, + anon_sym_RBRACK, + ACTIONS(1943), 1, sym_float, - ACTIONS(1919), 1, - anon_sym_RPAREN, - STATE(945), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45307,11 +45700,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1182), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45320,30 +45713,30 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47631] = 16, + [48141] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, + ACTIONS(1905), 1, sym_float, - ACTIONS(1921), 1, + ACTIONS(1945), 1, anon_sym_RBRACK, - STATE(945), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45351,11 +45744,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1081), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45364,156 +45757,112 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47691] = 13, + [48201] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1923), 1, - anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47745] = 13, + [48255] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1925), 1, - anon_sym_COMMA, + ACTIONS(1949), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [47799] = 16, + [48309] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1871), 1, - sym_float, - STATE(945), 1, - sym_identifier, - STATE(1313), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1068), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [47859] = 16, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1927), 1, - anon_sym_RPAREN, - ACTIONS(1929), 1, + ACTIONS(1905), 1, sym_float, - STATE(945), 1, + ACTIONS(1951), 1, + anon_sym_RPAREN, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45521,11 +45870,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1161), 8, + STATE(1081), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45534,547 +45883,245 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47919] = 13, + [48369] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, - ACTIONS(1931), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1465), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1467), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [47973] = 13, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1933), 1, - anon_sym_RBRACK, + ACTIONS(1953), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1463), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1465), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1467), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - [48027] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, - anon_sym_PIPE_GT, - ACTIONS(1935), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, ACTIONS(1455), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48081] = 13, + [48423] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1937), 1, + ACTIONS(1955), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48135] = 13, + [48477] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1939), 1, + ACTIONS(1957), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48189] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1901), 1, - sym_float, - ACTIONS(1941), 1, - anon_sym_RBRACK, - STATE(945), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1082), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [48249] = 13, + [48531] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1943), 1, - anon_sym_RBRACK, + ACTIONS(1959), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48303] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1901), 1, - sym_float, - ACTIONS(1945), 1, - anon_sym_RBRACK, - STATE(945), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1082), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [48363] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1947), 1, - anon_sym_RBRACK, - ACTIONS(1949), 1, - sym_float, - STATE(945), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1069), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [48423] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1951), 1, - anon_sym_RPAREN, - ACTIONS(1953), 1, - sym_float, - STATE(945), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1095), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [48483] = 13, + [48585] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1457), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1467), 1, anon_sym_PIPE_GT, - ACTIONS(1955), 1, + ACTIONS(1961), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1453), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1455), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1461), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1469), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1463), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1465), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + ACTIONS(1471), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48537] = 16, + [48639] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1963), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1967), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, - sym_float, - ACTIONS(1957), 1, - anon_sym_RPAREN, - STATE(945), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1082), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, - sym_string, - sym_integer, - [48597] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1250), 1, + ACTIONS(1969), 1, anon_sym_DASH, - ACTIONS(1743), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_LT_LT, - ACTIONS(1959), 1, + ACTIONS(1971), 1, sym_float, - STATE(945), 1, + STATE(416), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(405), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(1286), 8, + STATE(548), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46083,7 +46130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48654] = 15, + [48696] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(51), 1, @@ -46094,17 +46141,17 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1961), 1, - anon_sym_POUND, ACTIONS(1963), 1, - anon_sym_LBRACK, + anon_sym_POUND, ACTIONS(1965), 1, - anon_sym_LT_LT, + anon_sym_LBRACK, ACTIONS(1967), 1, - anon_sym_DASH, + anon_sym_LT_LT, ACTIONS(1969), 1, + anon_sym_DASH, + ACTIONS(1973), 1, sym_float, - STATE(426), 1, + STATE(416), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46116,7 +46163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - STATE(481), 8, + STATE(500), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46125,28 +46172,28 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48711] = 15, + [48753] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1971), 1, + ACTIONS(1975), 1, sym_float, - STATE(873), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46154,11 +46201,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(904), 8, + STATE(1282), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46167,28 +46214,28 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48768] = 15, + [48810] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, ACTIONS(760), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1973), 1, + ACTIONS(1977), 1, sym_float, - STATE(873), 1, + STATE(866), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46196,11 +46243,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 8, + STATE(889), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46209,40 +46256,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48825] = 15, + [48867] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1250), 1, - anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1963), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1965), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1967), 1, anon_sym_LT_LT, - ACTIONS(1975), 1, + ACTIONS(1969), 1, + anon_sym_DASH, + ACTIONS(1979), 1, sym_float, - STATE(873), 1, + STATE(416), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(405), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(887), 8, + STATE(507), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46251,40 +46298,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48882] = 15, + [48924] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1961), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1965), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1967), 1, - anon_sym_DASH, - ACTIONS(1977), 1, + ACTIONS(1981), 1, sym_float, - STATE(426), 1, + STATE(866), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(523), 8, + STATE(904), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46293,28 +46340,28 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48939] = 15, + [48981] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1901), 1, + ACTIONS(1983), 1, sym_float, - STATE(945), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46322,11 +46369,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(1082), 8, + STATE(1264), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46335,28 +46382,28 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48996] = 15, + [49038] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(318), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1250), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1979), 1, + ACTIONS(1985), 1, sym_float, - STATE(945), 1, + STATE(866), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46364,11 +46411,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(316), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(1297), 8, + STATE(897), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46377,40 +46424,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49053] = 15, + [49095] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, + ACTIONS(588), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(1961), 1, + ACTIONS(760), 1, + sym__name, + ACTIONS(1286), 1, + anon_sym_DASH, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1965), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1967), 1, - anon_sym_DASH, - ACTIONS(1981), 1, + ACTIONS(1987), 1, sym_float, - STATE(426), 1, + STATE(866), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - STATE(511), 8, + STATE(877), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46419,28 +46466,28 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49110] = 15, + [49152] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(626), 1, - sym__upname, - ACTIONS(760), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(1250), 1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(1286), 1, anon_sym_DASH, - ACTIONS(1743), 1, + ACTIONS(1747), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1749), 1, anon_sym_LBRACK, - ACTIONS(1747), 1, + ACTIONS(1751), 1, anon_sym_LT_LT, - ACTIONS(1983), 1, + ACTIONS(1905), 1, sym_float, - STATE(873), 1, + STATE(940), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46448,11 +46495,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(878), 8, + STATE(1081), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46461,7 +46508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49167] = 15, + [49209] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(51), 1, @@ -46472,17 +46519,17 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1961), 1, - anon_sym_POUND, ACTIONS(1963), 1, - anon_sym_LBRACK, + anon_sym_POUND, ACTIONS(1965), 1, - anon_sym_LT_LT, + anon_sym_LBRACK, ACTIONS(1967), 1, + anon_sym_LT_LT, + ACTIONS(1969), 1, anon_sym_DASH, - ACTIONS(1985), 1, + ACTIONS(1989), 1, sym_float, - STATE(426), 1, + STATE(416), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -46494,7 +46541,7 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - STATE(500), 8, + STATE(511), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46503,13 +46550,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49224] = 4, + [49266] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1525), 22, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [49298] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1445), 10, + ACTIONS(1431), 10, anon_sym_DASH, anon_sym_fn, anon_sym_todo, @@ -46520,7 +46596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1443), 12, + ACTIONS(1429), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46533,15 +46609,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49258] = 4, + [49332] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(326), 1, + ACTIONS(384), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(324), 21, + ACTIONS(382), 21, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, @@ -46563,13 +46639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [49292] = 4, + [49366] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1569), 10, + ACTIONS(1575), 10, anon_sym_DASH, anon_sym_fn, anon_sym_todo, @@ -46580,7 +46656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1567), 12, + ACTIONS(1573), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46593,13 +46669,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49326] = 4, + [49400] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1681), 10, + ACTIONS(1519), 10, anon_sym_DASH, anon_sym_fn, anon_sym_todo, @@ -46610,7 +46686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1679), 12, + ACTIONS(1517), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46623,26 +46699,26 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49360] = 12, + [49434] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1987), 1, + ACTIONS(1991), 1, anon_sym_RBRACE, - ACTIONS(1989), 1, + ACTIONS(1993), 1, anon_sym_AT, - ACTIONS(1991), 1, + ACTIONS(1996), 1, anon_sym_import, - ACTIONS(1993), 1, + ACTIONS(1999), 1, anon_sym_type, - ACTIONS(1995), 1, + ACTIONS(2002), 1, anon_sym_const, - ACTIONS(1997), 1, + ACTIONS(2005), 1, anon_sym_fn, - ACTIONS(1999), 1, + ACTIONS(2008), 1, anon_sym_external, - ACTIONS(2001), 1, + ACTIONS(2011), 1, sym_visibility_modifier, - ACTIONS(2003), 1, + ACTIONS(2014), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, @@ -46658,31 +46734,31 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49407] = 12, + [49481] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1989), 1, + ACTIONS(2017), 1, + anon_sym_RBRACE, + ACTIONS(2019), 1, anon_sym_AT, - ACTIONS(1991), 1, + ACTIONS(2021), 1, anon_sym_import, - ACTIONS(1993), 1, + ACTIONS(2023), 1, anon_sym_type, - ACTIONS(1995), 1, + ACTIONS(2025), 1, anon_sym_const, - ACTIONS(1997), 1, + ACTIONS(2027), 1, anon_sym_fn, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_external, - ACTIONS(2001), 1, + ACTIONS(2031), 1, sym_visibility_modifier, - ACTIONS(2003), 1, + ACTIONS(2033), 1, sym_opacity_modifier, - ACTIONS(2005), 1, - anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(700), 10, + STATE(704), 10, sym__module_statement, sym_attribute, sym_import, @@ -46693,27 +46769,27 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49454] = 12, + [49528] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2009), 1, + ACTIONS(2019), 1, anon_sym_AT, - ACTIONS(2012), 1, + ACTIONS(2021), 1, anon_sym_import, - ACTIONS(2015), 1, + ACTIONS(2023), 1, anon_sym_type, - ACTIONS(2018), 1, + ACTIONS(2025), 1, anon_sym_const, - ACTIONS(2021), 1, + ACTIONS(2027), 1, anon_sym_fn, - ACTIONS(2024), 1, + ACTIONS(2029), 1, anon_sym_external, - ACTIONS(2027), 1, + ACTIONS(2031), 1, sym_visibility_modifier, - ACTIONS(2030), 1, + ACTIONS(2033), 1, sym_opacity_modifier, + ACTIONS(2035), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -46728,19 +46804,19 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49501] = 4, + [49575] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 5, + ACTIONS(384), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(324), 13, + ACTIONS(382), 13, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -46754,342 +46830,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_LT_GT, - [49531] = 13, + [49605] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2033), 1, + ACTIONS(2037), 1, anon_sym_RPAREN, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2043), 1, sym__discard_name, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - STATE(1289), 1, + STATE(1269), 1, sym_data_constructor_argument, - STATE(1383), 1, - sym_label, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, + STATE(1412), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1255), 6, + STATE(1236), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49578] = 13, + [49652] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2043), 1, sym__discard_name, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2045), 1, + ACTIONS(2049), 1, anon_sym_RPAREN, - STATE(1289), 1, + STATE(1269), 1, sym_data_constructor_argument, - STATE(1383), 1, - sym_label, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, + STATE(1412), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1255), 6, + STATE(1236), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49625] = 13, + [49699] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2043), 1, sym__discard_name, - ACTIONS(2041), 1, + ACTIONS(2045), 1, sym__name, - ACTIONS(2043), 1, - sym__upname, ACTIONS(2047), 1, + sym__upname, + ACTIONS(2051), 1, anon_sym_RPAREN, - STATE(1125), 1, + STATE(1141), 1, sym_data_constructor_argument, - STATE(1383), 1, - sym_label, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, + STATE(1412), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1255), 6, + STATE(1236), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49672] = 12, + [49746] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2049), 1, + ACTIONS(2053), 1, anon_sym_RPAREN, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1153), 1, + STATE(1176), 1, sym_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1224), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49716] = 12, + [49790] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2053), 1, + ACTIONS(2057), 1, anon_sym_RPAREN, - STATE(1203), 1, + STATE(1253), 1, sym_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1224), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49760] = 12, + [49834] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, - sym__name, ACTIONS(2055), 1, + sym__name, + ACTIONS(2059), 1, anon_sym_RPAREN, - STATE(1298), 1, + STATE(1134), 1, sym_external_function_parameter, - STATE(1303), 1, + STATE(1300), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1198), 6, + STATE(1285), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49804] = 12, + [49878] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2057), 1, + ACTIONS(2061), 1, anon_sym_RPAREN, - STATE(1203), 1, + STATE(1155), 1, sym_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1224), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49848] = 12, + [49922] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, ACTIONS(2039), 1, - sym__discard_name, + anon_sym_POUND, ACTIONS(2041), 1, - sym__name, + anon_sym_fn, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - STATE(1289), 1, - sym_data_constructor_argument, - STATE(1383), 1, - sym_label, - STATE(1389), 1, + ACTIONS(2055), 1, + sym__name, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(1215), 1, + sym_external_function_parameter, + STATE(1300), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1255), 6, + STATE(1285), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49892] = 12, + [49966] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2059), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - STATE(1033), 1, - sym_external_function_parameter, - STATE(1303), 1, + STATE(1253), 1, + sym_type_argument, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1198), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49936] = 12, + [50010] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2061), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, - STATE(1150), 1, + STATE(1253), 1, sym_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1224), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49980] = 4, + [50054] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 2, + ACTIONS(374), 2, anon_sym_COLON, anon_sym_DOT, - ACTIONS(1256), 14, + ACTIONS(1270), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -47104,12 +47180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [50008] = 5, + [50082] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2063), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - STATE(774), 1, + STATE(775), 1, sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -47127,259 +47203,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_external, anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [50038] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_type_argument, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1224), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50082] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - ACTIONS(2067), 1, - anon_sym_RPAREN, - STATE(1298), 1, - sym_external_function_parameter, - STATE(1303), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1198), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50126] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1187), 16, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [50152] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - ACTIONS(2069), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_type_argument, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1224), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50196] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2071), 1, - anon_sym_RPAREN, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - STATE(1275), 1, - sym_constant_type_argument, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1200), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [50239] = 11, + sym_visibility_modifier, + sym_opacity_modifier, + [50112] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, + sym__discard_name, + ACTIONS(2045), 1, sym__name, - ACTIONS(2077), 1, - anon_sym_RPAREN, - STATE(1389), 1, + ACTIONS(2047), 1, + sym__upname, + STATE(1269), 1, + sym_data_constructor_argument, + STATE(1392), 1, sym_identifier, + STATE(1412), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1236), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50280] = 11, + [50156] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1215), 16, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [50182] = 12, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(2039), 1, - sym__discard_name, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2079), 1, + ACTIONS(2071), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1215), 1, + sym_external_function_parameter, + STATE(1300), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1140), 6, + STATE(1285), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50321] = 11, + [50226] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2081), 1, + ACTIONS(2073), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1253), 1, + sym_type_argument, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50362] = 5, + [50270] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2085), 1, + ACTIONS(2077), 1, anon_sym_LPAREN, - STATE(793), 1, + STATE(794), 1, sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2083), 13, + ACTIONS(2075), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -47393,7 +47348,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50391] = 3, + [50299] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2079), 1, + anon_sym_RPAREN, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + STATE(1279), 1, + sym_constant_type_argument, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(964), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1223), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [50342] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -47415,350 +47401,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [50416] = 11, + [50367] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2087), 1, + ACTIONS(2085), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1301), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50457] = 11, + [50408] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2089), 1, + ACTIONS(2087), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1301), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50498] = 11, + [50449] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2091), 1, + ACTIONS(2089), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1151), 6, + STATE(1301), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50539] = 11, + [50490] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1301), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50580] = 11, + [50531] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(312), 1, + sym__name, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2083), 1, anon_sym_fn, + ACTIONS(2093), 1, + anon_sym_RPAREN, + STATE(1279), 1, + sym_constant_type_argument, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(964), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1223), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [50574] = 11, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(2039), 1, - sym__discard_name, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, ACTIONS(2095), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50621] = 12, + [50615] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2041), 1, anon_sym_fn, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, ACTIONS(2097), 1, anon_sym_RPAREN, - STATE(1168), 1, - sym_constant_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1200), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1168), 6, + sym__type, sym_type_hole, - [50664] = 11, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50656] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1298), 1, + STATE(1215), 1, sym_external_function_parameter, - STATE(1303), 1, + STATE(1300), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1198), 6, + STATE(1285), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50705] = 12, + [50697] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, ACTIONS(2039), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, + ACTIONS(2043), 1, sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + ACTIONS(2099), 1, + anon_sym_RPAREN, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1301), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50738] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - ACTIONS(2099), 1, + ACTIONS(2101), 1, anon_sym_RPAREN, - STATE(1275), 1, + STATE(1151), 1, sym_constant_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1200), 5, + STATE(1223), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [50748] = 11, + [50781] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2043), 1, sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + ACTIONS(2103), 1, + anon_sym_RPAREN, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1301), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50822] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2039), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1203), 1, + STATE(1253), 1, sym_type_argument, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1224), 6, + STATE(1277), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50789] = 11, + [50863] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - ACTIONS(2101), 1, + ACTIONS(2105), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1154), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50830] = 11, + [50904] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(2109), 1, + anon_sym_fn, + ACTIONS(2111), 1, sym__discard_name, + ACTIONS(2113), 1, + sym__name, + ACTIONS(2115), 1, + sym__upname, + STATE(1388), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(411), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(540), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50942] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - STATE(1275), 1, - sym_constant_type_argument, - STATE(1389), 1, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1200), 5, + STATE(1268), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [50870] = 4, + [50982] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 4, + ACTIONS(356), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2103), 10, - anon_sym_RBRACE, + ACTIONS(354), 10, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -47768,18 +47872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50896] = 4, + [51008] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(382), 4, + ACTIONS(380), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(380), 10, + ACTIONS(378), 10, anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -47790,18 +47894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50922] = 4, + [51034] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 4, + ACTIONS(376), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(376), 10, + ACTIONS(374), 10, anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -47812,7 +47916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50948] = 10, + [51060] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2107), 1, @@ -47825,12 +47929,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(2115), 1, sym__upname, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(411), 2, sym_type_identifier, sym_remote_type_identifier, STATE(501), 6, @@ -47840,7 +47944,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function_type, sym_type, sym_type_var, - [50986] = 10, + [51098] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2039), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1301), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [51136] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2107), 1, @@ -47853,12 +47985,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(2115), 1, sym__upname, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(411), 2, sym_type_identifier, sym_remote_type_identifier, STATE(492), 6, @@ -47868,121 +48000,93 @@ static const uint16_t ts_small_parse_table[] = { sym_function_type, sym_type, sym_type_var, - [51024] = 11, + [51174] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - ACTIONS(2117), 1, + ACTIONS(2119), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1174), 5, + STATE(1191), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [51064] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1229), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51102] = 11, + [51214] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - ACTIONS(2119), 1, + ACTIONS(2121), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1181), 5, + STATE(1035), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [51142] = 10, + [51254] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1367), 6, + STATE(1371), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51180] = 10, + [51292] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2107), 1, @@ -47995,50 +48099,51 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(2115), 1, sym__upname, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(411), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(459), 6, + STATE(544), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51218] = 10, + [51330] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(2109), 1, - anon_sym_fn, - ACTIONS(2111), 1, - sym__discard_name, - ACTIONS(2113), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2115), 1, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - STATE(1387), 1, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + STATE(1279), 1, + sym_constant_type_argument, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(461), 6, - sym__type, + STATE(1223), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51256] = 10, + [51370] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(2107), 1, @@ -48051,28 +48156,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(2115), 1, sym__upname, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(411), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(532), 6, + STATE(510), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51294] = 3, + [51408] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1495), 14, + ACTIONS(1477), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48087,41 +48192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51318] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1418), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51356] = 3, + [51432] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1499), 14, + ACTIONS(1481), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48136,13 +48213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51380] = 3, + [51456] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1523), 14, + ACTIONS(1497), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48157,13 +48234,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51404] = 3, + [51480] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2039), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1419), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [51518] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1531), 14, + ACTIONS(1505), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48178,69 +48283,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51428] = 10, + [51542] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2109), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2111), 1, + ACTIONS(2043), 1, sym__discard_name, - ACTIONS(2113), 1, - sym__name, - ACTIONS(2115), 1, + ACTIONS(2047), 1, sym__upname, - STATE(1387), 1, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(548), 6, + STATE(1004), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51466] = 10, + [51580] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(995), 6, + STATE(1374), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51504] = 3, + [51618] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1623), 14, + ACTIONS(1569), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48255,13 +48360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51528] = 3, + [51642] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1647), 14, + ACTIONS(1577), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48276,41 +48381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51552] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, - sym__name, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(715), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1374), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51590] = 3, + [51666] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1687), 14, + ACTIONS(1585), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48325,46 +48402,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51614] = 10, + [51690] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, + ACTIONS(312), 1, + sym__name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, - sym__name, - STATE(1389), 1, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + ACTIONS(2123), 1, + anon_sym_RPAREN, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1213), 6, - sym__type, + STATE(1268), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51652] = 4, + [51730] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2123), 4, + ACTIONS(2127), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2121), 10, + ACTIONS(2125), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -48375,48 +48453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51678] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - ACTIONS(2125), 1, - anon_sym_RPAREN, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1262), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51718] = 4, + [51756] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 4, + ACTIONS(2131), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(358), 10, - anon_sym_LPAREN, + ACTIONS(2129), 10, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -48426,20 +48475,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51744] = 5, + [51782] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2107), 1, + anon_sym_POUND, + ACTIONS(2109), 1, + anon_sym_fn, + ACTIONS(2111), 1, + sym__discard_name, + ACTIONS(2113), 1, + sym__name, + ACTIONS(2115), 1, + sym__upname, + STATE(1388), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(411), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(520), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [51820] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2127), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2132), 4, + ACTIONS(2138), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2129), 9, + ACTIONS(2135), 9, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -48449,42 +48526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51772] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - ACTIONS(2135), 1, - anon_sym_RPAREN, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1262), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51812] = 3, + [51848] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1543), 14, + ACTIONS(1533), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48499,69 +48547,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51836] = 10, + [51872] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2107), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2109), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2111), 1, sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2051), 1, + ACTIONS(2113), 1, sym__name, - STATE(1389), 1, + ACTIONS(2115), 1, + sym__upname, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(411), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(757), 6, + STATE(534), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51874] = 10, + [51910] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2109), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2111), 1, + ACTIONS(2043), 1, sym__discard_name, - ACTIONS(2113), 1, - sym__name, - ACTIONS(2115), 1, + ACTIONS(2047), 1, sym__upname, - STATE(1387), 1, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(412), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(534), 6, + STATE(760), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51912] = 3, + [51948] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1539), 14, + ACTIONS(1529), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48576,13 +48624,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51936] = 3, + [51972] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2141), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2138), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2135), 9, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52000] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1527), 14, + ACTIONS(1521), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48597,91 +48668,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51960] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2139), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2137), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [51986] = 10, + [52024] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(902), 6, + STATE(905), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52024] = 10, + [52062] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(868), 6, + STATE(863), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52062] = 3, + [52100] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1429), 14, + ACTIONS(1561), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48696,130 +48745,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [52086] = 10, + [52124] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(769), 6, + STATE(770), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52124] = 10, + [52162] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1347), 6, + STATE(1346), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52162] = 10, + [52200] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(886), 6, + STATE(903), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52200] = 10, + [52238] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(862), 6, + STATE(864), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52238] = 4, + [52276] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2143), 4, + ACTIONS(2145), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2141), 10, + ACTIONS(2143), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -48830,21 +48879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52264] = 5, + [52302] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2145), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2132), 4, + ACTIONS(2149), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2129), 9, + ACTIONS(2147), 10, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48853,41 +48901,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52292] = 10, + [52328] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1320), 6, + STATE(1321), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52330] = 3, + [52366] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1659), 14, + ACTIONS(1647), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48902,277 +48950,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [52354] = 4, + [52390] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2039), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_fn, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2149), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2147), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [52380] = 11, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1330), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [52428] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, ACTIONS(2151), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1262), 5, + STATE(1268), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [52420] = 10, + [52468] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1329), 6, + STATE(881), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52458] = 10, + [52506] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(894), 6, + STATE(1408), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52496] = 10, + [52544] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2155), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2153), 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52570] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1258), 6, + STATE(1275), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52534] = 11, + [52608] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - ACTIONS(2153), 1, + ACTIONS(2157), 1, anon_sym_RPAREN, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1262), 5, + STATE(1268), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [52574] = 10, + [52648] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2055), 1, sym__name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(717), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1407), 6, + STATE(1415), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52612] = 10, + [52686] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2035), 1, + ACTIONS(2039), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(2041), 1, anon_sym_fn, - ACTIONS(2039), 1, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2055), 1, + sym__name, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1206), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [52724] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2159), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 3, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2161), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2163), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52753] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2165), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [52776] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2167), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [52799] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2043), 1, sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + STATE(1392), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(964), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1160), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [52836] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2051), 1, - sym__name, - STATE(1389), 1, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(715), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1414), 6, - sym__type, + STATE(1403), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [52650] = 7, + [52873] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2155), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 2, - anon_sym_RBRACE, + ACTIONS(2147), 2, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(2157), 2, + ACTIONS(2171), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 4, + ACTIONS(2173), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2161), 4, + ACTIONS(2175), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52681] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2163), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [52704] = 3, + [52904] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2165), 13, + ACTIONS(2177), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49186,58 +49359,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52727] = 6, + [52927] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2171), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 3, - anon_sym_RBRACE, + ACTIONS(2147), 3, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2159), 4, + ACTIONS(2173), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2161), 4, + ACTIONS(2175), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52756] = 5, + [52956] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2159), 4, + ACTIONS(326), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2161), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2141), 5, - anon_sym_RBRACE, + ACTIONS(324), 9, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [52783] = 3, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52981] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2167), 13, + ACTIONS(2179), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49251,112 +49423,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52806] = 8, + [53004] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2169), 1, - anon_sym_DASH_GT, - ACTIONS(2171), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2177), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2179), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [52839] = 7, + ACTIONS(2179), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [53027] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2173), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 2, + ACTIONS(2181), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2177), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2179), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [52870] = 6, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [53050] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2141), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2177), 4, + ACTIONS(2173), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2179), 4, + ACTIONS(2175), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52899] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1183), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [52936] = 3, + ACTIONS(2147), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53077] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 13, + ACTIONS(2183), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49370,56 +49505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52959] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1262), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [52996] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2183), 1, - anon_sym_SLASH, - STATE(809), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1150), 11, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [53023] = 3, + [53100] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -49439,7 +49525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53046] = 3, + [53123] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -49459,13 +49545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53069] = 3, + [53146] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2189), 13, + ACTIONS(2187), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49479,29 +49565,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53092] = 5, + [53169] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_SLASH, + STATE(839), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2177), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2179), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(2141), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53119] = 3, + ACTIONS(1150), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [53196] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -49521,35 +49607,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53142] = 5, + [53219] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2183), 1, - anon_sym_SLASH, - STATE(838), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1163), 11, + ACTIONS(2193), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [53242] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2195), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1169), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53169] = 3, + [53269] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2187), 13, + ACTIONS(2197), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49563,13 +49669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53192] = 3, + [53292] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 13, + ACTIONS(2199), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49583,13 +49689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53215] = 3, + [53315] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2195), 13, + ACTIONS(2201), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49603,65 +49709,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53238] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2197), 1, - anon_sym_LPAREN, - STATE(853), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1167), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [53265] = 8, + [53338] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2155), 1, - anon_sym_AMP_AMP, - ACTIONS(2199), 1, + ACTIONS(2203), 1, anon_sym_RBRACE, - ACTIONS(2201), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, + ACTIONS(2207), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2159), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2159), 4, + ACTIONS(2161), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2161), 4, + ACTIONS(2163), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [53298] = 4, + [53371] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2209), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [53394] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 4, + ACTIONS(372), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(276), 9, + ACTIONS(370), 9, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -49671,53 +49775,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [53323] = 3, + [53419] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2203), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, + ACTIONS(668), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(666), 9, anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53346] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [53444] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2163), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, + ACTIONS(680), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(678), 9, anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53369] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [53469] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2205), 13, + ACTIONS(2211), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49731,13 +49837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53392] = 3, + [53492] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2207), 13, + ACTIONS(2213), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49751,13 +49857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53415] = 3, + [53515] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2209), 13, + ACTIONS(2193), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49771,60 +49877,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53438] = 3, + [53538] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_SLASH, + STATE(810), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1163), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53461] = 10, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [53565] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2039), 1, - sym__discard_name, ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2073), 1, + ACTIONS(2081), 1, anon_sym_POUND, - ACTIONS(2075), 1, + ACTIONS(2083), 1, anon_sym_fn, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(958), 2, + STATE(964), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1373), 5, + STATE(1047), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [53498] = 3, + [53602] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2213), 13, + ACTIONS(2215), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49838,13 +49946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53521] = 3, + [53625] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 13, + ACTIONS(2217), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49858,13 +49966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53544] = 3, + [53648] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2217), 13, + ACTIONS(2219), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49878,33 +49986,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53567] = 3, + [53671] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2207), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53590] = 3, + ACTIONS(2147), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(2159), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2161), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2163), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [53702] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2219), 13, + ACTIONS(2221), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49918,27 +50030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53613] = 3, + [53725] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2221), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53636] = 3, + ACTIONS(2161), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2163), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2147), 5, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53752] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -49958,7 +50072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53659] = 3, + [53775] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -49978,34 +50092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53682] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2039), 1, - sym__discard_name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2073), 1, - anon_sym_POUND, - ACTIONS(2075), 1, - anon_sym_fn, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(958), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1051), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [53719] = 3, + [53798] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -50025,70 +50112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53742] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(374), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(372), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [53767] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(666), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(664), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [53792] = 4, + [53821] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2043), 1, + sym__discard_name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2081), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_fn, + STATE(1392), 1, + sym_identifier, ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(646), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(644), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [53817] = 3, + sym_statement_comment, + sym_comment, + STATE(964), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1268), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [53858] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -50108,7 +50159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53840] = 3, + [53881] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -50128,12 +50179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53863] = 5, + [53904] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2233), 1, anon_sym_SLASH, - STATE(838), 1, + STATE(839), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -50150,27 +50201,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53890] = 3, + [53931] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2236), 1, + anon_sym_DASH_GT, + ACTIONS(2238), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2236), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_as, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53913] = 4, + ACTIONS(2171), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2173), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2175), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [53964] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1158), 1, @@ -50190,79 +50246,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53937] = 5, + [53988] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2238), 1, - anon_sym_LBRACE, - ACTIONS(2240), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1417), 9, + ACTIONS(1381), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53962] = 3, + [54009] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1363), 11, + ACTIONS(1355), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53983] = 13, + [54030] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, - anon_sym_RPAREN, - ACTIONS(2244), 1, - sym__discard_name, - ACTIONS(2246), 1, - sym__name, - STATE(974), 1, - sym__discard_param, - STATE(975), 1, - sym__labeled_name_param, - STATE(976), 1, - sym__name_param, - STATE(986), 1, - sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, - STATE(1111), 1, - sym_discard, - STATE(1235), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54024] = 3, + ACTIONS(1365), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [54051] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 11, + ACTIONS(1389), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50274,31 +50318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54045] = 3, + [54072] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2240), 1, + anon_sym_DOT, + ACTIONS(2242), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1325), 11, - anon_sym_LBRACE, + ACTIONS(1175), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, anon_sym_fn, - anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54066] = 3, + [54097] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1387), 11, + ACTIONS(1280), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50310,63 +50356,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54087] = 13, + [54118] = 13, ACTIONS(3), 1, sym_module_comment, ACTIONS(2244), 1, - sym__discard_name, + anon_sym_RPAREN, ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2248), 1, sym__name, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, + sym__discard_param, + STATE(980), 1, + sym__labeled_name_param, + STATE(982), 1, + sym__name_param, + STATE(1031), 1, + sym_label, + STATE(1111), 1, + sym_identifier, + STATE(1112), 1, + sym_discard, + STATE(1255), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54159] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2246), 1, + sym__discard_name, ACTIONS(2248), 1, + sym__name, + ACTIONS(2250), 1, anon_sym_RPAREN, - STATE(974), 1, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, sym__discard_param, - STATE(975), 1, + STATE(980), 1, sym__labeled_name_param, - STATE(976), 1, + STATE(982), 1, sym__name_param, - STATE(986), 1, + STATE(1031), 1, sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, + STATE(1111), 1, sym_identifier, + STATE(1112), 1, + sym_discard, + STATE(1255), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54200] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2248), 1, + sym__name, + ACTIONS(2252), 1, + anon_sym_RPAREN, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, + sym__discard_param, + STATE(980), 1, + sym__labeled_name_param, + STATE(982), 1, + sym__name_param, + STATE(1031), 1, + sym_label, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, - STATE(1235), 1, + STATE(1255), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54128] = 3, + [54241] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2248), 1, + sym__name, + ACTIONS(2254), 1, + anon_sym_RPAREN, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, + sym__discard_param, + STATE(980), 1, + sym__labeled_name_param, + STATE(982), 1, + sym__name_param, + STATE(1031), 1, + sym_label, + STATE(1111), 1, + sym_identifier, + STATE(1112), 1, + sym_discard, + STATE(1123), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1278), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [54149] = 5, + [54282] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_as, + ACTIONS(2256), 1, + anon_sym_LBRACE, + ACTIONS(2258), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1175), 9, + ACTIONS(1244), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50376,13 +50488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54174] = 3, + [54307] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1353), 11, + ACTIONS(1393), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50394,41 +50506,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54195] = 13, + [54328] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2244), 1, - sym__discard_name, ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2248), 1, sym__name, - ACTIONS(2254), 1, + ACTIONS(2260), 1, anon_sym_RPAREN, - STATE(974), 1, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, sym__discard_param, - STATE(975), 1, + STATE(980), 1, sym__labeled_name_param, - STATE(976), 1, + STATE(982), 1, sym__name_param, - STATE(986), 1, + STATE(1031), 1, sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, - STATE(1120), 1, + STATE(1179), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54236] = 3, + [54369] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1391), 11, + ACTIONS(1327), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50440,97 +50552,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54257] = 3, + [54390] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2262), 1, + anon_sym_LBRACE, + ACTIONS(2264), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1399), 11, - anon_sym_LBRACE, + ACTIONS(1373), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54278] = 13, + [54415] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2244), 1, - sym__discard_name, - ACTIONS(2246), 1, - sym__name, - ACTIONS(2256), 1, - anon_sym_RPAREN, - STATE(974), 1, - sym__discard_param, - STATE(975), 1, - sym__labeled_name_param, - STATE(976), 1, - sym__name_param, - STATE(986), 1, - sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, - STATE(1111), 1, - sym_discard, - STATE(1176), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54319] = 5, + ACTIONS(1369), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [54436] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, - anon_sym_LBRACE, - ACTIONS(2260), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1375), 9, + ACTIONS(1397), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, + anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54344] = 3, + [54457] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2266), 1, + anon_sym_LBRACE, + ACTIONS(2268), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1371), 11, - anon_sym_LBRACE, + ACTIONS(1417), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54365] = 3, + [54482] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2262), 11, + ACTIONS(2270), 11, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50542,73 +50646,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [54386] = 13, + [54503] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2244), 1, - sym__discard_name, ACTIONS(2246), 1, - sym__name, - ACTIONS(2264), 1, - anon_sym_RPAREN, - STATE(974), 1, - sym__discard_param, - STATE(975), 1, - sym__labeled_name_param, - STATE(976), 1, - sym__name_param, - STATE(986), 1, - sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, - STATE(1111), 1, - sym_discard, - STATE(1235), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54427] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2244), 1, sym__discard_name, - ACTIONS(2246), 1, + ACTIONS(2248), 1, sym__name, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_RPAREN, - STATE(974), 1, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, sym__discard_param, - STATE(975), 1, + STATE(980), 1, sym__labeled_name_param, - STATE(976), 1, + STATE(982), 1, sym__name_param, - STATE(986), 1, + STATE(1031), 1, sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, - STATE(1235), 1, + STATE(1255), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54468] = 5, + [54544] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_LBRACE, - ACTIONS(2270), 1, - anon_sym_EQ, + ACTIONS(2276), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1345), 9, + ACTIONS(1331), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50618,17 +50694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54493] = 5, + [54569] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2272), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2274), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1317), 9, + ACTIONS(1675), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50638,15 +50712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54518] = 4, + [54591] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2276), 1, + ACTIONS(2280), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1695), 9, + ACTIONS(1609), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50656,32 +50730,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54540] = 3, + [54613] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2248), 1, + sym__name, + STATE(977), 1, + sym__labeled_discard_param, + STATE(978), 1, + sym__discard_param, + STATE(980), 1, + sym__labeled_name_param, + STATE(982), 1, + sym__name_param, + STATE(1031), 1, + sym_label, + STATE(1111), 1, + sym_identifier, + STATE(1112), 1, + sym_discard, + STATE(1255), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1409), 10, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [54560] = 4, + [54651] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2278), 1, - anon_sym_as, + ACTIONS(2282), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 9, + ACTIONS(1264), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50691,61 +50774,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54582] = 10, + [54673] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1755), 1, - sym__decimal, ACTIONS(1759), 1, + sym__decimal, + ACTIONS(1763), 1, sym__upname, - ACTIONS(2280), 1, + ACTIONS(2284), 1, anon_sym_DASH, - ACTIONS(2282), 1, + ACTIONS(2286), 1, sym__name, - STATE(595), 1, + STATE(607), 1, sym_label, - STATE(763), 1, + STATE(740), 1, sym_constructor_name, - STATE(771), 1, + STATE(780), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1753), 3, + ACTIONS(1757), 3, sym__hex, sym__octal, sym__binary, - [54616] = 10, + [54707] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(594), 1, sym__decimal, - ACTIONS(626), 1, + ACTIONS(600), 1, sym__upname, - ACTIONS(2284), 1, + ACTIONS(2288), 1, anon_sym_DASH, - ACTIONS(2286), 1, + ACTIONS(2290), 1, sym__name, - STATE(318), 1, + STATE(315), 1, sym_constructor_name, - STATE(595), 1, + STATE(607), 1, sym_label, - STATE(771), 1, + STATE(780), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(592), 3, sym__hex, sym__octal, sym__binary, - [54650] = 3, + [54741] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1341), 10, + ACTIONS(1411), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50756,15 +50839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54670] = 4, + [54761] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2288), 1, - anon_sym_LBRACE, + ACTIONS(2292), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1433), 9, + ACTIONS(1274), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50774,15 +50857,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54692] = 4, + [54783] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2292), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1347), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [54803] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2296), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2290), 9, + ACTIONS(2294), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -50792,39 +50892,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [54714] = 12, + [54825] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2244), 1, - sym__discard_name, - ACTIONS(2246), 1, - sym__name, - STATE(974), 1, - sym__discard_param, - STATE(975), 1, - sym__labeled_name_param, - STATE(976), 1, - sym__name_param, - STATE(986), 1, - sym_label, - STATE(1000), 1, - sym__labeled_discard_param, - STATE(1109), 1, - sym_identifier, - STATE(1111), 1, - sym_discard, - STATE(1235), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54752] = 3, + ACTIONS(1385), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [54845] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1395), 10, + ACTIONS(1401), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50835,32 +50926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54772] = 3, + [54865] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1383), 10, + ACTIONS(1441), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54792] = 4, + [54884] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2294), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1329), 9, + ACTIONS(1513), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50870,13 +50958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54814] = 3, + [54903] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1425), 9, + ACTIONS(1581), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50886,13 +50974,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54833] = 3, + [54922] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2298), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2294), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54943] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 9, + ACTIONS(378), 9, anon_sym_if, anon_sym_LPAREN, anon_sym_COMMA, @@ -50902,29 +51007,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [54852] = 3, + [54962] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1583), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [54871] = 3, + ACTIONS(374), 9, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [54981] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1515), 9, + ACTIONS(1643), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50934,13 +51039,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54890] = 3, + [55000] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(354), 9, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [55019] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1619), 9, + ACTIONS(1549), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50950,13 +51071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54909] = 3, + [55038] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1519), 9, + ACTIONS(1244), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50966,45 +51087,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54928] = 3, + [55057] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(358), 9, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2302), 1, anon_sym_as, - anon_sym_DASH_GT, + ACTIONS(2304), 1, anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [54947] = 3, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1579), 9, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [54966] = 3, + ACTIONS(2300), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [55080] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1691), 9, + ACTIONS(1445), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51014,13 +51121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54985] = 3, + [55099] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1701), 9, + ACTIONS(1433), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51030,33 +51137,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55004] = 7, + [55118] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(318), 1, - sym__decimal, - ACTIONS(1262), 1, - anon_sym_DASH, - ACTIONS(2296), 1, - sym__name, + ACTIONS(2306), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1337), 3, - sym__pattern_bit_string_segment_argument, - sym_integer, - sym_identifier, - [55031] = 3, + ACTIONS(2294), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [55139] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1345), 9, + ACTIONS(1693), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51066,13 +51170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55050] = 3, + [55158] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1559), 9, + ACTIONS(1449), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51082,13 +51186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55069] = 3, + [55177] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1555), 9, + ACTIONS(1537), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51098,31 +51202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55088] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2300), 1, - anon_sym_as, - ACTIONS(2302), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2298), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [55111] = 3, + [55196] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1479), 9, + ACTIONS(1485), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51132,13 +51218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55130] = 3, + [55215] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1447), 9, + ACTIONS(1489), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51148,13 +51234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55149] = 3, + [55234] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1563), 9, + ACTIONS(1493), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51164,13 +51250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55168] = 3, + [55253] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1487), 9, + ACTIONS(1557), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51180,13 +51266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55187] = 3, + [55272] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1575), 9, + ACTIONS(1509), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51196,13 +51282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55206] = 3, + [55291] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1651), 9, + ACTIONS(1565), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51212,13 +51298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55225] = 3, + [55310] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1483), 9, + ACTIONS(1553), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51228,46 +51314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55244] = 3, + [55329] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 9, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [55263] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2304), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2290), 8, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [55284] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1705), 9, + ACTIONS(1623), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51277,13 +51330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55303] = 3, + [55348] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1511), 9, + ACTIONS(1589), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51293,13 +51346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55322] = 3, + [55367] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1503), 9, + ACTIONS(1705), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51309,30 +51362,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55341] = 4, + [55386] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2306), 1, - anon_sym_as, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(1254), 1, + anon_sym_DASH, + ACTIONS(2308), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2290), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [55362] = 3, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1343), 3, + sym__pattern_bit_string_segment_argument, + sym_integer, + sym_identifier, + [55413] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1439), 9, + ACTIONS(1545), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51342,13 +51398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55381] = 3, + [55432] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1491), 9, + ACTIONS(1541), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51358,13 +51414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55400] = 3, + [55451] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1587), 9, + ACTIONS(1659), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51374,13 +51430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55419] = 3, + [55470] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1535), 9, + ACTIONS(1689), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51390,13 +51446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55438] = 3, + [55489] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1475), 9, + ACTIONS(1697), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51406,13 +51462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55457] = 3, + [55508] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1571), 9, + ACTIONS(1473), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51422,13 +51478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55476] = 3, + [55527] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1507), 9, + ACTIONS(1425), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51438,13 +51494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55495] = 3, + [55546] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1547), 9, + ACTIONS(1501), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51454,88 +51510,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55514] = 10, + [55565] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2244), 1, + ACTIONS(2246), 1, sym__discard_name, - ACTIONS(2308), 1, + ACTIONS(2310), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1028), 1, sym__discard_param, - STATE(1014), 1, + STATE(1032), 1, sym__name_param, - STATE(1109), 1, - sym_identifier, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, - STATE(1238), 1, + STATE(1234), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55546] = 3, + [55597] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2312), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 8, + ACTIONS(2294), 7, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_as, anon_sym_DASH_GT, anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55564] = 10, + [55617] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2244), 1, + ACTIONS(2246), 1, sym__discard_name, - ACTIONS(2310), 1, + ACTIONS(2314), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1028), 1, sym__discard_param, - STATE(1014), 1, + STATE(1032), 1, sym__name_param, - STATE(1109), 1, - sym_identifier, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, - STATE(1238), 1, + STATE(1234), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55596] = 4, + [55649] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2312), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2290), 7, + ACTIONS(370), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_as, anon_sym_DASH_GT, anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55616] = 3, + [55667] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2316), 1, + anon_sym_RPAREN, + STATE(1028), 1, + sym__discard_param, + STATE(1032), 1, + sym__name_param, + STATE(1105), 1, + sym_anonymous_function_parameter, + STATE(1111), 1, + sym_identifier, + STATE(1112), 1, + sym_discard, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [55699] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 8, + ACTIONS(678), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -51544,13 +51622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55634] = 3, + [55717] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 8, + ACTIONS(666), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -51559,276 +51637,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55652] = 10, + [55735] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(312), 1, sym__name, - ACTIONS(2244), 1, + ACTIONS(2246), 1, sym__discard_name, - ACTIONS(2314), 1, - anon_sym_RPAREN, - STATE(1012), 1, + STATE(1028), 1, sym__discard_param, - STATE(1014), 1, + STATE(1032), 1, sym__name_param, - STATE(1105), 1, - sym_anonymous_function_parameter, - STATE(1109), 1, - sym_identifier, STATE(1111), 1, + sym_identifier, + STATE(1112), 1, sym_discard, + STATE(1234), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55684] = 9, + [55764] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2316), 1, - anon_sym_RBRACE, ACTIONS(2318), 1, + anon_sym_RBRACE, + ACTIONS(2320), 1, anon_sym_type, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1299), 1, + STATE(1187), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55713] = 9, + [55793] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2318), 1, - anon_sym_type, ACTIONS(2320), 1, + anon_sym_type, + ACTIONS(2322), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1299), 1, + STATE(1302), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55742] = 9, + [55822] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2318), 1, + ACTIONS(2320), 1, anon_sym_type, - ACTIONS(2322), 1, + ACTIONS(2324), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1299), 1, + STATE(1302), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55771] = 9, + [55851] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2318), 1, + ACTIONS(2320), 1, anon_sym_type, - ACTIONS(2324), 1, + ACTIONS(2326), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1062), 1, + STATE(1302), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55800] = 9, + [55880] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2318), 1, + ACTIONS(2320), 1, anon_sym_type, - ACTIONS(2326), 1, + ACTIONS(2328), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1299), 1, + STATE(1064), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55829] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2328), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [55846] = 9, + [55909] = 9, ACTIONS(3), 1, sym_module_comment, ACTIONS(760), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2318), 1, + ACTIONS(2320), 1, anon_sym_type, ACTIONS(2330), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1062), 1, sym_type_identifier, - STATE(1061), 1, + STATE(1063), 1, sym_identifier, - STATE(1184), 1, + STATE(1302), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55875] = 9, + [55938] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2332), 7, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [55955] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2308), 1, sym__name, - ACTIONS(2244), 1, - sym__discard_name, - STATE(1012), 1, - sym__discard_param, - STATE(1014), 1, - sym__name_param, - STATE(1109), 1, + STATE(887), 1, + sym_type_name, + STATE(1392), 1, sym_identifier, - STATE(1111), 1, - sym_discard, - STATE(1238), 1, - sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55904] = 7, + STATE(813), 2, + sym_type_identifier, + sym_remote_type_identifier, + [55979] = 7, ACTIONS(3), 1, sym_module_comment, ACTIONS(2115), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(433), 1, + STATE(506), 1, sym_type_name, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(388), 2, + STATE(389), 2, sym_type_identifier, sym_remote_type_identifier, - [55928] = 6, + [56003] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(57), 1, - sym__decimal, - ACTIONS(2332), 1, - anon_sym_DASH, - STATE(12), 1, - sym_integer, + ACTIONS(2334), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - [55950] = 7, + ACTIONS(1767), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [56023] = 7, ACTIONS(3), 1, sym_module_comment, ACTIONS(2115), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(456), 1, + STATE(414), 1, sym_type_name, - STATE(1387), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(388), 2, + STATE(389), 2, sym_type_identifier, sym_remote_type_identifier, - [55974] = 6, + [56047] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(2284), 1, + ACTIONS(2337), 1, anon_sym_DASH, - STATE(396), 1, + STATE(138), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(618), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - [55996] = 8, + [56069] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(760), 1, - sym__name, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2318), 1, - anon_sym_type, - STATE(1060), 1, - sym_type_identifier, - STATE(1061), 1, - sym_identifier, - STATE(1299), 1, - sym_unqualified_import, + ACTIONS(310), 1, + sym__decimal, + ACTIONS(1254), 1, + anon_sym_DASH, + STATE(1380), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56022] = 7, + ACTIONS(308), 3, + sym__hex, + sym__octal, + sym__binary, + [56091] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(860), 1, + STATE(1210), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -51836,97 +51906,81 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56046] = 7, + [56115] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2115), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1204), 1, + STATE(455), 1, sym_type_name, - STATE(1389), 1, + STATE(1388), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(813), 2, + STATE(389), 2, sym_type_identifier, sym_remote_type_identifier, - [56070] = 6, + [56139] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(1254), 1, anon_sym_DASH, - STATE(1371), 1, + STATE(138), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - [56092] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2334), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1773), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [56112] = 6, + [56161] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(318), 1, + ACTIONS(310), 1, sym__decimal, - ACTIONS(2337), 1, + ACTIONS(1254), 1, anon_sym_DASH, - STATE(144), 1, + STATE(1372), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 3, + ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - [56134] = 7, + [56183] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2115), 1, - sym__upname, - ACTIONS(2296), 1, - sym__name, - STATE(463), 1, - sym_type_name, - STATE(1387), 1, - sym_identifier, + ACTIONS(594), 1, + sym__decimal, + ACTIONS(2288), 1, + anon_sym_DASH, + STATE(407), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, - sym_comment, - STATE(388), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56158] = 7, + sym_comment, + ACTIONS(592), 3, + sym__hex, + sym__octal, + sym__binary, + [56205] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1225), 1, + STATE(1207), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -51934,16 +51988,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56182] = 7, + [56229] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1295), 1, + STATE(1229), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -51951,96 +52005,77 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56206] = 6, + [56253] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(877), 1, - sym__decimal, ACTIONS(2339), 1, - anon_sym_DASH, - STATE(327), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(875), 3, - sym__hex, - sym__octal, - sym__binary, - [56228] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2341), 1, anon_sym_as, - ACTIONS(2343), 1, + ACTIONS(2341), 1, anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2298), 4, + ACTIONS(2300), 4, anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_PIPE, - [56248] = 7, + [56273] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, - sym__upname, - ACTIONS(2296), 1, - sym__name, - STATE(890), 1, - sym_type_name, - STATE(1389), 1, - sym_identifier, + ACTIONS(2343), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(813), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56272] = 6, + ACTIONS(1264), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + [56291] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(318), 1, + ACTIONS(890), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(2345), 1, anon_sym_DASH, - STATE(1333), 1, + STATE(325), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 3, + ACTIONS(888), 3, sym__hex, sym__octal, sym__binary, - [56294] = 6, + [56313] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(318), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(1262), 1, + ACTIONS(2347), 1, anon_sym_DASH, - STATE(144), 1, + STATE(11), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - [56316] = 7, + [56335] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(885), 1, + STATE(859), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -52048,47 +52083,51 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56340] = 7, + [56359] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2115), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(520), 1, + STATE(1306), 1, sym_type_name, - STATE(1387), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(388), 2, + STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56364] = 4, + [56383] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2345), 1, - anon_sym_DOT, + ACTIONS(760), 1, + sym__name, + ACTIONS(2047), 1, + sym__upname, + ACTIONS(2320), 1, + anon_sym_type, + STATE(1062), 1, + sym_type_identifier, + STATE(1063), 1, + sym_identifier, + STATE(1302), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1329), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - [56382] = 7, + [56409] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(841), 1, + STATE(852), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -52096,16 +52135,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56406] = 7, + [56433] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1194), 1, + STATE(884), 1, sym_type_name, - STATE(1389), 1, + STATE(1392), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -52113,971 +52152,1002 @@ static const uint16_t ts_small_parse_table[] = { STATE(813), 2, sym_type_identifier, sym_remote_type_identifier, - [56430] = 5, + [56457] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2347), 1, - anon_sym_COMMA, - STATE(948), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2115), 1, + sym__upname, + ACTIONS(2308), 1, + sym__name, + STATE(461), 1, + sym_type_name, + STATE(1388), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2350), 3, - anon_sym_RPAREN, + STATE(389), 2, + sym_type_identifier, + sym_remote_type_identifier, + [56481] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2246), 1, + sym__discard_name, + ACTIONS(2349), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [56449] = 6, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1357), 2, + sym_identifier, + sym_discard, + [56502] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(2351), 1, + anon_sym_RBRACE, + ACTIONS(2353), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1421), 1, - sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(950), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56470] = 6, + [56523] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2358), 1, + anon_sym_COMMA, + STATE(951), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2356), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [56542] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1431), 1, + STATE(1336), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56491] = 5, + [56563] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2339), 1, + anon_sym_as, + ACTIONS(2361), 1, + anon_sym_LT_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2300), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, + [56582] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2352), 1, + ACTIONS(1731), 1, + anon_sym_DOT_DOT, + ACTIONS(2363), 1, anon_sym_COMMA, - STATE(951), 1, + ACTIONS(2365), 1, + anon_sym_RBRACK, + STATE(959), 1, aux_sym_case_clause_pattern_repeat1, + STATE(1327), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2350), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [56510] = 6, + [56605] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1405), 1, + STATE(1379), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56531] = 6, + [56626] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1427), 1, + STATE(1411), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56552] = 6, + [56647] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1288), 1, + anon_sym_DOT_DOT, + ACTIONS(1353), 1, + anon_sym_RPAREN, + ACTIONS(2367), 1, + anon_sym_COMMA, + STATE(1013), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1348), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [56670] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1288), 1, + anon_sym_DOT_DOT, + ACTIONS(2369), 1, + anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_RPAREN, + STATE(957), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1339), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [56693] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2373), 1, + anon_sym_COMMA, + STATE(959), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2356), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [56712] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1380), 1, + STATE(1347), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56573] = 6, + [56733] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - ACTIONS(2355), 1, - anon_sym_RBRACE, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, + STATE(1427), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(956), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56594] = 6, + [56754] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2357), 1, - anon_sym_RBRACE, - ACTIONS(2359), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + ACTIONS(2376), 1, + anon_sym_RBRACE, + STATE(993), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(956), 2, + STATE(950), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56615] = 5, + [56775] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2364), 1, + ACTIONS(2380), 1, anon_sym_COMMA, - STATE(951), 1, + STATE(970), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2362), 3, + ACTIONS(2378), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [56634] = 5, + [56794] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2366), 1, + ACTIONS(2382), 1, anon_sym_LPAREN, - STATE(1045), 1, + STATE(1046), 1, sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2368), 3, + ACTIONS(2384), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [56653] = 7, + [56813] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2370), 1, + ACTIONS(2386), 1, anon_sym_type, - ACTIONS(2372), 1, + ACTIONS(2388), 1, anon_sym_const, - ACTIONS(2374), 1, + ACTIONS(2390), 1, anon_sym_fn, - ACTIONS(2376), 1, + ACTIONS(2392), 1, anon_sym_external, - ACTIONS(2378), 1, + ACTIONS(2394), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56676] = 7, + [56836] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1252), 1, - anon_sym_DOT_DOT, - ACTIONS(2380), 1, - anon_sym_COMMA, - ACTIONS(2382), 1, - anon_sym_RPAREN, - STATE(961), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1377), 1, - sym_pattern_spread, + ACTIONS(324), 1, + sym__discard_name, + ACTIONS(326), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56699] = 7, + ACTIONS(374), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [56855] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1252), 1, + ACTIONS(1731), 1, anon_sym_DOT_DOT, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(2384), 1, + ACTIONS(2396), 1, anon_sym_COMMA, - STATE(1010), 1, - aux_sym_record_pattern_arguments_repeat1, + ACTIONS(2398), 1, + anon_sym_RBRACK, + STATE(954), 1, + aux_sym_case_clause_pattern_repeat1, STATE(1351), 1, - sym_pattern_spread, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56722] = 5, + [56878] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1035), 1, + ACTIONS(1033), 1, anon_sym_LPAREN, ACTIONS(1221), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(336), 3, + ACTIONS(344), 3, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT_GT, - [56741] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2341), 1, - anon_sym_as, - ACTIONS(2386), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2298), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - [56760] = 6, + [56897] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, + ACTIONS(314), 1, sym__upname, - STATE(1002), 1, + STATE(993), 1, sym_constructor_name, - STATE(1336), 1, + STATE(1431), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(955), 2, + STATE(962), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56781] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1729), 1, - anon_sym_DOT_DOT, - ACTIONS(2388), 1, - anon_sym_COMMA, - ACTIONS(2390), 1, - anon_sym_RBRACK, - STATE(948), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1356), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [56804] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - sym__discard_name, - ACTIONS(278), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(376), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56823] = 5, + [56918] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2394), 1, + ACTIONS(2402), 1, anon_sym_COMMA, - STATE(957), 1, + STATE(951), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2392), 3, + ACTIONS(2400), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [56842] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1729), 1, - anon_sym_DOT_DOT, - ACTIONS(2396), 1, - anon_sym_COMMA, - ACTIONS(2398), 1, - anon_sym_RBRACK, - STATE(965), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1417), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [56865] = 7, + [56937] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2400), 1, + ACTIONS(2404), 1, anon_sym_type, - ACTIONS(2402), 1, + ACTIONS(2406), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2408), 1, anon_sym_fn, - ACTIONS(2406), 1, + ACTIONS(2410), 1, anon_sym_external, - ACTIONS(2408), 1, + ACTIONS(2412), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56888] = 6, + [56960] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2244), 1, - sym__discard_name, - ACTIONS(2410), 1, - anon_sym_RBRACK, + ACTIONS(2414), 1, + anon_sym_DQUOTE2, + STATE(984), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1346), 2, - sym_identifier, - sym_discard, - [56909] = 6, + ACTIONS(2416), 2, + sym_quoted_content, + sym_escape_sequence, + [56978] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(626), 1, - sym__upname, - ACTIONS(2286), 1, - sym__name, - STATE(318), 1, - sym_constructor_name, - STATE(595), 1, - sym_label, + ACTIONS(324), 1, + anon_sym_COLON, + ACTIONS(374), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56929] = 6, + ACTIONS(1270), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56996] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(776), 1, + ACTIONS(754), 1, anon_sym_RBRACK, - ACTIONS(778), 1, + ACTIONS(756), 1, anon_sym_DOT_DOT, - ACTIONS(2412), 1, + ACTIONS(2418), 1, anon_sym_COMMA, - STATE(933), 1, + STATE(928), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56949] = 5, + [57016] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_COLON, - ACTIONS(376), 1, - anon_sym_DOT, + ACTIONS(2420), 1, + anon_sym_DQUOTE2, + STATE(992), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1256), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56967] = 5, + ACTIONS(2422), 2, + sym_quoted_content, + sym_escape_sequence, + [57034] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, - anon_sym_COLON, - STATE(1222), 1, - sym__type_annotation, + ACTIONS(2424), 1, + anon_sym_DQUOTE2, + STATE(1017), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2414), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56985] = 5, + ACTIONS(2426), 2, + sym_quoted_content, + sym_escape_sequence, + [57052] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - STATE(1219), 1, + STATE(1230), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2418), 2, + ACTIONS(2428), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57003] = 5, + [57070] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - STATE(1217), 1, + STATE(1228), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2414), 2, + ACTIONS(2432), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57021] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2416), 1, - anon_sym_COLON, - STATE(1241), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2420), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [57039] = 6, + [57088] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2422), 1, + ACTIONS(2434), 1, anon_sym_RPAREN, - ACTIONS(2424), 1, + ACTIONS(2436), 1, sym__name, - STATE(1237), 1, + STATE(1250), 1, sym_record_update_argument, - STATE(1330), 1, + STATE(1381), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57059] = 5, + [57108] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2428), 1, - anon_sym_DASH, - STATE(980), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(1226), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2428), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [57077] = 5, + anon_sym_RPAREN, + [57126] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2430), 1, - anon_sym_DASH, - STATE(983), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(600), 1, + sym__upname, + ACTIONS(2290), 1, + sym__name, + STATE(315), 1, + sym_constructor_name, + STATE(607), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1405), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57095] = 5, + [57146] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2434), 1, - anon_sym_PIPE, - STATE(1018), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(1212), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(2432), 2, - anon_sym_if, - anon_sym_DASH_GT, - [57113] = 4, + anon_sym_COMMA, + anon_sym_RPAREN, + [57164] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2438), 1, + ACTIONS(2440), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2436), 3, + ACTIONS(2438), 3, sym__hex, sym__octal, sym__binary, - [57129] = 5, + [57180] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2442), 1, + anon_sym_DQUOTE2, + STATE(995), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2444), 2, + sym_quoted_content, + sym_escape_sequence, + [57198] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2448), 1, anon_sym_DASH, - STATE(983), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(1025), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2440), 2, + ACTIONS(2446), 2, anon_sym_COMMA, anon_sym_GT_GT, - [57147] = 5, + [57216] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2445), 1, - anon_sym_DQUOTE2, - STATE(990), 1, - aux_sym_string_repeat1, + ACTIONS(2452), 1, + anon_sym_DASH, + STATE(986), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2447), 2, - sym_quoted_content, - sym_escape_sequence, - [57165] = 5, + ACTIONS(2450), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [57234] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2449), 1, - anon_sym_DQUOTE2, - STATE(997), 1, - aux_sym_string_repeat1, + ACTIONS(2457), 1, + anon_sym_PIPE, + STATE(1020), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2451), 2, - sym_quoted_content, - sym_escape_sequence, - [57183] = 6, + ACTIONS(2455), 2, + anon_sym_if, + anon_sym_DASH_GT, + [57252] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(2244), 1, - sym__discard_name, - STATE(1035), 1, - sym_discard, - STATE(1036), 1, - sym_identifier, + ACTIONS(2459), 1, + anon_sym_DQUOTE2, + STATE(995), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57203] = 4, + ACTIONS(2444), 2, + sym_quoted_content, + sym_escape_sequence, + [57270] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2455), 1, - sym__decimal, + ACTIONS(772), 1, + anon_sym_RBRACK, + ACTIONS(774), 1, + anon_sym_DOT_DOT, + ACTIONS(2461), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2453), 3, - sym__hex, - sym__octal, - sym__binary, - [57219] = 5, + [57290] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2459), 1, - anon_sym_DASH, - STATE(988), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(788), 1, + anon_sym_RBRACK, + ACTIONS(790), 1, + anon_sym_DOT_DOT, + ACTIONS(2463), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2457), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57237] = 6, + [57310] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, + ACTIONS(2436), 1, sym__name, - STATE(1086), 1, + STATE(1087), 1, sym_record_update_argument, - STATE(1330), 1, - sym_label, STATE(1335), 1, sym_record_update_arguments, + STATE(1381), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57257] = 5, + [57330] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2462), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE2, - STATE(1017), 1, + STATE(995), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2444), 2, sym_quoted_content, sym_escape_sequence, - [57275] = 5, + [57348] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2469), 1, + anon_sym_LPAREN, + STATE(1283), 1, + sym_data_constructor_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2467), 2, + anon_sym_RBRACE, + sym__upname, + [57366] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2473), 1, + anon_sym_DASH, + STATE(994), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2471), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [57384] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2466), 1, + ACTIONS(2476), 1, anon_sym_DQUOTE2, - STATE(993), 1, + STATE(995), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2468), 2, + ACTIONS(2478), 2, sym_quoted_content, sym_escape_sequence, - [57293] = 4, + [57402] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2472), 1, + ACTIONS(2483), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2470), 3, + ACTIONS(2481), 3, sym__hex, sym__octal, sym__binary, - [57309] = 5, + [57418] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2474), 1, - anon_sym_DQUOTE2, - STATE(1017), 1, - aux_sym_string_repeat1, + ACTIONS(2487), 1, + anon_sym_DASH, + STATE(997), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, - sym_quoted_content, - sym_escape_sequence, - [57327] = 4, + ACTIONS(2485), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [57436] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2478), 1, - sym__decimal, + ACTIONS(61), 1, + sym__upname, + ACTIONS(2490), 1, + sym__name, + STATE(18), 1, + sym_constructor_name, + STATE(541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2476), 3, - sym__hex, - sym__octal, - sym__binary, - [57343] = 3, + [57456] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2436), 1, + sym__name, + STATE(1087), 1, + sym_record_update_argument, + STATE(1381), 1, + sym_label, + STATE(1410), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2480), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_DASH, - [57357] = 5, + [57476] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2482), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2436), 1, + sym__name, + ACTIONS(2492), 1, + anon_sym_RPAREN, + STATE(1250), 1, + sym_record_update_argument, + STATE(1381), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2485), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [57375] = 5, + [57496] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2487), 1, - anon_sym_DQUOTE2, - STATE(1017), 1, - aux_sym_string_repeat1, + ACTIONS(760), 1, + sym__name, + ACTIONS(2246), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, - sym_quoted_content, - sym_escape_sequence, - [57393] = 5, + STATE(910), 2, + sym_identifier, + sym_discard, + [57514] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2491), 1, - anon_sym_DASH, - STATE(1023), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2436), 1, + sym__name, + STATE(1087), 1, + sym_record_update_argument, + STATE(1349), 1, + sym_record_update_arguments, + STATE(1381), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2489), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57411] = 6, + [57534] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(762), 1, - anon_sym_RBRACK, - ACTIONS(764), 1, - anon_sym_DOT_DOT, - ACTIONS(2493), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, + ACTIONS(760), 1, + sym__name, + ACTIONS(2246), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57431] = 5, + STATE(901), 2, + sym_identifier, + sym_discard, + [57552] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, - anon_sym_COLON, - STATE(1227), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2418), 2, + ACTIONS(2494), 4, anon_sym_COMMA, anon_sym_RPAREN, - [57449] = 6, + anon_sym_EQ, + anon_sym_LT_DASH, + [57566] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(766), 1, - anon_sym_RBRACK, ACTIONS(768), 1, + anon_sym_RBRACK, + ACTIONS(770), 1, anon_sym_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - STATE(933), 1, + STATE(928), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57469] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2499), 1, - anon_sym_LPAREN, - STATE(1265), 1, - sym_data_constructor_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2497), 2, - anon_sym_RBRACE, - sym__upname, - [57487] = 5, + [57586] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2501), 1, + ACTIONS(2498), 1, anon_sym_DQUOTE2, - STATE(1017), 1, + STATE(988), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2500), 2, sym_quoted_content, sym_escape_sequence, - [57505] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2505), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2503), 3, - sym__hex, - sym__octal, - sym__binary, - [57521] = 5, + [57604] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2509), 1, + ACTIONS(2504), 1, anon_sym_DASH, - STATE(1020), 1, + STATE(1024), 1, aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2507), 2, + ACTIONS(2502), 2, anon_sym_COMMA, anon_sym_GT_GT, - [57539] = 5, + [57622] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2511), 1, - anon_sym_DQUOTE2, - STATE(1017), 1, - aux_sym_string_repeat1, + ACTIONS(2436), 1, + sym__name, + STATE(1087), 1, + sym_record_update_argument, + STATE(1341), 1, + sym_record_update_arguments, + STATE(1381), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, - sym_quoted_content, - sym_escape_sequence, - [57557] = 6, + [57642] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, - sym__upname, - ACTIONS(2424), 1, - sym__name, - STATE(126), 1, - sym_constructor_name, - STATE(595), 1, - sym_label, + ACTIONS(2508), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57577] = 5, + ACTIONS(2506), 3, + sym__hex, + sym__octal, + sym__binary, + [57658] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2513), 1, + ACTIONS(2510), 1, anon_sym_DQUOTE2, - STATE(1003), 1, + STATE(995), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2444), 2, sym_quoted_content, sym_escape_sequence, - [57595] = 6, + [57676] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__upname, - ACTIONS(2517), 1, + ACTIONS(2514), 1, + sym__decimal, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2512), 3, + sym__hex, + sym__octal, + sym__binary, + [57692] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(59), 1, sym__name, - STATE(20), 1, - sym_constructor_name, - STATE(539), 1, - sym_label, + ACTIONS(2516), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57615] = 5, + STATE(551), 2, + sym_identifier, + sym_discard, + [57710] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2519), 1, + ACTIONS(2518), 1, anon_sym_COMMA, - STATE(1010), 1, + STATE(1013), 1, aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2522), 2, + ACTIONS(2521), 2, anon_sym_RPAREN, anon_sym_DOT_DOT, - [57633] = 5, + [57728] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2526), 1, - anon_sym_DASH, - STATE(1011), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2523), 1, + anon_sym_DQUOTE2, + STATE(1010), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2524), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57651] = 5, + ACTIONS(2525), 2, + sym_quoted_content, + sym_escape_sequence, + [57746] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, - anon_sym_COLON, - STATE(1240), 1, - sym__type_annotation, + ACTIONS(2527), 1, + anon_sym_DQUOTE2, + STATE(1026), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(2529), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57669] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2424), 1, - sym__name, - STATE(1086), 1, - sym_record_update_argument, - STATE(1330), 1, - sym_label, - STATE(1402), 1, - sym_record_update_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [57689] = 5, + sym_quoted_content, + sym_escape_sequence, + [57764] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, - anon_sym_COLON, - STATE(1242), 1, - sym__type_annotation, + ACTIONS(2531), 1, + anon_sym_COMMA, + STATE(1016), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2529), 2, - anon_sym_COMMA, + ACTIONS(2534), 2, anon_sym_RPAREN, - [57707] = 6, + anon_sym_RBRACK, + [57782] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(772), 1, - anon_sym_RBRACK, - ACTIONS(774), 1, - anon_sym_DOT_DOT, - ACTIONS(2531), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, + ACTIONS(2536), 1, + anon_sym_DQUOTE2, + STATE(995), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57727] = 6, + ACTIONS(2444), 2, + sym_quoted_content, + sym_escape_sequence, + [57800] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, + ACTIONS(2308), 1, sym__name, - STATE(1086), 1, - sym_record_update_argument, - STATE(1330), 1, - sym_label, - STATE(1345), 1, - sym_record_update_arguments, + ACTIONS(2538), 1, + anon_sym_LPAREN, + STATE(1270), 1, + sym_anonymous_function_parameters, + STATE(1274), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57747] = 5, + [57820] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2533), 1, - anon_sym_DQUOTE2, - STATE(1017), 1, - aux_sym_string_repeat1, + ACTIONS(2542), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2535), 2, - sym_quoted_content, - sym_escape_sequence, - [57765] = 5, + ACTIONS(2540), 3, + sym__hex, + sym__octal, + sym__binary, + [57836] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2538), 1, + ACTIONS(2544), 1, anon_sym_PIPE, - STATE(1022), 1, + STATE(1033), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -53085,65 +53155,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1719), 2, anon_sym_if, anon_sym_DASH_GT, - [57783] = 5, + [57854] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2540), 1, - anon_sym_DQUOTE2, - STATE(1006), 1, - aux_sym_string_repeat1, + ACTIONS(314), 1, + sym__upname, + ACTIONS(2436), 1, + sym__name, + STATE(131), 1, + sym_constructor_name, + STATE(607), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2542), 2, - sym_quoted_content, - sym_escape_sequence, - [57801] = 5, + [57874] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2544), 1, - anon_sym_DASH, - STATE(988), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2548), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57819] = 6, + ACTIONS(2546), 3, + sym__hex, + sym__octal, + sym__binary, + [57890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, + ACTIONS(59), 1, sym__name, - STATE(1086), 1, - sym_record_update_argument, - STATE(1330), 1, - sym_label, - STATE(1340), 1, - sym_record_update_arguments, + ACTIONS(2516), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57839] = 5, + STATE(482), 2, + sym_identifier, + sym_discard, + [57908] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2548), 1, - anon_sym_PIPE, - STATE(1022), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2550), 1, + anon_sym_DASH, + STATE(994), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2546), 2, - anon_sym_if, - anon_sym_DASH_GT, - [57857] = 5, + ACTIONS(1252), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [57926] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2551), 1, + ACTIONS(2552), 1, anon_sym_DASH, - STATE(1011), 1, + STATE(997), 1, aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -53151,2256 +53220,2267 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1359), 2, anon_sym_COMMA, anon_sym_GT_GT, - [57875] = 5, + [57944] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2553), 1, + ACTIONS(2554), 1, anon_sym_DQUOTE2, - STATE(1017), 1, + STATE(995), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2444), 2, sym_quoted_content, sym_escape_sequence, - [57893] = 4, + [57962] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2557), 1, - sym__decimal, + ACTIONS(2556), 1, + anon_sym_DASH, + STATE(986), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2555), 3, - sym__hex, - sym__octal, - sym__binary, - [57909] = 6, + ACTIONS(1407), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [57980] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, - sym__name, - ACTIONS(2559), 1, - anon_sym_RPAREN, - STATE(1237), 1, - sym_record_update_argument, - STATE(1330), 1, - sym_label, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(1239), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57929] = 6, + ACTIONS(2558), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57998] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - ACTIONS(2561), 1, - anon_sym_LPAREN, - STATE(1259), 1, - sym_anonymous_function_parameters, - STATE(1263), 1, - sym_identifier, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(1243), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57949] = 5, + ACTIONS(2560), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [58016] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2563), 1, - anon_sym_DQUOTE2, - STATE(1024), 1, - aux_sym_string_repeat1, + ACTIONS(2564), 1, + anon_sym_DASH, + STATE(1027), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2565), 2, - sym_quoted_content, - sym_escape_sequence, - [57967] = 3, + ACTIONS(2562), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [58034] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(312), 1, + sym__name, + ACTIONS(2246), 1, + sym__discard_name, + STATE(1037), 1, + sym_discard, + STATE(1038), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2567), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [57980] = 5, + [58054] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2569), 1, - anon_sym_COMMA, - ACTIONS(2571), 1, - anon_sym_RPAREN, - STATE(1052), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(1244), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57997] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2573), 1, + ACTIONS(2558), 2, anon_sym_COMMA, - ACTIONS(2576), 1, anon_sym_RPAREN, - STATE(1031), 1, - aux_sym_constant_record_arguments_repeat1, + [58072] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2568), 1, + anon_sym_PIPE, + STATE(1033), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58014] = 5, + ACTIONS(2566), 2, + anon_sym_if, + anon_sym_DASH_GT, + [58090] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(483), 1, - sym_external_function_body, - STATE(1205), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58031] = 5, + ACTIONS(2571), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [58103] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2578), 1, + ACTIONS(2573), 1, anon_sym_COMMA, - ACTIONS(2580), 1, + ACTIONS(2575), 1, anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1050), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58048] = 5, + [58120] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2582), 1, + ACTIONS(2577), 1, anon_sym_COMMA, - ACTIONS(2585), 1, + ACTIONS(2580), 1, anon_sym_RPAREN, - STATE(1034), 1, + STATE(1036), 1, aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58065] = 3, + [58137] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2587), 3, + ACTIONS(2582), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58078] = 3, + [58150] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2589), 3, + ACTIONS(2584), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58091] = 5, + [58163] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2067), 1, - anon_sym_RPAREN, - ACTIONS(2591), 1, - anon_sym_COMMA, - STATE(1034), 1, - aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58108] = 3, + ACTIONS(2586), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [58176] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2588), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [58121] = 3, + [58189] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2595), 3, + ACTIONS(2590), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [58134] = 5, + [58202] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2099), 1, + ACTIONS(2093), 1, anon_sym_RPAREN, - ACTIONS(2597), 1, + ACTIONS(2592), 1, anon_sym_COMMA, - STATE(1127), 1, + STATE(1096), 1, aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58151] = 5, + [58219] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2272), 1, anon_sym_RPAREN, - ACTIONS(2599), 1, + ACTIONS(2594), 1, anon_sym_COMMA, - STATE(1130), 1, + STATE(1129), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58168] = 3, + [58236] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2601), 3, + ACTIONS(2596), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58181] = 5, + [58249] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2603), 1, + ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(2605), 1, + ACTIONS(2600), 1, anon_sym_EQ, - STATE(1348), 1, + STATE(1355), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58198] = 3, + [58266] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2607), 3, + ACTIONS(2602), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58211] = 3, + [58279] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2609), 3, + ACTIONS(2604), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58224] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2422), 1, - anon_sym_RPAREN, - ACTIONS(2611), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58241] = 4, + [58292] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2615), 1, + ACTIONS(2608), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2613), 2, + ACTIONS(2606), 2, anon_sym_COMMA, anon_sym_GT_GT, - [58256] = 5, + [58307] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2617), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2619), 1, + ACTIONS(2612), 1, anon_sym_GT_GT, - STATE(1100), 1, + STATE(1098), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58273] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - ACTIONS(2623), 1, - anon_sym_RPAREN, - STATE(1052), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58290] = 5, + [58324] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2623), 1, + ACTIONS(2157), 1, anon_sym_RPAREN, - ACTIONS(2625), 1, - sym__name, - STATE(1216), 1, - sym_type_parameter, + ACTIONS(2614), 1, + anon_sym_COMMA, + STATE(1066), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58307] = 3, + [58341] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2627), 3, + ACTIONS(2616), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58320] = 5, + [58354] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2629), 1, + ACTIONS(2618), 1, anon_sym_COMMA, - ACTIONS(2632), 1, + ACTIONS(2620), 1, anon_sym_RPAREN, - STATE(1052), 1, + STATE(1186), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58337] = 5, + [58371] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2153), 1, + ACTIONS(2620), 1, anon_sym_RPAREN, - ACTIONS(2634), 1, - anon_sym_COMMA, - STATE(1119), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(2622), 1, + sym__name, + STATE(1202), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58354] = 5, + [58388] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2151), 1, anon_sym_RPAREN, - ACTIONS(2636), 1, + ACTIONS(2624), 1, anon_sym_COMMA, - STATE(1119), 1, + STATE(1066), 1, aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58371] = 3, + [58405] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2638), 3, + ACTIONS(2626), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58384] = 5, + [58418] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2640), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, + ACTIONS(2492), 1, anon_sym_RPAREN, - STATE(1056), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2628), 1, + anon_sym_COMMA, + STATE(1139), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58401] = 5, + [58435] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2645), 1, - anon_sym_COMMA, - ACTIONS(2647), 1, + ACTIONS(2065), 1, anon_sym_RPAREN, - STATE(948), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2630), 1, + anon_sym_COMMA, + STATE(1124), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58418] = 5, + [58452] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2057), 1, + ACTIONS(2089), 1, anon_sym_RPAREN, - ACTIONS(2649), 1, + ACTIONS(2632), 1, anon_sym_COMMA, - STATE(1126), 1, - aux_sym_type_arguments_repeat1, + STATE(1100), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58435] = 5, + [58469] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2095), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - ACTIONS(2651), 1, + ACTIONS(2634), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1100), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58452] = 4, + [58486] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2655), 1, + ACTIONS(2037), 1, + anon_sym_RPAREN, + ACTIONS(2636), 1, + anon_sym_COMMA, + STATE(1102), 1, + aux_sym_data_constructor_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58503] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2638), 1, + anon_sym_RBRACE, + ACTIONS(2640), 1, + anon_sym_COMMA, + STATE(1061), 1, + aux_sym_unqualified_imports_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58520] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2645), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2643), 2, anon_sym_RBRACE, anon_sym_COMMA, - [58467] = 4, + [58535] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2657), 1, + ACTIONS(2647), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2643), 2, anon_sym_RBRACE, anon_sym_COMMA, - [58482] = 5, + [58550] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2659), 1, + ACTIONS(2649), 1, anon_sym_RBRACE, - ACTIONS(2661), 1, + ACTIONS(2651), 1, anon_sym_COMMA, - STATE(1115), 1, + STATE(1126), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58499] = 5, + [58567] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2089), 1, + ACTIONS(1867), 1, anon_sym_RPAREN, - ACTIONS(2663), 1, + ACTIONS(2653), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_tuple_type_repeat1, + STATE(1078), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58516] = 5, + [58584] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2033), 1, - anon_sym_RPAREN, - ACTIONS(2665), 1, + ACTIONS(2655), 1, anon_sym_COMMA, - STATE(1056), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2658), 1, + anon_sym_RPAREN, + STATE(1066), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58533] = 5, + [58601] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2669), 1, - anon_sym_COMMA, - STATE(1065), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58550] = 5, + ACTIONS(2660), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [58614] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1831), 1, + ACTIONS(1859), 1, anon_sym_RPAREN, - ACTIONS(2672), 1, + ACTIONS(2662), 1, anon_sym_COMMA, - STATE(1101), 1, + STATE(1113), 1, aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58567] = 5, + [58631] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2674), 1, + ACTIONS(2664), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2666), 1, anon_sym_GT_GT, - STATE(1099), 1, + STATE(1108), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58584] = 4, + [58648] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2680), 1, + ACTIONS(2670), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2678), 2, + ACTIONS(2668), 2, anon_sym_COMMA, anon_sym_GT_GT, - [58599] = 5, + [58663] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2682), 1, + ACTIONS(2672), 1, anon_sym_COMMA, - ACTIONS(2684), 1, + ACTIONS(2674), 1, anon_sym_RBRACK, - STATE(1098), 1, + STATE(1107), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58616] = 5, + [58680] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(738), 1, + ACTIONS(744), 1, anon_sym_RPAREN, - ACTIONS(2686), 1, + ACTIONS(2676), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1103), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58633] = 5, + [58697] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1859), 1, - anon_sym_RPAREN, - ACTIONS(2688), 1, - anon_sym_COMMA, - STATE(1031), 1, - aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58650] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2690), 1, + ACTIONS(2471), 3, anon_sym_COMMA, - ACTIONS(2693), 1, anon_sym_GT_GT, - STATE(1072), 1, - aux_sym__constant_bit_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58667] = 3, + anon_sym_DASH, + [58710] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2695), 3, + ACTIONS(2678), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [58680] = 3, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(2681), 1, + anon_sym_GT_GT, + STATE(1074), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2457), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [58693] = 5, + [58727] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - ACTIONS(2697), 1, + ACTIONS(2683), 1, anon_sym_EQ, - STATE(1388), 1, + STATE(1396), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58710] = 5, + [58744] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(746), 1, anon_sym_RPAREN, - ACTIONS(2699), 1, + ACTIONS(2685), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1103), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58727] = 5, + [58761] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2701), 1, + ACTIONS(2687), 1, anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_GT_GT, - STATE(1077), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2689), 1, + anon_sym_RPAREN, + STATE(959), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58744] = 5, + [58778] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2706), 1, + ACTIONS(2691), 1, anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_LT_DASH, + ACTIONS(2694), 1, + anon_sym_RPAREN, STATE(1078), 1, - aux_sym_use_assignments_repeat1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58761] = 5, + [58795] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2711), 1, + ACTIONS(2696), 1, anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(2698), 1, anon_sym_LT_DASH, - STATE(1131), 1, + STATE(1132), 1, aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58778] = 5, + [58812] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(832), 1, - anon_sym_RPAREN, - ACTIONS(2715), 1, + ACTIONS(2700), 1, anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, + ACTIONS(2703), 1, + anon_sym_LT_DASH, + STATE(1080), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58795] = 5, + [58829] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2717), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2534), 3, anon_sym_COMMA, - ACTIONS(2719), 1, anon_sym_RPAREN, - STATE(1076), 1, - aux_sym_arguments_repeat1, + anon_sym_RBRACK, + [58842] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(828), 1, + anon_sym_RPAREN, + ACTIONS(2705), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58812] = 3, + [58859] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1903), 1, + anon_sym_RPAREN, + ACTIONS(2707), 1, + anon_sym_COMMA, + STATE(1016), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2485), 3, + [58876] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2709), 1, anon_sym_COMMA, + ACTIONS(2711), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [58825] = 3, + STATE(1076), 1, + aux_sym_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58893] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2721), 3, + ACTIONS(2713), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT, - [58838] = 5, + [58906] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(955), 1, + ACTIONS(995), 1, anon_sym_GT_GT, - ACTIONS(2723), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(1138), 1, + STATE(1146), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58855] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1919), 1, - anon_sym_RPAREN, - ACTIONS(2725), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58872] = 5, + [58923] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2727), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2729), 1, + ACTIONS(2719), 1, anon_sym_RPAREN, - STATE(1046), 1, + STATE(1056), 1, aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58889] = 5, + [58940] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - ACTIONS(2731), 1, + ACTIONS(2721), 1, anon_sym_EQ, - STATE(1324), 1, + STATE(1325), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58906] = 5, + [58957] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2733), 1, + ACTIONS(2723), 1, anon_sym_COMMA, - ACTIONS(2735), 1, + ACTIONS(2725), 1, anon_sym_GT_GT, - STATE(1084), 1, + STATE(1086), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58923] = 3, + [58974] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2737), 3, + ACTIONS(2727), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [58936] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1769), 1, + ACTIONS(2730), 1, anon_sym_GT_GT, - ACTIONS(2739), 1, - anon_sym_COMMA, - STATE(1077), 1, + STATE(1090), 1, aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58953] = 3, + [58991] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2741), 3, + ACTIONS(2732), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DOT_DOT, - [58966] = 5, + [59004] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2743), 1, + ACTIONS(1785), 1, + anon_sym_GT_GT, + ACTIONS(2734), 1, anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_RPAREN, - STATE(1092), 1, - aux_sym_arguments_repeat1, + STATE(1090), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58983] = 4, + [59021] = 4, ACTIONS(3), 1, sym_module_comment, - STATE(1390), 1, + STATE(1391), 1, sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2748), 2, + ACTIONS(2736), 2, anon_sym_erlang, anon_sym_javascript, - [58998] = 5, + [59036] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(475), 1, + sym_external_function_body, + STATE(1203), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59053] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, + ACTIONS(2622), 1, sym__name, - ACTIONS(2750), 1, + ACTIONS(2738), 1, anon_sym_RPAREN, - STATE(1175), 1, + STATE(1178), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59015] = 5, + [59070] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2752), 1, + ACTIONS(2740), 1, anon_sym_COMMA, - ACTIONS(2754), 1, + ACTIONS(2743), 1, anon_sym_RPAREN, - STATE(1085), 1, - aux_sym_constant_tuple_repeat1, + STATE(1096), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59032] = 5, + [59087] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(740), 1, + ACTIONS(742), 1, anon_sym_RPAREN, - ACTIONS(2756), 1, + ACTIONS(2745), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1103), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59049] = 5, + [59104] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2758), 1, + ACTIONS(941), 1, + anon_sym_GT_GT, + ACTIONS(2747), 1, anon_sym_COMMA, - ACTIONS(2760), 1, + STATE(1146), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59121] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2749), 1, + anon_sym_COMMA, + ACTIONS(2751), 1, anon_sym_RPAREN, - STATE(1057), 1, + STATE(1077), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59066] = 5, + [59138] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1921), 1, - anon_sym_RBRACK, - ACTIONS(2762), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - STATE(996), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2756), 1, + anon_sym_RPAREN, + STATE(1100), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59083] = 5, + [59155] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1869), 1, - anon_sym_GT_GT, - ACTIONS(2764), 1, - anon_sym_COMMA, - STATE(1072), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59100] = 5, + ACTIONS(2566), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [59168] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(901), 1, - anon_sym_GT_GT, - ACTIONS(2766), 1, + ACTIONS(2758), 1, anon_sym_COMMA, - STATE(1138), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2761), 1, + anon_sym_RPAREN, + STATE(1102), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59117] = 5, + [59185] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2768), 1, + ACTIONS(2763), 1, anon_sym_COMMA, - ACTIONS(2771), 1, + ACTIONS(2766), 1, anon_sym_RPAREN, - STATE(1101), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1103), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59134] = 5, + [59202] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(818), 1, + ACTIONS(830), 1, anon_sym_RPAREN, - ACTIONS(2773), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - STATE(933), 1, + STATE(928), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59151] = 3, + [59219] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2770), 1, + anon_sym_COMMA, + ACTIONS(2772), 1, + anon_sym_RPAREN, + STATE(1125), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2522), 3, + [59236] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2774), 1, anon_sym_COMMA, + ACTIONS(2776), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [59164] = 5, + STATE(1083), 1, + aux_sym_constant_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59253] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2775), 1, + ACTIONS(1927), 1, + anon_sym_RBRACK, + ACTIONS(2778), 1, anon_sym_COMMA, - ACTIONS(2777), 1, - anon_sym_RPAREN, - STATE(1096), 1, - aux_sym_arguments_repeat1, + STATE(1016), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59181] = 5, + [59270] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2779), 1, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(2780), 1, anon_sym_COMMA, - ACTIONS(2781), 1, - anon_sym_RPAREN, - STATE(1123), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1074), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59198] = 5, + [59287] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2783), 1, + ACTIONS(2782), 1, anon_sym_COMMA, - ACTIONS(2785), 1, + ACTIONS(2784), 1, anon_sym_RPAREN, - STATE(1071), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1097), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59215] = 5, + [59304] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2787), 1, + ACTIONS(2786), 1, anon_sym_if, - ACTIONS(2789), 1, + ACTIONS(2788), 1, anon_sym_DASH_GT, - STATE(1397), 1, + STATE(1340), 1, sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59232] = 3, + [59321] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2440), 3, + ACTIONS(2790), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [59245] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [59334] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2791), 3, + ACTIONS(2792), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [59258] = 5, + [59347] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_GT_GT, - ACTIONS(2793), 1, + ACTIONS(2794), 1, anon_sym_COMMA, - STATE(1138), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2797), 1, + anon_sym_RPAREN, + STATE(1113), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59275] = 3, + [59364] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2795), 3, + ACTIONS(937), 1, + anon_sym_GT_GT, + ACTIONS(2799), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59288] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1146), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2546), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [59301] = 3, + [59381] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2797), 3, + ACTIONS(2801), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [59314] = 4, + [59394] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2801), 1, - anon_sym_as, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2805), 1, + anon_sym_RPAREN, + STATE(1065), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2799), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [59329] = 5, + [59411] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2322), 1, - anon_sym_RBRACE, - ACTIONS(2803), 1, + ACTIONS(2807), 1, + anon_sym_LBRACE, + ACTIONS(2809), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_unqualified_imports_repeat1, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59346] = 5, + [59428] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - ACTIONS(2805), 1, + ACTIONS(2811), 1, anon_sym_EQ, - STATE(1354), 1, + STATE(1362), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59363] = 5, + [59445] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - anon_sym_COMMA, - ACTIONS(2809), 1, - anon_sym_GT_GT, - STATE(1110), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2815), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59380] = 5, + ACTIONS(2813), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [59460] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2811), 1, - anon_sym_LBRACE, - ACTIONS(2813), 1, + ACTIONS(2817), 1, anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, + ACTIONS(2819), 1, + anon_sym_GT_GT, + STATE(1114), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59397] = 5, + [59477] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2815), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2821), 3, anon_sym_COMMA, - ACTIONS(2818), 1, anon_sym_RPAREN, - STATE(1119), 1, - aux_sym_constant_tuple_type_repeat1, + anon_sym_EQ, + [59490] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59414] = 5, + ACTIONS(2521), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [59503] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2820), 1, + ACTIONS(2823), 1, anon_sym_COMMA, - ACTIONS(2822), 1, + ACTIONS(2825), 1, anon_sym_RPAREN, - STATE(1041), 1, + STATE(1043), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59431] = 4, + [59520] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2826), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2824), 2, + ACTIONS(2827), 1, anon_sym_COMMA, - anon_sym_GT_GT, - [59446] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(889), 1, - sym_external_function_body, - STATE(1251), 1, - sym_string, + ACTIONS(2830), 1, + anon_sym_RPAREN, + STATE(1124), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59463] = 5, + [59537] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2310), 1, anon_sym_RPAREN, - ACTIONS(2828), 1, + ACTIONS(2832), 1, anon_sym_COMMA, - STATE(1164), 1, + STATE(1148), 1, aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59480] = 5, + [59554] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2830), 1, + ACTIONS(2326), 1, + anon_sym_RBRACE, + ACTIONS(2834), 1, anon_sym_COMMA, - ACTIONS(2832), 1, - anon_sym_GT_GT, - STATE(1090), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1061), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59497] = 5, + [59571] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2834), 1, - anon_sym_COMMA, - ACTIONS(2836), 1, - anon_sym_RPAREN, - STATE(1064), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2838), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59514] = 5, + ACTIONS(2836), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [59586] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2838), 1, + ACTIONS(2840), 1, anon_sym_COMMA, - ACTIONS(2841), 1, - anon_sym_RPAREN, - STATE(1126), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2842), 1, + anon_sym_GT_GT, + STATE(1092), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59531] = 5, + [59603] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(2844), 1, anon_sym_COMMA, - ACTIONS(2846), 1, + ACTIONS(2847), 1, anon_sym_RPAREN, - STATE(1127), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1129), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59548] = 5, + [59620] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(304), 1, anon_sym_DQUOTE, - STATE(468), 1, + STATE(875), 1, sym_external_function_body, - STATE(1205), 1, + STATE(1252), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59565] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2848), 1, - anon_sym_COMMA, - ACTIONS(2850), 1, - anon_sym_RPAREN, - STATE(1063), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [59582] = 5, + [59637] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2852), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_RPAREN, - STATE(1130), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(463), 1, + sym_external_function_body, + STATE(1203), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59599] = 5, + [59654] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1791), 1, + ACTIONS(1793), 1, anon_sym_LT_DASH, - ACTIONS(2857), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1080), 1, aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59616] = 5, + [59671] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2603), 1, + ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(2859), 1, + ACTIONS(2851), 1, anon_sym_EQ, - STATE(1410), 1, + STATE(1409), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59633] = 5, + [59688] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(877), 1, - sym_external_function_body, - STATE(1251), 1, - sym_string, + ACTIONS(2853), 1, + anon_sym_COMMA, + ACTIONS(2855), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59650] = 5, + [59705] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2603), 1, + ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(2861), 1, + ACTIONS(2857), 1, anon_sym_EQ, - STATE(1338), 1, + STATE(1337), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59667] = 5, + [59722] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2863), 1, + ACTIONS(2859), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(2861), 1, anon_sym_GT_GT, - STATE(1155), 1, + STATE(1156), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59684] = 5, + [59739] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2065), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1126), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(893), 1, + sym_external_function_body, + STATE(1252), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59701] = 5, + [59756] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2087), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, - ACTIONS(2869), 1, + ACTIONS(2863), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_tuple_type_repeat1, + STATE(1124), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59718] = 5, + [59773] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2871), 1, + ACTIONS(2865), 1, anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_GT_GT, - STATE(1138), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2868), 1, + anon_sym_RPAREN, + STATE(1139), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59735] = 5, + [59790] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2416), 1, + ACTIONS(2430), 1, anon_sym_COLON, - ACTIONS(2876), 1, + ACTIONS(2870), 1, anon_sym_EQ, - STATE(1419), 1, + STATE(1422), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59752] = 5, + [59807] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2878), 1, + ACTIONS(2872), 1, anon_sym_COMMA, - ACTIONS(2880), 1, + ACTIONS(2874), 1, anon_sym_RPAREN, - STATE(1059), 1, - aux_sym_tuple_type_repeat1, + STATE(1060), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59769] = 5, + [59824] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1861), 1, + ACTIONS(2091), 1, anon_sym_RPAREN, - ACTIONS(2882), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1031), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1100), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59786] = 5, + [59841] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_RPAREN, - ACTIONS(2884), 1, - anon_sym_COMMA, - STATE(996), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59803] = 3, + ACTIONS(2878), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [59854] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2886), 3, + ACTIONS(2450), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [59816] = 3, + [59867] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1851), 1, + anon_sym_RPAREN, + ACTIONS(2880), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2524), 3, + [59884] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2882), 1, anon_sym_COMMA, + ACTIONS(2885), 1, anon_sym_GT_GT, - anon_sym_DASH, - [59829] = 5, + STATE(1146), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59901] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2888), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_DASH_GT, - STATE(1385), 1, - sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59846] = 5, + ACTIONS(2485), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [59914] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, - sym__name, - STATE(1237), 1, - sym_record_update_argument, - STATE(1330), 1, - sym_label, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2890), 1, + anon_sym_RPAREN, + STATE(1148), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59863] = 5, + [59931] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1933), 1, + anon_sym_RPAREN, ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_arguments_repeat1, + STATE(1016), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59880] = 5, + [59948] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, + ACTIONS(2622), 1, sym__name, - ACTIONS(2896), 1, + ACTIONS(2894), 1, anon_sym_RPAREN, - STATE(1216), 1, + STATE(1173), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59897] = 5, + [59965] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, - sym__name, + ACTIONS(2896), 1, + anon_sym_COMMA, ACTIONS(2898), 1, anon_sym_RPAREN, - STATE(1172), 1, - sym_type_parameter, + STATE(1042), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59914] = 5, + [59982] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2900), 1, anon_sym_COMMA, ACTIONS(2902), 1, anon_sym_RPAREN, - STATE(1136), 1, - aux_sym_type_arguments_repeat1, + STATE(1072), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59931] = 5, + [59999] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2622), 1, + sym__name, ACTIONS(2904), 1, - anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1202), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60016] = 5, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(2906), 1, + anon_sym_COMMA, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(1137), 1, + STATE(1059), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59948] = 5, + [60033] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2320), 1, - anon_sym_RBRACE, - ACTIONS(2908), 1, + ACTIONS(2910), 1, + anon_sym_COMMA, + ACTIONS(2912), 1, + anon_sym_RPAREN, + STATE(1138), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60050] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(842), 1, + anon_sym_GT_GT, + ACTIONS(2914), 1, + anon_sym_COMMA, + STATE(1146), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60067] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2916), 1, anon_sym_COMMA, - STATE(1065), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2918), 1, + anon_sym_RPAREN, + STATE(1142), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59965] = 5, + [60084] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2910), 1, + ACTIONS(2324), 1, + anon_sym_RBRACE, + ACTIONS(2920), 1, anon_sym_COMMA, - ACTIONS(2912), 1, - anon_sym_RPAREN, - STATE(1058), 1, - aux_sym_type_arguments_repeat1, + STATE(1061), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59982] = 3, + [60101] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2914), 3, + ACTIONS(2922), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [59995] = 5, + [60114] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_GT_GT, - ACTIONS(2916), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60012] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2918), 1, + ACTIONS(2924), 3, anon_sym_COMMA, - ACTIONS(2921), 1, anon_sym_RPAREN, - STATE(1156), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60029] = 5, + anon_sym_EQ, + [60127] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2923), 1, + ACTIONS(2926), 1, anon_sym_COMMA, - ACTIONS(2925), 1, + ACTIONS(2928), 1, anon_sym_RPAREN, - STATE(1141), 1, + STATE(1145), 1, aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60046] = 5, + [60144] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1885), 1, + ACTIONS(1881), 1, anon_sym_GT_GT, - ACTIONS(2927), 1, + ACTIONS(2930), 1, anon_sym_COMMA, - STATE(1072), 1, + STATE(1074), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60063] = 5, + [60161] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1905), 1, + ACTIONS(1915), 1, anon_sym_RBRACK, - ACTIONS(2929), 1, + ACTIONS(2932), 1, anon_sym_COMMA, - STATE(996), 1, + STATE(1016), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60080] = 5, + [60178] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, - sym__name, - ACTIONS(2931), 1, - anon_sym_RPAREN, - STATE(1216), 1, - sym_type_parameter, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(2934), 1, + anon_sym_EQ, + STATE(1429), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60097] = 5, + [60195] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2933), 1, + ACTIONS(2936), 1, anon_sym_COMMA, - ACTIONS(2935), 1, + ACTIONS(2938), 1, anon_sym_RPAREN, - STATE(1142), 1, - aux_sym_constant_tuple_repeat1, + STATE(1068), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60114] = 5, + [60212] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2937), 1, + ACTIONS(2940), 1, anon_sym_COMMA, - ACTIONS(2939), 1, + ACTIONS(2942), 1, anon_sym_RPAREN, - STATE(1066), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1149), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60131] = 5, + [60229] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2603), 1, - anon_sym_COLON, - ACTIONS(2941), 1, - anon_sym_EQ, - STATE(1432), 1, - sym__constant_type_annotation, + ACTIONS(2944), 1, + anon_sym_COMMA, + ACTIONS(2946), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60148] = 5, + [60246] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2943), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - ACTIONS(2946), 1, + ACTIONS(2950), 1, anon_sym_RPAREN, - STATE(1164), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1058), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60165] = 5, + [60263] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2266), 1, + ACTIONS(816), 1, anon_sym_RPAREN, - ACTIONS(2948), 1, + ACTIONS(2952), 1, anon_sym_COMMA, - STATE(1130), 1, - aux_sym_function_parameters_repeat1, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60182] = 5, + [60280] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2950), 1, + ACTIONS(2954), 1, anon_sym_COMMA, - ACTIONS(2952), 1, + ACTIONS(2956), 1, anon_sym_RPAREN, - STATE(1178), 1, - aux_sym_arguments_repeat1, + STATE(1184), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60199] = 5, + [60297] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(816), 1, - anon_sym_RPAREN, - ACTIONS(2954), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, + ACTIONS(2436), 1, + sym__name, + STATE(1250), 1, + sym_record_update_argument, + STATE(1381), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60216] = 5, + [60314] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2956), 1, - anon_sym_COMMA, ACTIONS(2958), 1, - anon_sym_RPAREN, - STATE(1040), 1, - aux_sym_constant_type_arguments_repeat1, + anon_sym_LPAREN, + ACTIONS(2960), 1, + anon_sym_DASH_GT, + STATE(1433), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60233] = 5, + [60331] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2960), 1, - anon_sym_COMMA, ACTIONS(2962), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, anon_sym_RPAREN, - STATE(1182), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1190), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60250] = 3, + [60348] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2071), 1, + anon_sym_RPAREN, + ACTIONS(2966), 1, + anon_sym_COMMA, + STATE(1036), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2964), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [60263] = 5, + [60365] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2966), 1, - anon_sym_LPAREN, + ACTIONS(810), 1, + anon_sym_RPAREN, ACTIONS(2968), 1, - anon_sym_DASH_GT, - STATE(1428), 1, - sym_function_parameter_types, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60280] = 5, + [60382] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(2970), 1, anon_sym_COMMA, ACTIONS(2972), 1, anon_sym_RPAREN, - STATE(1030), 1, - aux_sym_type_parameters_repeat1, + STATE(1057), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60297] = 5, + [60399] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(830), 1, - anon_sym_RPAREN, ACTIONS(2974), 1, - anon_sym_COMMA, - STATE(933), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60314] = 5, - ACTIONS(3), 1, - sym_module_comment, + anon_sym_LPAREN, ACTIONS(2976), 1, - anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_RPAREN, - STATE(1054), 1, - aux_sym_constant_tuple_type_repeat1, + anon_sym_DASH_GT, + STATE(1386), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60331] = 5, + [60416] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2980), 1, + ACTIONS(2978), 1, anon_sym_COMMA, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_RPAREN, - STATE(1049), 1, + STATE(1052), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60348] = 5, + [60433] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2984), 1, + ACTIONS(2982), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_RPAREN, - STATE(1165), 1, + STATE(1192), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60365] = 5, + [60450] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2966), 1, + ACTIONS(2958), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2986), 1, anon_sym_DASH_GT, - STATE(1379), 1, + STATE(1376), 1, sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60382] = 5, + [60467] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(744), 1, + ACTIONS(736), 1, anon_sym_RPAREN, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_COMMA, - STATE(1092), 1, + STATE(1103), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60399] = 5, + [60484] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2992), 1, + ACTIONS(2990), 1, anon_sym_COMMA, - ACTIONS(2994), 1, + ACTIONS(2992), 1, anon_sym_RBRACK, - STATE(1159), 1, + STATE(1163), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60416] = 5, + [60501] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2996), 1, + ACTIONS(2994), 1, anon_sym_COMMA, - ACTIONS(2998), 1, + ACTIONS(2996), 1, anon_sym_GT_GT, - STATE(1158), 1, + STATE(1162), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60433] = 5, + [60518] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3000), 1, - anon_sym_COMMA, - ACTIONS(3002), 1, + ACTIONS(1839), 1, anon_sym_RPAREN, - STATE(1053), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(2998), 1, + anon_sym_COMMA, + STATE(1113), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60450] = 5, + [60535] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, + ACTIONS(2622), 1, + sym__name, + ACTIONS(3000), 1, anon_sym_RPAREN, - ACTIONS(3004), 1, - anon_sym_COMMA, - STATE(1101), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1202), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60467] = 3, + [60552] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3002), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_RPAREN, + STATE(1186), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3006), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [60480] = 5, + [60569] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3008), 1, + ACTIONS(3007), 1, anon_sym_RBRACE, - ACTIONS(3010), 1, + ACTIONS(3009), 1, anon_sym_COMMA, - STATE(1152), 1, + STATE(1158), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60497] = 3, + [60586] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3012), 3, + ACTIONS(3011), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [60510] = 5, + anon_sym_RPAREN, + anon_sym_EQ, + [60599] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3014), 1, - anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(2622), 1, + sym__name, + ACTIONS(3013), 1, anon_sym_RPAREN, - STATE(1186), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1202), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60527] = 5, + [60616] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2571), 1, + ACTIONS(3013), 1, anon_sym_RPAREN, - ACTIONS(2625), 1, - sym__name, - STATE(1216), 1, - sym_type_parameter, + ACTIONS(3015), 1, + anon_sym_COMMA, + STATE(1186), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60544] = 4, + [60633] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3017), 1, + anon_sym_COMMA, ACTIONS(3019), 1, - anon_sym_LPAREN, - STATE(424), 1, - sym_function_parameters, + anon_sym_RPAREN, + STATE(1054), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60558] = 4, + [60650] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1213), 1, + ACTIONS(2252), 1, + anon_sym_RPAREN, + ACTIONS(3021), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym_function_parameters_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60667] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2047), 1, sym__upname, - STATE(880), 1, - sym_constructor_name, + STATE(1294), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60572] = 4, + [60681] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(3023), 1, sym__name, - STATE(1192), 1, - sym_identifier, + STATE(324), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60586] = 4, + [60695] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1193), 1, + STATE(1197), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60600] = 4, + [60709] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_external_function_parameters, + ACTIONS(2308), 1, + sym__name, + STATE(1200), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60614] = 4, + [60723] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, + ACTIONS(3025), 1, anon_sym_LPAREN, - STATE(1423), 1, + STATE(1425), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60628] = 4, + [60737] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3023), 1, - anon_sym_LBRACE, - ACTIONS(3025), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60642] = 4, + ACTIONS(3027), 2, + anon_sym_RBRACE, + sym__upname, + [60749] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1246), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60656] = 4, + ACTIONS(3029), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60761] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2561), 1, + ACTIONS(3025), 1, anon_sym_LPAREN, - STATE(1212), 1, - sym_anonymous_function_parameters, + STATE(1424), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60670] = 4, + [60775] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3027), 1, + ACTIONS(2308), 1, sym__name, - STATE(392), 1, - sym_module, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60684] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1260), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3029), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60696] = 3, + [60789] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3031), 2, + ACTIONS(3005), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60708] = 3, + [60801] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(51), 1, + anon_sym_DQUOTE, + STATE(466), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3033), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60720] = 4, + [60815] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2561), 1, + ACTIONS(2538), 1, anon_sym_LPAREN, - STATE(1259), 1, + STATE(1219), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60734] = 4, + [60829] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3035), 1, + ACTIONS(3031), 1, sym__name, - STATE(857), 1, - sym_identifier, + STATE(392), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60748] = 3, + [60843] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2841), 2, + ACTIONS(3033), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60760] = 4, + [60855] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2268), 1, + ACTIONS(3035), 1, anon_sym_LBRACE, - ACTIONS(2270), 1, + ACTIONS(3037), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60774] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(51), 1, - anon_sym_DQUOTE, - STATE(474), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60788] = 3, + [60869] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3037), 2, + ACTIONS(3039), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60800] = 4, + [60881] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3039), 1, + ACTIONS(3041), 1, anon_sym_LPAREN, - STATE(861), 1, + STATE(862), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60814] = 4, + [60895] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3035), 1, - sym__name, - STATE(824), 1, - sym_identifier, + ACTIONS(2256), 1, + anon_sym_LBRACE, + ACTIONS(2258), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60828] = 4, + [60909] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2561), 1, + ACTIONS(2538), 1, anon_sym_LPAREN, - STATE(1214), 1, + STATE(1270), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60842] = 4, + [60923] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1043), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60856] = 4, + ACTIONS(3043), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60935] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(3045), 1, sym__name, - STATE(1239), 1, + STATE(808), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60870] = 4, + [60949] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3041), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, - anon_sym_DASH_GT, + ACTIONS(2308), 1, + sym__name, + STATE(1242), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60884] = 3, + [60963] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3045), 2, + ACTIONS(2580), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60896] = 4, + [60975] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3047), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, - anon_sym_DASH_GT, + ACTIONS(2538), 1, + anon_sym_LPAREN, + STATE(1220), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60910] = 4, + [60989] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3051), 1, - anon_sym_type, - ACTIONS(3053), 1, - anon_sym_fn, + ACTIONS(3045), 1, + sym__name, + STATE(860), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60924] = 3, + [61003] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2308), 1, + sym__name, + STATE(1045), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2632), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60936] = 3, + [61017] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3047), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3055), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60948] = 3, + [61031] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3051), 1, + anon_sym_LBRACE, + ACTIONS(3053), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3057), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [60960] = 3, + [61045] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3055), 1, + anon_sym_type, + ACTIONS(3057), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3059), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60972] = 3, + [61059] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1889), 2, + ACTIONS(1877), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60984] = 4, + [61071] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3061), 1, - anon_sym_LBRACE, - STATE(864), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60998] = 3, + ACTIONS(3059), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61083] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [61010] = 3, + anon_sym_GT_GT, + [61095] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -55409,7 +55489,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3063), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61022] = 3, + [61107] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -55418,169 +55498,170 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3065), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61034] = 4, + [61119] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1351), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [61048] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3067), 1, - anon_sym_LBRACE, - ACTIONS(3069), 1, - anon_sym_DASH_GT, + ACTIONS(314), 1, + sym__upname, + STATE(131), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61062] = 3, + [61133] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3059), 2, + ACTIONS(3043), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61074] = 4, + [61145] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, - sym__name, - STATE(141), 1, - sym_label, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1250), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61088] = 3, + [61159] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2921), 2, + ACTIONS(3065), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61100] = 4, + [61171] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1305), 1, - sym_identifier, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(870), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61114] = 4, + [61185] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, - sym__upname, - STATE(126), 1, - sym_constructor_name, + ACTIONS(2308), 1, + sym__name, + STATE(1310), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61128] = 4, + [61199] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3069), 1, + anon_sym_LBRACE, ACTIONS(3071), 1, - anon_sym_LPAREN, - STATE(8), 1, - sym_arguments, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61142] = 4, + [61213] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3073), 1, - anon_sym_type, - ACTIONS(3075), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61156] = 3, + ACTIONS(2890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61225] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2436), 1, + sym__name, + STATE(139), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3077), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [61168] = 3, + [61239] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2855), 2, + ACTIONS(3073), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61180] = 4, + [61251] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(1322), 1, - sym_string, + ACTIONS(3075), 1, + anon_sym_type, + ACTIONS(3077), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61194] = 3, + [61265] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2047), 1, + sym__upname, + STATE(724), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3017), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61206] = 3, + [61279] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3079), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61218] = 4, + [61291] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3039), 1, + ACTIONS(3081), 1, anon_sym_LPAREN, - STATE(855), 1, + STATE(427), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61232] = 3, + [61305] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3079), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61244] = 3, + ACTIONS(3083), 2, + anon_sym_RBRACE, + sym__upname, + [61317] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3041), 1, + anon_sym_LPAREN, + STATE(856), 1, + sym_function_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [61331] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3081), 2, + ACTIONS(3085), 2, anon_sym_COMMA, anon_sym_LT_DASH, - [61256] = 3, + [61343] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -55589,867 +55670,846 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3079), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61268] = 4, + [61355] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2561), 1, + ACTIONS(3087), 1, anon_sym_LPAREN, - STATE(1226), 1, - sym_anonymous_function_parameters, + STATE(45), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61282] = 4, + [61369] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3083), 1, - sym__name, - STATE(824), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61296] = 3, + ACTIONS(3089), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [61381] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3091), 1, + sym__name, + STATE(808), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2576), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61308] = 4, + [61395] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3085), 1, - anon_sym_LPAREN, - STATE(507), 1, - sym__attribute_arguments, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(1323), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61322] = 4, + [61409] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3087), 1, - anon_sym_LPAREN, - STATE(893), 1, - sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61336] = 4, + ACTIONS(2694), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61421] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(857), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61350] = 3, + ACTIONS(2868), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61433] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3089), 2, + ACTIONS(3093), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [61362] = 3, + [61445] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(588), 1, + anon_sym_DQUOTE, + STATE(890), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3091), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61374] = 4, + [61459] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - anon_sym_DQUOTE, - STATE(903), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61388] = 4, + ACTIONS(2830), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61471] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(1361), 1, - sym_string, + ACTIONS(2538), 1, + anon_sym_LPAREN, + STATE(1233), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61402] = 3, + [61485] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2874), 2, + ACTIONS(2847), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [61414] = 4, + anon_sym_RPAREN, + [61497] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3083), 1, + ACTIONS(2308), 1, sym__name, - STATE(883), 1, + STATE(860), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61428] = 3, + [61511] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3095), 1, + anon_sym_LPAREN, + STATE(883), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3093), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61440] = 3, + [61525] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3095), 2, + ACTIONS(3097), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [61452] = 4, + [61537] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, - sym__upname, - STATE(725), 1, - sym_type_identifier, + ACTIONS(3099), 1, + anon_sym_LPAREN, + STATE(142), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61466] = 3, + [61551] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3101), 1, + anon_sym_LPAREN, + STATE(502), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3097), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61478] = 4, + [61565] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3099), 1, - anon_sym_LBRACE, - ACTIONS(3101), 1, - anon_sym_DASH_GT, + ACTIONS(2308), 1, + sym__name, + STATE(1294), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61492] = 3, + [61579] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(1364), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3103), 2, - anon_sym_RBRACE, - sym__upname, - [61504] = 3, + [61593] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3105), 2, - anon_sym_RBRACE, - sym__upname, - [61516] = 3, + ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [61605] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2818), 2, + ACTIONS(3103), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61528] = 4, + [61617] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3019), 1, + ACTIONS(3105), 1, anon_sym_LPAREN, - STATE(443), 1, - sym_function_parameters, + STATE(404), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61542] = 4, + [61631] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3107), 1, - anon_sym_LPAREN, - STATE(393), 1, - sym_arguments, + ACTIONS(1205), 1, + sym__upname, + STATE(882), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61556] = 3, + [61645] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3107), 1, + anon_sym_type, + ACTIONS(3109), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3109), 2, - anon_sym_RBRACE, - sym__upname, - [61568] = 4, + [61659] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3111), 1, - anon_sym_type, - ACTIONS(3113), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61582] = 3, + ACTIONS(2658), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61671] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3115), 2, - anon_sym_RBRACE, - sym__upname, - [61594] = 4, + ACTIONS(2761), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61683] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, - sym__upname, - STATE(1294), 1, - sym_type_identifier, + ACTIONS(3111), 1, + anon_sym_LBRACE, + ACTIONS(3113), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61608] = 4, + [61697] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, - sym__name, - STATE(1216), 1, - sym_type_parameter, + ACTIONS(600), 1, + sym__upname, + STATE(315), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61622] = 4, + [61711] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(2622), 1, sym__name, - STATE(1294), 1, - sym_identifier, + STATE(1202), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61636] = 4, + [61725] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3117), 1, + ACTIONS(2290), 1, sym__name, - STATE(849), 1, - sym_module, + STATE(395), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61650] = 4, + [61739] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2286), 1, - sym__name, - STATE(408), 1, - sym_label, + ACTIONS(3081), 1, + anon_sym_LPAREN, + STATE(443), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61664] = 4, + [61753] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3119), 1, - sym__name, - STATE(482), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61678] = 4, + ACTIONS(3115), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61765] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, + ACTIONS(3025), 1, anon_sym_LPAREN, - STATE(1359), 1, + STATE(1322), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61692] = 3, + [61779] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2846), 2, + ACTIONS(3117), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61704] = 4, + [61791] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3121), 1, - anon_sym_LPAREN, - STATE(136), 1, - sym_arguments, + ACTIONS(3119), 1, + sym__name, + STATE(846), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61718] = 4, + [61805] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1274), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61732] = 4, + ACTIONS(2743), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61817] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(626), 1, - sym__upname, - STATE(318), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61746] = 4, + ACTIONS(3121), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61829] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, - sym__upname, - STATE(1114), 1, - sym_type_identifier, + ACTIONS(2308), 1, + sym__name, + STATE(1276), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61760] = 4, + [61843] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(1364), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61774] = 4, + ACTIONS(3123), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61855] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1207), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61788] = 4, + ACTIONS(3125), 2, + anon_sym_RBRACE, + sym__upname, + [61867] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1163), 1, - sym_identifier, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(1368), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61802] = 4, + [61881] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - anon_sym_DQUOTE, - STATE(1412), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61816] = 3, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61893] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3123), 2, + ACTIONS(2797), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61828] = 4, + [61905] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(881), 1, + ACTIONS(894), 1, sym__upname, - STATE(334), 1, + STATE(333), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61842] = 3, + [61919] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3125), 2, + ACTIONS(1893), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61854] = 4, + [61931] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1132), 1, + STATE(1209), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61868] = 3, + [61945] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3127), 2, + ACTIONS(3129), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [61880] = 3, + [61957] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2643), 2, + ACTIONS(2766), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61892] = 4, + [61969] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__upname, - STATE(20), 1, - sym_constructor_name, + ACTIONS(2308), 1, + sym__name, + STATE(1164), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61906] = 4, + [61983] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1247), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61920] = 3, + ACTIONS(3131), 2, + anon_sym_RBRACE, + sym__upname, + [61995] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3129), 2, + ACTIONS(3133), 2, anon_sym_RBRACE, - sym__upname, - [61932] = 3, + anon_sym_COMMA, + [62007] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(304), 1, + anon_sym_DQUOTE, + STATE(1420), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2771), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61944] = 3, + [62021] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2308), 1, + sym__name, + STATE(1133), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3131), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61956] = 4, + [62035] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3133), 1, - anon_sym_LBRACE, - ACTIONS(3135), 1, - anon_sym_EQ, + ACTIONS(2308), 1, + sym__name, + STATE(1257), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61970] = 4, + [62049] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(2115), 1, sym__upname, - STATE(413), 1, + STATE(412), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61984] = 3, + [62063] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3137), 2, + ACTIONS(3135), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [61996] = 3, + [62075] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3137), 1, + anon_sym_COLON, + ACTIONS(3139), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2585), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62008] = 3, + [62089] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2667), 2, - anon_sym_RBRACE, + ACTIONS(2756), 2, anon_sym_COMMA, - [62020] = 4, + anon_sym_RPAREN, + [62101] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3119), 1, - sym__name, - STATE(549), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62034] = 4, + ACTIONS(2638), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62113] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3139), 1, + ACTIONS(3141), 1, anon_sym_LBRACE, - STATE(420), 1, + STATE(421), 1, sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62048] = 4, + [62127] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(2047), 1, sym__upname, - STATE(1250), 1, + STATE(1299), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62062] = 4, + [62141] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3141), 1, - anon_sym_COLON, - ACTIONS(3143), 1, - anon_sym_DOT, + ACTIONS(2047), 1, + sym__upname, + STATE(1119), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62076] = 4, + [62155] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3083), 1, - sym__name, - STATE(899), 1, - sym_identifier, + ACTIONS(3143), 1, + anon_sym_LBRACE, + ACTIONS(3145), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62090] = 4, + [62169] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, + ACTIONS(3147), 1, anon_sym_LPAREN, - STATE(1334), 1, - sym_external_function_parameters, + STATE(329), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62104] = 4, + [62183] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3145), 1, - anon_sym_LPAREN, - STATE(326), 1, - sym_arguments, + ACTIONS(61), 1, + sym__upname, + STATE(18), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62118] = 4, + [62197] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2517), 1, + ACTIONS(2490), 1, sym__name, - STATE(15), 1, + STATE(9), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62132] = 3, + [62211] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3025), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1887), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62144] = 3, + [62225] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3147), 2, + ACTIONS(2681), 2, anon_sym_COMMA, anon_sym_GT_GT, - [62156] = 3, + [62237] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2746), 2, + ACTIONS(3149), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [62168] = 3, + anon_sym_GT_GT, + [62249] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2704), 2, + ACTIONS(2730), 2, anon_sym_COMMA, anon_sym_GT_GT, - [62180] = 3, + [62261] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2709), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [62192] = 3, + ACTIONS(3151), 2, + anon_sym_RBRACE, + sym__upname, + [62273] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2693), 2, + ACTIONS(2703), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [62204] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3149), 1, - sym__name, - STATE(336), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [62218] = 3, + anon_sym_LT_DASH, + [62285] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3151), 2, + ACTIONS(3153), 2, anon_sym_COMMA, anon_sym_GT_GT, - [62230] = 4, + [62297] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3153), 1, - anon_sym_COMMA, ACTIONS(3155), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [62244] = 4, - ACTIONS(3), 1, - sym_module_comment, + anon_sym_COMMA, ACTIONS(3157), 1, - anon_sym_type, - ACTIONS(3159), 1, - anon_sym_fn, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62258] = 4, + [62311] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(2308), 1, sym__name, - STATE(1188), 1, + STATE(1135), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62272] = 4, + [62325] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, - sym__name, - STATE(1134), 1, - sym_identifier, + ACTIONS(3159), 1, + anon_sym_type, + ACTIONS(3161), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62286] = 3, + [62339] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3161), 1, - anon_sym_EQ, + ACTIONS(2308), 1, + sym__name, + STATE(1240), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62297] = 3, + [62353] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3163), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62308] = 3, + [62364] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3165), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62319] = 3, + [62375] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3167), 1, - anon_sym_type, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62330] = 3, + [62386] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3169), 1, - anon_sym_EQ, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62341] = 3, + [62397] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3171), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62352] = 3, + [62408] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3173), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62363] = 3, + [62419] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2382), 1, - anon_sym_RPAREN, + ACTIONS(3175), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62374] = 3, + [62430] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3175), 1, - anon_sym_COLON, + ACTIONS(2371), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62385] = 3, + [62441] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3177), 1, - anon_sym_EQ, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62396] = 3, + [62452] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3179), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62407] = 3, + [62463] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3181), 1, - anon_sym_DASH_GT, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62418] = 3, + [62474] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3183), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62429] = 3, + [62485] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3185), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62440] = 3, + [62496] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3187), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62451] = 3, + [62507] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3189), 1, @@ -56457,7 +56517,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62462] = 3, + [62518] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3191), 1, @@ -56465,31 +56525,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62473] = 3, + [62529] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3193), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62484] = 3, + [62540] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3195), 1, - anon_sym_EQ, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [62551] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1353), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62495] = 3, + [62562] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3197), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62506] = 3, + [62573] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3199), 1, @@ -56497,7 +56565,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62517] = 3, + [62584] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3201), 1, @@ -56505,15 +56573,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62528] = 3, + [62595] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3203), 1, - anon_sym_DOT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62539] = 3, + [62606] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3205), 1, @@ -56521,71 +56589,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62550] = 3, + [62617] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3207), 1, - sym__name, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62561] = 3, + [62628] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3209), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62572] = 3, + [62639] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3211), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62583] = 3, + [62650] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3213), 1, - anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62594] = 3, + [62661] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3215), 1, - anon_sym_EQ, + ACTIONS(3213), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62605] = 3, + [62672] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3217), 1, + ACTIONS(3215), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62616] = 3, + [62683] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3219), 1, - anon_sym_RBRACE, + ACTIONS(3217), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62627] = 3, + [62694] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1248), 1, - anon_sym_RPAREN, + ACTIONS(3219), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62638] = 3, + [62705] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3221), 1, @@ -56593,7 +56661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62649] = 3, + [62716] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3223), 1, @@ -56601,7 +56669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62660] = 3, + [62727] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3225), 1, @@ -56609,7 +56677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62671] = 3, + [62738] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3227), 1, @@ -56617,7 +56685,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62682] = 3, + [62749] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3229), 1, @@ -56625,15 +56693,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62693] = 3, + [62760] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3231), 1, - anon_sym_RBRACK, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62704] = 3, + [62771] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3233), 1, @@ -56641,31 +56709,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62715] = 3, + [62782] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3235), 1, - anon_sym_DASH_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62726] = 3, + [62793] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3237), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62737] = 3, + [62804] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3239), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62748] = 3, + [62815] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3241), 1, @@ -56673,23 +56741,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62759] = 3, + [62826] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3243), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62770] = 3, + [62837] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3245), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62781] = 3, + [62848] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3247), 1, @@ -56697,7 +56765,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62792] = 3, + [62859] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3249), 1, @@ -56705,15 +56773,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62803] = 3, + [62870] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3251), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62814] = 3, + [62881] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3253), 1, @@ -56721,23 +56789,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62825] = 3, + [62892] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3255), 1, - anon_sym_DOT, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62836] = 3, + [62903] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3257), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62847] = 3, + [62914] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3259), 1, @@ -56745,7 +56813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62858] = 3, + [62925] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3261), 1, @@ -56753,23 +56821,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62869] = 3, + [62936] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3263), 1, - anon_sym_EQ, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62880] = 3, + [62947] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3265), 1, - anon_sym_LBRACE, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62891] = 3, + [62958] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3267), 1, @@ -56777,87 +56845,79 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62902] = 3, + [62969] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3269), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [62913] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1357), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62924] = 3, + [62980] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3271), 1, - anon_sym_LT_DASH, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62935] = 3, + [62991] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3273), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62946] = 3, + [63002] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3275), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62957] = 3, + [63013] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3277), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62968] = 3, + [63024] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3279), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62979] = 3, + [63035] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3281), 1, - anon_sym_COLON, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62990] = 3, + [63046] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3283), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63001] = 3, + [63057] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3285), 1, - anon_sym_DASH_GT, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63012] = 3, + [63068] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3287), 1, @@ -56865,39 +56925,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63023] = 3, + [63079] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3289), 1, - anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63034] = 3, + [63090] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3291), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63045] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3143), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63056] = 3, + [63101] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3293), 1, - anon_sym_LBRACE, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63067] = 3, + [63112] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3295), 1, @@ -56905,7 +56957,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63078] = 3, + [63123] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3297), 1, @@ -56913,55 +56965,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63089] = 3, + [63134] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3139), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [63145] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3299), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63100] = 3, + [63156] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3301), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63111] = 3, + [63167] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3303), 1, - anon_sym_LT_DASH, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63122] = 3, + [63178] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3305), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63133] = 3, + [63189] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3307), 1, - anon_sym_DASH_GT, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63144] = 3, + [63200] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3309), 1, - anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63155] = 3, + [63211] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3311), 1, @@ -56969,39 +57029,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63166] = 3, + [63222] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3313), 1, - ts_builtin_sym_end, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63177] = 3, + [63233] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3315), 1, - anon_sym_DASH_GT, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63188] = 3, + [63244] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3317), 1, - anon_sym_RPAREN, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63199] = 3, + [63255] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3319), 1, - anon_sym_type, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63210] = 3, + [63266] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3321), 1, @@ -57009,159 +57069,159 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63221] = 3, + [63277] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3323), 1, - anon_sym_RBRACE, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63232] = 3, + [63288] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3325), 1, - anon_sym_type, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63243] = 3, + [63299] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3327), 1, - anon_sym_LBRACE, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63254] = 3, + [63310] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3329), 1, - sym__name, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63265] = 3, + [63321] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3331), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63276] = 3, + [63332] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3333), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63287] = 3, + [63343] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3335), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63298] = 3, + [63354] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3337), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63309] = 3, + [63365] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3339), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63320] = 3, + [63376] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3341), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63331] = 3, + [63387] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3343), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63342] = 3, + [63398] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3345), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63353] = 3, + [63409] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3347), 1, - anon_sym_RBRACK, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63364] = 3, + [63420] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3349), 1, - anon_sym_LBRACE, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63375] = 3, + [63431] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3351), 1, - anon_sym_EQ, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63386] = 3, + [63442] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3353), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63397] = 3, + [63453] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3355), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63408] = 3, + [63464] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3357), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63419] = 3, + [63475] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3359), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63430] = 3, + [63486] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3361), 1, @@ -57169,15 +57229,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63441] = 3, + [63497] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3363), 1, - anon_sym_COLON, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63452] = 3, + [63508] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3365), 1, @@ -57185,7 +57245,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63463] = 3, + [63519] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3367), 1, @@ -57193,31 +57253,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63474] = 3, + [63530] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3369), 1, - anon_sym_DASH_GT, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63485] = 3, + [63541] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3371), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63496] = 3, + [63552] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3373), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63507] = 3, + [63563] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3375), 1, @@ -57225,23 +57285,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63518] = 3, + [63574] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3377), 1, - anon_sym_EQ, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63529] = 3, + [63585] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3379), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63540] = 3, + [63596] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(3381), 1, @@ -57249,135 +57309,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, + [63607] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3383), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 0, [SMALL_STATE(7)] = 71, - [SMALL_STATE(8)] = 137, - [SMALL_STATE(9)] = 203, + [SMALL_STATE(8)] = 197, + [SMALL_STATE(9)] = 263, [SMALL_STATE(10)] = 329, [SMALL_STATE(11)] = 395, - [SMALL_STATE(12)] = 521, + [SMALL_STATE(12)] = 461, [SMALL_STATE(13)] = 587, - [SMALL_STATE(14)] = 713, - [SMALL_STATE(15)] = 783, - [SMALL_STATE(16)] = 849, - [SMALL_STATE(17)] = 975, - [SMALL_STATE(18)] = 1101, - [SMALL_STATE(19)] = 1167, - [SMALL_STATE(20)] = 1293, + [SMALL_STATE(14)] = 653, + [SMALL_STATE(15)] = 779, + [SMALL_STATE(16)] = 845, + [SMALL_STATE(17)] = 915, + [SMALL_STATE(18)] = 1041, + [SMALL_STATE(19)] = 1107, + [SMALL_STATE(20)] = 1233, [SMALL_STATE(21)] = 1359, - [SMALL_STATE(22)] = 1425, - [SMALL_STATE(23)] = 1491, - [SMALL_STATE(24)] = 1617, - [SMALL_STATE(25)] = 1683, - [SMALL_STATE(26)] = 1749, - [SMALL_STATE(27)] = 1815, - [SMALL_STATE(28)] = 1881, - [SMALL_STATE(29)] = 2007, - [SMALL_STATE(30)] = 2073, - [SMALL_STATE(31)] = 2199, - [SMALL_STATE(32)] = 2325, - [SMALL_STATE(33)] = 2451, - [SMALL_STATE(34)] = 2577, - [SMALL_STATE(35)] = 2647, - [SMALL_STATE(36)] = 2773, - [SMALL_STATE(37)] = 2899, - [SMALL_STATE(38)] = 3025, - [SMALL_STATE(39)] = 3095, - [SMALL_STATE(40)] = 3221, - [SMALL_STATE(41)] = 3347, - [SMALL_STATE(42)] = 3473, - [SMALL_STATE(43)] = 3599, - [SMALL_STATE(44)] = 3665, - [SMALL_STATE(45)] = 3791, - [SMALL_STATE(46)] = 3917, - [SMALL_STATE(47)] = 4043, - [SMALL_STATE(48)] = 4169, + [SMALL_STATE(22)] = 1485, + [SMALL_STATE(23)] = 1611, + [SMALL_STATE(24)] = 1737, + [SMALL_STATE(25)] = 1863, + [SMALL_STATE(26)] = 1929, + [SMALL_STATE(27)] = 1995, + [SMALL_STATE(28)] = 2061, + [SMALL_STATE(29)] = 2127, + [SMALL_STATE(30)] = 2253, + [SMALL_STATE(31)] = 2379, + [SMALL_STATE(32)] = 2505, + [SMALL_STATE(33)] = 2631, + [SMALL_STATE(34)] = 2757, + [SMALL_STATE(35)] = 2827, + [SMALL_STATE(36)] = 2953, + [SMALL_STATE(37)] = 3079, + [SMALL_STATE(38)] = 3145, + [SMALL_STATE(39)] = 3215, + [SMALL_STATE(40)] = 3341, + [SMALL_STATE(41)] = 3467, + [SMALL_STATE(42)] = 3593, + [SMALL_STATE(43)] = 3659, + [SMALL_STATE(44)] = 3785, + [SMALL_STATE(45)] = 3911, + [SMALL_STATE(46)] = 3977, + [SMALL_STATE(47)] = 4103, + [SMALL_STATE(48)] = 4229, [SMALL_STATE(49)] = 4295, - [SMALL_STATE(50)] = 4361, + [SMALL_STATE(50)] = 4421, [SMALL_STATE(51)] = 4487, [SMALL_STATE(52)] = 4613, [SMALL_STATE(53)] = 4739, [SMALL_STATE(54)] = 4865, [SMALL_STATE(55)] = 4991, - [SMALL_STATE(56)] = 5056, - [SMALL_STATE(57)] = 5121, - [SMALL_STATE(58)] = 5244, - [SMALL_STATE(59)] = 5309, - [SMALL_STATE(60)] = 5432, - [SMALL_STATE(61)] = 5499, - [SMALL_STATE(62)] = 5622, - [SMALL_STATE(63)] = 5745, - [SMALL_STATE(64)] = 5810, - [SMALL_STATE(65)] = 5933, - [SMALL_STATE(66)] = 5998, - [SMALL_STATE(67)] = 6065, - [SMALL_STATE(68)] = 6188, - [SMALL_STATE(69)] = 6255, - [SMALL_STATE(70)] = 6320, - [SMALL_STATE(71)] = 6443, - [SMALL_STATE(72)] = 6510, - [SMALL_STATE(73)] = 6633, - [SMALL_STATE(74)] = 6756, - [SMALL_STATE(75)] = 6821, + [SMALL_STATE(56)] = 5114, + [SMALL_STATE(57)] = 5237, + [SMALL_STATE(58)] = 5302, + [SMALL_STATE(59)] = 5425, + [SMALL_STATE(60)] = 5548, + [SMALL_STATE(61)] = 5613, + [SMALL_STATE(62)] = 5736, + [SMALL_STATE(63)] = 5859, + [SMALL_STATE(64)] = 5982, + [SMALL_STATE(65)] = 6047, + [SMALL_STATE(66)] = 6170, + [SMALL_STATE(67)] = 6235, + [SMALL_STATE(68)] = 6300, + [SMALL_STATE(69)] = 6367, + [SMALL_STATE(70)] = 6432, + [SMALL_STATE(71)] = 6555, + [SMALL_STATE(72)] = 6622, + [SMALL_STATE(73)] = 6687, + [SMALL_STATE(74)] = 6752, + [SMALL_STATE(75)] = 6819, [SMALL_STATE(76)] = 6886, - [SMALL_STATE(77)] = 7009, - [SMALL_STATE(78)] = 7132, + [SMALL_STATE(77)] = 6951, + [SMALL_STATE(78)] = 7074, [SMALL_STATE(79)] = 7197, [SMALL_STATE(80)] = 7320, - [SMALL_STATE(81)] = 7404, - [SMALL_STATE(82)] = 7468, - [SMALL_STATE(83)] = 7548, - [SMALL_STATE(84)] = 7630, - [SMALL_STATE(85)] = 7698, - [SMALL_STATE(86)] = 7824, - [SMALL_STATE(87)] = 7888, - [SMALL_STATE(88)] = 7952, + [SMALL_STATE(81)] = 7384, + [SMALL_STATE(82)] = 7448, + [SMALL_STATE(83)] = 7574, + [SMALL_STATE(84)] = 7658, + [SMALL_STATE(85)] = 7742, + [SMALL_STATE(86)] = 7806, + [SMALL_STATE(87)] = 7870, + [SMALL_STATE(88)] = 7942, [SMALL_STATE(89)] = 8016, [SMALL_STATE(90)] = 8080, - [SMALL_STATE(91)] = 8144, - [SMALL_STATE(92)] = 8208, - [SMALL_STATE(93)] = 8272, - [SMALL_STATE(94)] = 8398, - [SMALL_STATE(95)] = 8462, - [SMALL_STATE(96)] = 8526, - [SMALL_STATE(97)] = 8590, - [SMALL_STATE(98)] = 8654, - [SMALL_STATE(99)] = 8718, - [SMALL_STATE(100)] = 8802, - [SMALL_STATE(101)] = 8874, - [SMALL_STATE(102)] = 8938, - [SMALL_STATE(103)] = 9002, - [SMALL_STATE(104)] = 9086, - [SMALL_STATE(105)] = 9150, - [SMALL_STATE(106)] = 9214, - [SMALL_STATE(107)] = 9292, - [SMALL_STATE(108)] = 9366, - [SMALL_STATE(109)] = 9450, - [SMALL_STATE(110)] = 9576, - [SMALL_STATE(111)] = 9640, - [SMALL_STATE(112)] = 9766, - [SMALL_STATE(113)] = 9850, - [SMALL_STATE(114)] = 9934, + [SMALL_STATE(91)] = 8158, + [SMALL_STATE(92)] = 8222, + [SMALL_STATE(93)] = 8302, + [SMALL_STATE(94)] = 8366, + [SMALL_STATE(95)] = 8448, + [SMALL_STATE(96)] = 8512, + [SMALL_STATE(97)] = 8638, + [SMALL_STATE(98)] = 8702, + [SMALL_STATE(99)] = 8766, + [SMALL_STATE(100)] = 8892, + [SMALL_STATE(101)] = 8960, + [SMALL_STATE(102)] = 9024, + [SMALL_STATE(103)] = 9088, + [SMALL_STATE(104)] = 9152, + [SMALL_STATE(105)] = 9236, + [SMALL_STATE(106)] = 9300, + [SMALL_STATE(107)] = 9384, + [SMALL_STATE(108)] = 9448, + [SMALL_STATE(109)] = 9532, + [SMALL_STATE(110)] = 9596, + [SMALL_STATE(111)] = 9660, + [SMALL_STATE(112)] = 9786, + [SMALL_STATE(113)] = 9870, + [SMALL_STATE(114)] = 9954, [SMALL_STATE(115)] = 10018, [SMALL_STATE(116)] = 10082, - [SMALL_STATE(117)] = 10145, + [SMALL_STATE(117)] = 10205, [SMALL_STATE(118)] = 10268, [SMALL_STATE(119)] = 10391, [SMALL_STATE(120)] = 10514, [SMALL_STATE(121)] = 10637, [SMALL_STATE(122)] = 10760, [SMALL_STATE(123)] = 10883, - [SMALL_STATE(124)] = 11006, - [SMALL_STATE(125)] = 11129, - [SMALL_STATE(126)] = 11192, + [SMALL_STATE(124)] = 10946, + [SMALL_STATE(125)] = 11069, + [SMALL_STATE(126)] = 11132, [SMALL_STATE(127)] = 11255, [SMALL_STATE(128)] = 11378, [SMALL_STATE(129)] = 11501, - [SMALL_STATE(130)] = 11564, - [SMALL_STATE(131)] = 11687, + [SMALL_STATE(130)] = 11624, + [SMALL_STATE(131)] = 11747, [SMALL_STATE(132)] = 11810, [SMALL_STATE(133)] = 11930, [SMALL_STATE(134)] = 11996, @@ -57390,83 +57458,83 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(141)] = 12423, [SMALL_STATE(142)] = 12484, [SMALL_STATE(143)] = 12545, - [SMALL_STATE(144)] = 12610, - [SMALL_STATE(145)] = 12671, - [SMALL_STATE(146)] = 12736, - [SMALL_STATE(147)] = 12797, + [SMALL_STATE(144)] = 12606, + [SMALL_STATE(145)] = 12667, + [SMALL_STATE(146)] = 12728, + [SMALL_STATE(147)] = 12793, [SMALL_STATE(148)] = 12858, [SMALL_STATE(149)] = 12918, - [SMALL_STATE(150)] = 12978, - [SMALL_STATE(151)] = 13038, - [SMALL_STATE(152)] = 13152, - [SMALL_STATE(153)] = 13266, + [SMALL_STATE(150)] = 12980, + [SMALL_STATE(151)] = 13040, + [SMALL_STATE(152)] = 13100, + [SMALL_STATE(153)] = 13214, [SMALL_STATE(154)] = 13328, - [SMALL_STATE(155)] = 13390, - [SMALL_STATE(156)] = 13452, - [SMALL_STATE(157)] = 13512, - [SMALL_STATE(158)] = 13626, - [SMALL_STATE(159)] = 13686, - [SMALL_STATE(160)] = 13800, - [SMALL_STATE(161)] = 13914, - [SMALL_STATE(162)] = 14028, - [SMALL_STATE(163)] = 14088, - [SMALL_STATE(164)] = 14202, - [SMALL_STATE(165)] = 14262, - [SMALL_STATE(166)] = 14376, - [SMALL_STATE(167)] = 14436, + [SMALL_STATE(155)] = 13442, + [SMALL_STATE(156)] = 13556, + [SMALL_STATE(157)] = 13670, + [SMALL_STATE(158)] = 13732, + [SMALL_STATE(159)] = 13846, + [SMALL_STATE(160)] = 13906, + [SMALL_STATE(161)] = 14020, + [SMALL_STATE(162)] = 14080, + [SMALL_STATE(163)] = 14194, + [SMALL_STATE(164)] = 14254, + [SMALL_STATE(165)] = 14314, + [SMALL_STATE(166)] = 14428, + [SMALL_STATE(167)] = 14490, [SMALL_STATE(168)] = 14550, [SMALL_STATE(169)] = 14609, [SMALL_STATE(170)] = 14668, [SMALL_STATE(171)] = 14727, - [SMALL_STATE(172)] = 14838, - [SMALL_STATE(173)] = 14949, - [SMALL_STATE(174)] = 15060, - [SMALL_STATE(175)] = 15171, - [SMALL_STATE(176)] = 15282, - [SMALL_STATE(177)] = 15393, - [SMALL_STATE(178)] = 15504, - [SMALL_STATE(179)] = 15615, - [SMALL_STATE(180)] = 15726, - [SMALL_STATE(181)] = 15785, - [SMALL_STATE(182)] = 15844, - [SMALL_STATE(183)] = 15903, - [SMALL_STATE(184)] = 16014, - [SMALL_STATE(185)] = 16073, - [SMALL_STATE(186)] = 16184, - [SMALL_STATE(187)] = 16295, - [SMALL_STATE(188)] = 16354, - [SMALL_STATE(189)] = 16413, - [SMALL_STATE(190)] = 16472, - [SMALL_STATE(191)] = 16583, - [SMALL_STATE(192)] = 16694, - [SMALL_STATE(193)] = 16805, - [SMALL_STATE(194)] = 16864, - [SMALL_STATE(195)] = 16923, + [SMALL_STATE(172)] = 14786, + [SMALL_STATE(173)] = 14897, + [SMALL_STATE(174)] = 15008, + [SMALL_STATE(175)] = 15067, + [SMALL_STATE(176)] = 15178, + [SMALL_STATE(177)] = 15237, + [SMALL_STATE(178)] = 15348, + [SMALL_STATE(179)] = 15459, + [SMALL_STATE(180)] = 15570, + [SMALL_STATE(181)] = 15681, + [SMALL_STATE(182)] = 15740, + [SMALL_STATE(183)] = 15851, + [SMALL_STATE(184)] = 15962, + [SMALL_STATE(185)] = 16021, + [SMALL_STATE(186)] = 16080, + [SMALL_STATE(187)] = 16139, + [SMALL_STATE(188)] = 16250, + [SMALL_STATE(189)] = 16361, + [SMALL_STATE(190)] = 16420, + [SMALL_STATE(191)] = 16479, + [SMALL_STATE(192)] = 16590, + [SMALL_STATE(193)] = 16701, + [SMALL_STATE(194)] = 16812, + [SMALL_STATE(195)] = 16871, [SMALL_STATE(196)] = 16982, [SMALL_STATE(197)] = 17093, [SMALL_STATE(198)] = 17152, [SMALL_STATE(199)] = 17263, [SMALL_STATE(200)] = 17374, [SMALL_STATE(201)] = 17485, - [SMALL_STATE(202)] = 17596, - [SMALL_STATE(203)] = 17655, + [SMALL_STATE(202)] = 17544, + [SMALL_STATE(203)] = 17603, [SMALL_STATE(204)] = 17714, - [SMALL_STATE(205)] = 17822, - [SMALL_STATE(206)] = 17930, - [SMALL_STATE(207)] = 18038, - [SMALL_STATE(208)] = 18146, - [SMALL_STATE(209)] = 18254, - [SMALL_STATE(210)] = 18362, - [SMALL_STATE(211)] = 18470, + [SMALL_STATE(205)] = 17826, + [SMALL_STATE(206)] = 17934, + [SMALL_STATE(207)] = 18042, + [SMALL_STATE(208)] = 18150, + [SMALL_STATE(209)] = 18258, + [SMALL_STATE(210)] = 18366, + [SMALL_STATE(211)] = 18474, [SMALL_STATE(212)] = 18582, - [SMALL_STATE(213)] = 18694, - [SMALL_STATE(214)] = 18802, - [SMALL_STATE(215)] = 18910, - [SMALL_STATE(216)] = 19018, - [SMALL_STATE(217)] = 19126, - [SMALL_STATE(218)] = 19234, - [SMALL_STATE(219)] = 19342, - [SMALL_STATE(220)] = 19450, + [SMALL_STATE(213)] = 18690, + [SMALL_STATE(214)] = 18798, + [SMALL_STATE(215)] = 18906, + [SMALL_STATE(216)] = 19014, + [SMALL_STATE(217)] = 19122, + [SMALL_STATE(218)] = 19230, + [SMALL_STATE(219)] = 19338, + [SMALL_STATE(220)] = 19446, [SMALL_STATE(221)] = 19558, [SMALL_STATE(222)] = 19666, [SMALL_STATE(223)] = 19778, @@ -57476,57 +57544,57 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(227)] = 20210, [SMALL_STATE(228)] = 20318, [SMALL_STATE(229)] = 20426, - [SMALL_STATE(230)] = 20534, - [SMALL_STATE(231)] = 20642, - [SMALL_STATE(232)] = 20750, - [SMALL_STATE(233)] = 20858, - [SMALL_STATE(234)] = 20966, - [SMALL_STATE(235)] = 21074, - [SMALL_STATE(236)] = 21182, - [SMALL_STATE(237)] = 21290, - [SMALL_STATE(238)] = 21398, - [SMALL_STATE(239)] = 21510, - [SMALL_STATE(240)] = 21618, - [SMALL_STATE(241)] = 21726, - [SMALL_STATE(242)] = 21838, - [SMALL_STATE(243)] = 21950, - [SMALL_STATE(244)] = 22058, - [SMALL_STATE(245)] = 22166, - [SMALL_STATE(246)] = 22274, - [SMALL_STATE(247)] = 22382, - [SMALL_STATE(248)] = 22490, - [SMALL_STATE(249)] = 22598, - [SMALL_STATE(250)] = 22710, - [SMALL_STATE(251)] = 22818, - [SMALL_STATE(252)] = 22926, - [SMALL_STATE(253)] = 23034, + [SMALL_STATE(230)] = 20538, + [SMALL_STATE(231)] = 20650, + [SMALL_STATE(232)] = 20762, + [SMALL_STATE(233)] = 20870, + [SMALL_STATE(234)] = 20978, + [SMALL_STATE(235)] = 21086, + [SMALL_STATE(236)] = 21198, + [SMALL_STATE(237)] = 21306, + [SMALL_STATE(238)] = 21418, + [SMALL_STATE(239)] = 21526, + [SMALL_STATE(240)] = 21634, + [SMALL_STATE(241)] = 21742, + [SMALL_STATE(242)] = 21850, + [SMALL_STATE(243)] = 21958, + [SMALL_STATE(244)] = 22066, + [SMALL_STATE(245)] = 22174, + [SMALL_STATE(246)] = 22282, + [SMALL_STATE(247)] = 22390, + [SMALL_STATE(248)] = 22498, + [SMALL_STATE(249)] = 22606, + [SMALL_STATE(250)] = 22714, + [SMALL_STATE(251)] = 22822, + [SMALL_STATE(252)] = 22930, + [SMALL_STATE(253)] = 23038, [SMALL_STATE(254)] = 23146, [SMALL_STATE(255)] = 23254, [SMALL_STATE(256)] = 23362, [SMALL_STATE(257)] = 23470, [SMALL_STATE(258)] = 23578, [SMALL_STATE(259)] = 23686, - [SMALL_STATE(260)] = 23794, - [SMALL_STATE(261)] = 23906, - [SMALL_STATE(262)] = 24014, + [SMALL_STATE(260)] = 23798, + [SMALL_STATE(261)] = 23910, + [SMALL_STATE(262)] = 24018, [SMALL_STATE(263)] = 24126, [SMALL_STATE(264)] = 24234, [SMALL_STATE(265)] = 24342, [SMALL_STATE(266)] = 24450, [SMALL_STATE(267)] = 24558, - [SMALL_STATE(268)] = 24666, - [SMALL_STATE(269)] = 24774, - [SMALL_STATE(270)] = 24882, + [SMALL_STATE(268)] = 24670, + [SMALL_STATE(269)] = 24778, + [SMALL_STATE(270)] = 24886, [SMALL_STATE(271)] = 24994, - [SMALL_STATE(272)] = 25102, - [SMALL_STATE(273)] = 25210, - [SMALL_STATE(274)] = 25318, + [SMALL_STATE(272)] = 25106, + [SMALL_STATE(273)] = 25214, + [SMALL_STATE(274)] = 25322, [SMALL_STATE(275)] = 25430, [SMALL_STATE(276)] = 25488, [SMALL_STATE(277)] = 25596, [SMALL_STATE(278)] = 25704, [SMALL_STATE(279)] = 25812, - [SMALL_STATE(280)] = 25920, + [SMALL_STATE(280)] = 25874, [SMALL_STATE(281)] = 25982, [SMALL_STATE(282)] = 26090, [SMALL_STATE(283)] = 26198, @@ -57538,29 +57606,29 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(289)] = 26846, [SMALL_STATE(290)] = 26905, [SMALL_STATE(291)] = 27014, - [SMALL_STATE(292)] = 27120, - [SMALL_STATE(293)] = 27226, - [SMALL_STATE(294)] = 27298, - [SMALL_STATE(295)] = 27374, - [SMALL_STATE(296)] = 27480, - [SMALL_STATE(297)] = 27586, - [SMALL_STATE(298)] = 27692, - [SMALL_STATE(299)] = 27798, - [SMALL_STATE(300)] = 27874, - [SMALL_STATE(301)] = 27930, - [SMALL_STATE(302)] = 28036, - [SMALL_STATE(303)] = 28112, - [SMALL_STATE(304)] = 28172, - [SMALL_STATE(305)] = 28248, - [SMALL_STATE(306)] = 28312, - [SMALL_STATE(307)] = 28386, - [SMALL_STATE(308)] = 28492, - [SMALL_STATE(309)] = 28568, - [SMALL_STATE(310)] = 28644, - [SMALL_STATE(311)] = 28750, - [SMALL_STATE(312)] = 28856, - [SMALL_STATE(313)] = 28932, - [SMALL_STATE(314)] = 28998, + [SMALL_STATE(292)] = 27090, + [SMALL_STATE(293)] = 27196, + [SMALL_STATE(294)] = 27302, + [SMALL_STATE(295)] = 27408, + [SMALL_STATE(296)] = 27474, + [SMALL_STATE(297)] = 27538, + [SMALL_STATE(298)] = 27644, + [SMALL_STATE(299)] = 27750, + [SMALL_STATE(300)] = 27826, + [SMALL_STATE(301)] = 27902, + [SMALL_STATE(302)] = 27974, + [SMALL_STATE(303)] = 28080, + [SMALL_STATE(304)] = 28154, + [SMALL_STATE(305)] = 28230, + [SMALL_STATE(306)] = 28290, + [SMALL_STATE(307)] = 28396, + [SMALL_STATE(308)] = 28452, + [SMALL_STATE(309)] = 28522, + [SMALL_STATE(310)] = 28628, + [SMALL_STATE(311)] = 28704, + [SMALL_STATE(312)] = 28810, + [SMALL_STATE(313)] = 28886, + [SMALL_STATE(314)] = 28962, [SMALL_STATE(315)] = 29068, [SMALL_STATE(316)] = 29123, [SMALL_STATE(317)] = 29178, @@ -57578,51 +57646,51 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(329)] = 29802, [SMALL_STATE(330)] = 29852, [SMALL_STATE(331)] = 29902, - [SMALL_STATE(332)] = 29956, - [SMALL_STATE(333)] = 30006, - [SMALL_STATE(334)] = 30056, - [SMALL_STATE(335)] = 30106, + [SMALL_STATE(332)] = 29952, + [SMALL_STATE(333)] = 30002, + [SMALL_STATE(334)] = 30052, + [SMALL_STATE(335)] = 30102, [SMALL_STATE(336)] = 30156, - [SMALL_STATE(337)] = 30206, + [SMALL_STATE(337)] = 30210, [SMALL_STATE(338)] = 30260, - [SMALL_STATE(339)] = 30314, + [SMALL_STATE(339)] = 30310, [SMALL_STATE(340)] = 30364, [SMALL_STATE(341)] = 30414, [SMALL_STATE(342)] = 30464, [SMALL_STATE(343)] = 30513, [SMALL_STATE(344)] = 30562, [SMALL_STATE(345)] = 30611, - [SMALL_STATE(346)] = 30660, - [SMALL_STATE(347)] = 30711, - [SMALL_STATE(348)] = 30762, - [SMALL_STATE(349)] = 30813, - [SMALL_STATE(350)] = 30862, + [SMALL_STATE(346)] = 30662, + [SMALL_STATE(347)] = 30713, + [SMALL_STATE(348)] = 30764, + [SMALL_STATE(349)] = 30815, + [SMALL_STATE(350)] = 30864, [SMALL_STATE(351)] = 30913, [SMALL_STATE(352)] = 30962, [SMALL_STATE(353)] = 31011, [SMALL_STATE(354)] = 31060, - [SMALL_STATE(355)] = 31124, - [SMALL_STATE(356)] = 31172, - [SMALL_STATE(357)] = 31240, - [SMALL_STATE(358)] = 31288, - [SMALL_STATE(359)] = 31336, - [SMALL_STATE(360)] = 31384, - [SMALL_STATE(361)] = 31432, - [SMALL_STATE(362)] = 31500, - [SMALL_STATE(363)] = 31548, - [SMALL_STATE(364)] = 31614, - [SMALL_STATE(365)] = 31666, - [SMALL_STATE(366)] = 31728, - [SMALL_STATE(367)] = 31796, - [SMALL_STATE(368)] = 31844, - [SMALL_STATE(369)] = 31892, - [SMALL_STATE(370)] = 31940, - [SMALL_STATE(371)] = 31988, - [SMALL_STATE(372)] = 32044, - [SMALL_STATE(373)] = 32112, - [SMALL_STATE(374)] = 32180, - [SMALL_STATE(375)] = 32228, - [SMALL_STATE(376)] = 32276, + [SMALL_STATE(355)] = 31122, + [SMALL_STATE(356)] = 31170, + [SMALL_STATE(357)] = 31226, + [SMALL_STATE(358)] = 31284, + [SMALL_STATE(359)] = 31352, + [SMALL_STATE(360)] = 31420, + [SMALL_STATE(361)] = 31468, + [SMALL_STATE(362)] = 31516, + [SMALL_STATE(363)] = 31580, + [SMALL_STATE(364)] = 31646, + [SMALL_STATE(365)] = 31694, + [SMALL_STATE(366)] = 31762, + [SMALL_STATE(367)] = 31814, + [SMALL_STATE(368)] = 31862, + [SMALL_STATE(369)] = 31910, + [SMALL_STATE(370)] = 31958, + [SMALL_STATE(371)] = 32006, + [SMALL_STATE(372)] = 32054, + [SMALL_STATE(373)] = 32122, + [SMALL_STATE(374)] = 32190, + [SMALL_STATE(375)] = 32238, + [SMALL_STATE(376)] = 32286, [SMALL_STATE(377)] = 32334, [SMALL_STATE(378)] = 32382, [SMALL_STATE(379)] = 32450, @@ -57641,79 +57709,79 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(392)] = 33076, [SMALL_STATE(393)] = 33124, [SMALL_STATE(394)] = 33168, - [SMALL_STATE(395)] = 33216, - [SMALL_STATE(396)] = 33260, - [SMALL_STATE(397)] = 33304, - [SMALL_STATE(398)] = 33388, - [SMALL_STATE(399)] = 33432, - [SMALL_STATE(400)] = 33516, - [SMALL_STATE(401)] = 33600, - [SMALL_STATE(402)] = 33648, - [SMALL_STATE(403)] = 33692, + [SMALL_STATE(395)] = 33252, + [SMALL_STATE(396)] = 33296, + [SMALL_STATE(397)] = 33344, + [SMALL_STATE(398)] = 33428, + [SMALL_STATE(399)] = 33512, + [SMALL_STATE(400)] = 33556, + [SMALL_STATE(401)] = 33604, + [SMALL_STATE(402)] = 33688, + [SMALL_STATE(403)] = 33732, [SMALL_STATE(404)] = 33776, [SMALL_STATE(405)] = 33820, [SMALL_STATE(406)] = 33868, [SMALL_STATE(407)] = 33912, - [SMALL_STATE(408)] = 33960, - [SMALL_STATE(409)] = 34004, + [SMALL_STATE(408)] = 33956, + [SMALL_STATE(409)] = 34000, [SMALL_STATE(410)] = 34048, [SMALL_STATE(411)] = 34092, - [SMALL_STATE(412)] = 34136, + [SMALL_STATE(412)] = 34140, [SMALL_STATE(413)] = 34184, [SMALL_STATE(414)] = 34228, - [SMALL_STATE(415)] = 34271, - [SMALL_STATE(416)] = 34354, - [SMALL_STATE(417)] = 34397, - [SMALL_STATE(418)] = 34440, - [SMALL_STATE(419)] = 34485, - [SMALL_STATE(420)] = 34542, - [SMALL_STATE(421)] = 34587, - [SMALL_STATE(422)] = 34630, - [SMALL_STATE(423)] = 34673, - [SMALL_STATE(424)] = 34754, - [SMALL_STATE(425)] = 34801, - [SMALL_STATE(426)] = 34844, + [SMALL_STATE(415)] = 34275, + [SMALL_STATE(416)] = 34332, + [SMALL_STATE(417)] = 34377, + [SMALL_STATE(418)] = 34420, + [SMALL_STATE(419)] = 34463, + [SMALL_STATE(420)] = 34508, + [SMALL_STATE(421)] = 34551, + [SMALL_STATE(422)] = 34596, + [SMALL_STATE(423)] = 34639, + [SMALL_STATE(424)] = 34682, + [SMALL_STATE(425)] = 34765, + [SMALL_STATE(426)] = 34846, [SMALL_STATE(427)] = 34889, - [SMALL_STATE(428)] = 34946, - [SMALL_STATE(429)] = 34989, - [SMALL_STATE(430)] = 35034, - [SMALL_STATE(431)] = 35077, - [SMALL_STATE(432)] = 35120, - [SMALL_STATE(433)] = 35163, - [SMALL_STATE(434)] = 35210, - [SMALL_STATE(435)] = 35253, - [SMALL_STATE(436)] = 35336, - [SMALL_STATE(437)] = 35393, + [SMALL_STATE(428)] = 34936, + [SMALL_STATE(429)] = 34993, + [SMALL_STATE(430)] = 35036, + [SMALL_STATE(431)] = 35081, + [SMALL_STATE(432)] = 35126, + [SMALL_STATE(433)] = 35169, + [SMALL_STATE(434)] = 35212, + [SMALL_STATE(435)] = 35293, + [SMALL_STATE(436)] = 35376, + [SMALL_STATE(437)] = 35419, [SMALL_STATE(438)] = 35476, - [SMALL_STATE(439)] = 35519, - [SMALL_STATE(440)] = 35564, - [SMALL_STATE(441)] = 35609, - [SMALL_STATE(442)] = 35654, - [SMALL_STATE(443)] = 35697, - [SMALL_STATE(444)] = 35744, - [SMALL_STATE(445)] = 35787, - [SMALL_STATE(446)] = 35830, - [SMALL_STATE(447)] = 35873, - [SMALL_STATE(448)] = 35916, - [SMALL_STATE(449)] = 35959, - [SMALL_STATE(450)] = 36002, - [SMALL_STATE(451)] = 36059, - [SMALL_STATE(452)] = 36116, - [SMALL_STATE(453)] = 36159, - [SMALL_STATE(454)] = 36202, - [SMALL_STATE(455)] = 36259, - [SMALL_STATE(456)] = 36340, + [SMALL_STATE(439)] = 35521, + [SMALL_STATE(440)] = 35566, + [SMALL_STATE(441)] = 35649, + [SMALL_STATE(442)] = 35692, + [SMALL_STATE(443)] = 35735, + [SMALL_STATE(444)] = 35782, + [SMALL_STATE(445)] = 35825, + [SMALL_STATE(446)] = 35868, + [SMALL_STATE(447)] = 35911, + [SMALL_STATE(448)] = 35954, + [SMALL_STATE(449)] = 35997, + [SMALL_STATE(450)] = 36040, + [SMALL_STATE(451)] = 36097, + [SMALL_STATE(452)] = 36154, + [SMALL_STATE(453)] = 36197, + [SMALL_STATE(454)] = 36240, + [SMALL_STATE(455)] = 36297, + [SMALL_STATE(456)] = 36344, [SMALL_STATE(457)] = 36387, [SMALL_STATE(458)] = 36429, - [SMALL_STATE(459)] = 36471, + [SMALL_STATE(459)] = 36473, [SMALL_STATE(460)] = 36515, [SMALL_STATE(461)] = 36557, [SMALL_STATE(462)] = 36599, [SMALL_STATE(463)] = 36641, [SMALL_STATE(464)] = 36683, - [SMALL_STATE(465)] = 36725, - [SMALL_STATE(466)] = 36785, - [SMALL_STATE(467)] = 36841, + [SMALL_STATE(465)] = 36739, + [SMALL_STATE(466)] = 36781, + [SMALL_STATE(467)] = 36823, [SMALL_STATE(468)] = 36883, [SMALL_STATE(469)] = 36925, [SMALL_STATE(470)] = 36985, @@ -57723,36 +57791,36 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(474)] = 37153, [SMALL_STATE(475)] = 37195, [SMALL_STATE(476)] = 37237, - [SMALL_STATE(477)] = 37279, - [SMALL_STATE(478)] = 37337, - [SMALL_STATE(479)] = 37379, - [SMALL_STATE(480)] = 37435, - [SMALL_STATE(481)] = 37489, - [SMALL_STATE(482)] = 37531, - [SMALL_STATE(483)] = 37573, - [SMALL_STATE(484)] = 37615, - [SMALL_STATE(485)] = 37657, - [SMALL_STATE(486)] = 37699, - [SMALL_STATE(487)] = 37741, - [SMALL_STATE(488)] = 37783, - [SMALL_STATE(489)] = 37825, - [SMALL_STATE(490)] = 37867, - [SMALL_STATE(491)] = 37909, - [SMALL_STATE(492)] = 37951, - [SMALL_STATE(493)] = 37993, - [SMALL_STATE(494)] = 38035, - [SMALL_STATE(495)] = 38077, - [SMALL_STATE(496)] = 38119, - [SMALL_STATE(497)] = 38161, - [SMALL_STATE(498)] = 38213, - [SMALL_STATE(499)] = 38255, - [SMALL_STATE(500)] = 38297, - [SMALL_STATE(501)] = 38339, - [SMALL_STATE(502)] = 38381, - [SMALL_STATE(503)] = 38431, - [SMALL_STATE(504)] = 38473, - [SMALL_STATE(505)] = 38515, - [SMALL_STATE(506)] = 38557, + [SMALL_STATE(477)] = 37283, + [SMALL_STATE(478)] = 37341, + [SMALL_STATE(479)] = 37383, + [SMALL_STATE(480)] = 37439, + [SMALL_STATE(481)] = 37493, + [SMALL_STATE(482)] = 37535, + [SMALL_STATE(483)] = 37577, + [SMALL_STATE(484)] = 37619, + [SMALL_STATE(485)] = 37661, + [SMALL_STATE(486)] = 37703, + [SMALL_STATE(487)] = 37745, + [SMALL_STATE(488)] = 37787, + [SMALL_STATE(489)] = 37829, + [SMALL_STATE(490)] = 37871, + [SMALL_STATE(491)] = 37913, + [SMALL_STATE(492)] = 37965, + [SMALL_STATE(493)] = 38007, + [SMALL_STATE(494)] = 38049, + [SMALL_STATE(495)] = 38091, + [SMALL_STATE(496)] = 38133, + [SMALL_STATE(497)] = 38175, + [SMALL_STATE(498)] = 38225, + [SMALL_STATE(499)] = 38267, + [SMALL_STATE(500)] = 38309, + [SMALL_STATE(501)] = 38351, + [SMALL_STATE(502)] = 38393, + [SMALL_STATE(503)] = 38435, + [SMALL_STATE(504)] = 38477, + [SMALL_STATE(505)] = 38519, + [SMALL_STATE(506)] = 38561, [SMALL_STATE(507)] = 38603, [SMALL_STATE(508)] = 38645, [SMALL_STATE(509)] = 38687, @@ -57760,927 +57828,928 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(511)] = 38771, [SMALL_STATE(512)] = 38813, [SMALL_STATE(513)] = 38855, - [SMALL_STATE(514)] = 38911, - [SMALL_STATE(515)] = 38953, - [SMALL_STATE(516)] = 38995, - [SMALL_STATE(517)] = 39037, - [SMALL_STATE(518)] = 39079, - [SMALL_STATE(519)] = 39121, - [SMALL_STATE(520)] = 39163, - [SMALL_STATE(521)] = 39205, - [SMALL_STATE(522)] = 39247, - [SMALL_STATE(523)] = 39289, - [SMALL_STATE(524)] = 39331, - [SMALL_STATE(525)] = 39373, - [SMALL_STATE(526)] = 39433, - [SMALL_STATE(527)] = 39489, - [SMALL_STATE(528)] = 39531, - [SMALL_STATE(529)] = 39573, - [SMALL_STATE(530)] = 39615, - [SMALL_STATE(531)] = 39657, - [SMALL_STATE(532)] = 39699, - [SMALL_STATE(533)] = 39741, - [SMALL_STATE(534)] = 39783, - [SMALL_STATE(535)] = 39825, - [SMALL_STATE(536)] = 39867, - [SMALL_STATE(537)] = 39909, - [SMALL_STATE(538)] = 39951, - [SMALL_STATE(539)] = 39993, - [SMALL_STATE(540)] = 40035, - [SMALL_STATE(541)] = 40077, - [SMALL_STATE(542)] = 40119, + [SMALL_STATE(514)] = 38897, + [SMALL_STATE(515)] = 38939, + [SMALL_STATE(516)] = 38981, + [SMALL_STATE(517)] = 39023, + [SMALL_STATE(518)] = 39065, + [SMALL_STATE(519)] = 39107, + [SMALL_STATE(520)] = 39149, + [SMALL_STATE(521)] = 39193, + [SMALL_STATE(522)] = 39235, + [SMALL_STATE(523)] = 39277, + [SMALL_STATE(524)] = 39319, + [SMALL_STATE(525)] = 39361, + [SMALL_STATE(526)] = 39421, + [SMALL_STATE(527)] = 39477, + [SMALL_STATE(528)] = 39519, + [SMALL_STATE(529)] = 39561, + [SMALL_STATE(530)] = 39603, + [SMALL_STATE(531)] = 39645, + [SMALL_STATE(532)] = 39687, + [SMALL_STATE(533)] = 39743, + [SMALL_STATE(534)] = 39785, + [SMALL_STATE(535)] = 39827, + [SMALL_STATE(536)] = 39869, + [SMALL_STATE(537)] = 39911, + [SMALL_STATE(538)] = 39953, + [SMALL_STATE(539)] = 39995, + [SMALL_STATE(540)] = 40037, + [SMALL_STATE(541)] = 40079, + [SMALL_STATE(542)] = 40121, [SMALL_STATE(543)] = 40163, [SMALL_STATE(544)] = 40205, - [SMALL_STATE(545)] = 40247, - [SMALL_STATE(546)] = 40289, - [SMALL_STATE(547)] = 40331, - [SMALL_STATE(548)] = 40373, + [SMALL_STATE(545)] = 40249, + [SMALL_STATE(546)] = 40291, + [SMALL_STATE(547)] = 40333, + [SMALL_STATE(548)] = 40375, [SMALL_STATE(549)] = 40417, [SMALL_STATE(550)] = 40459, [SMALL_STATE(551)] = 40501, [SMALL_STATE(552)] = 40543, [SMALL_STATE(553)] = 40603, [SMALL_STATE(554)] = 40645, - [SMALL_STATE(555)] = 40720, - [SMALL_STATE(556)] = 40795, - [SMALL_STATE(557)] = 40872, - [SMALL_STATE(558)] = 40917, - [SMALL_STATE(559)] = 40994, - [SMALL_STATE(560)] = 41071, - [SMALL_STATE(561)] = 41124, - [SMALL_STATE(562)] = 41201, - [SMALL_STATE(563)] = 41278, - [SMALL_STATE(564)] = 41331, - [SMALL_STATE(565)] = 41384, - [SMALL_STATE(566)] = 41461, - [SMALL_STATE(567)] = 41538, - [SMALL_STATE(568)] = 41606, - [SMALL_STATE(569)] = 41680, - [SMALL_STATE(570)] = 41754, - [SMALL_STATE(571)] = 41822, - [SMALL_STATE(572)] = 41896, - [SMALL_STATE(573)] = 41970, - [SMALL_STATE(574)] = 42044, - [SMALL_STATE(575)] = 42118, - [SMALL_STATE(576)] = 42176, - [SMALL_STATE(577)] = 42244, - [SMALL_STATE(578)] = 42312, - [SMALL_STATE(579)] = 42380, - [SMALL_STATE(580)] = 42454, - [SMALL_STATE(581)] = 42522, - [SMALL_STATE(582)] = 42590, - [SMALL_STATE(583)] = 42658, - [SMALL_STATE(584)] = 42732, - [SMALL_STATE(585)] = 42800, - [SMALL_STATE(586)] = 42868, - [SMALL_STATE(587)] = 42907, - [SMALL_STATE(588)] = 42970, - [SMALL_STATE(589)] = 43041, - [SMALL_STATE(590)] = 43080, - [SMALL_STATE(591)] = 43119, - [SMALL_STATE(592)] = 43182, - [SMALL_STATE(593)] = 43221, - [SMALL_STATE(594)] = 43260, - [SMALL_STATE(595)] = 43331, - [SMALL_STATE(596)] = 43370, - [SMALL_STATE(597)] = 43409, - [SMALL_STATE(598)] = 43448, - [SMALL_STATE(599)] = 43487, - [SMALL_STATE(600)] = 43526, - [SMALL_STATE(601)] = 43597, - [SMALL_STATE(602)] = 43668, - [SMALL_STATE(603)] = 43739, - [SMALL_STATE(604)] = 43810, - [SMALL_STATE(605)] = 43849, - [SMALL_STATE(606)] = 43888, - [SMALL_STATE(607)] = 43927, - [SMALL_STATE(608)] = 43966, - [SMALL_STATE(609)] = 44005, - [SMALL_STATE(610)] = 44076, - [SMALL_STATE(611)] = 44147, - [SMALL_STATE(612)] = 44218, - [SMALL_STATE(613)] = 44289, - [SMALL_STATE(614)] = 44328, - [SMALL_STATE(615)] = 44367, - [SMALL_STATE(616)] = 44430, - [SMALL_STATE(617)] = 44501, - [SMALL_STATE(618)] = 44572, - [SMALL_STATE(619)] = 44643, - [SMALL_STATE(620)] = 44682, - [SMALL_STATE(621)] = 44745, - [SMALL_STATE(622)] = 44811, - [SMALL_STATE(623)] = 44877, - [SMALL_STATE(624)] = 44943, - [SMALL_STATE(625)] = 45003, - [SMALL_STATE(626)] = 45071, - [SMALL_STATE(627)] = 45131, - [SMALL_STATE(628)] = 45199, - [SMALL_STATE(629)] = 45265, - [SMALL_STATE(630)] = 45325, - [SMALL_STATE(631)] = 45393, - [SMALL_STATE(632)] = 45453, - [SMALL_STATE(633)] = 45519, - [SMALL_STATE(634)] = 45585, - [SMALL_STATE(635)] = 45651, - [SMALL_STATE(636)] = 45717, - [SMALL_STATE(637)] = 45783, - [SMALL_STATE(638)] = 45849, - [SMALL_STATE(639)] = 45909, - [SMALL_STATE(640)] = 45972, - [SMALL_STATE(641)] = 46035, - [SMALL_STATE(642)] = 46090, - [SMALL_STATE(643)] = 46153, - [SMALL_STATE(644)] = 46216, - [SMALL_STATE(645)] = 46281, - [SMALL_STATE(646)] = 46344, - [SMALL_STATE(647)] = 46407, - [SMALL_STATE(648)] = 46470, - [SMALL_STATE(649)] = 46533, - [SMALL_STATE(650)] = 46596, - [SMALL_STATE(651)] = 46659, - [SMALL_STATE(652)] = 46724, - [SMALL_STATE(653)] = 46779, - [SMALL_STATE(654)] = 46844, - [SMALL_STATE(655)] = 46899, - [SMALL_STATE(656)] = 46953, - [SMALL_STATE(657)] = 47007, - [SMALL_STATE(658)] = 47061, - [SMALL_STATE(659)] = 47115, - [SMALL_STATE(660)] = 47175, - [SMALL_STATE(661)] = 47229, - [SMALL_STATE(662)] = 47289, - [SMALL_STATE(663)] = 47343, - [SMALL_STATE(664)] = 47403, - [SMALL_STATE(665)] = 47457, + [SMALL_STATE(555)] = 40687, + [SMALL_STATE(556)] = 40764, + [SMALL_STATE(557)] = 40841, + [SMALL_STATE(558)] = 40886, + [SMALL_STATE(559)] = 40939, + [SMALL_STATE(560)] = 41014, + [SMALL_STATE(561)] = 41091, + [SMALL_STATE(562)] = 41144, + [SMALL_STATE(563)] = 41197, + [SMALL_STATE(564)] = 41274, + [SMALL_STATE(565)] = 41351, + [SMALL_STATE(566)] = 41428, + [SMALL_STATE(567)] = 41505, + [SMALL_STATE(568)] = 41580, + [SMALL_STATE(569)] = 41648, + [SMALL_STATE(570)] = 41722, + [SMALL_STATE(571)] = 41796, + [SMALL_STATE(572)] = 41854, + [SMALL_STATE(573)] = 41922, + [SMALL_STATE(574)] = 41990, + [SMALL_STATE(575)] = 42058, + [SMALL_STATE(576)] = 42132, + [SMALL_STATE(577)] = 42206, + [SMALL_STATE(578)] = 42280, + [SMALL_STATE(579)] = 42348, + [SMALL_STATE(580)] = 42416, + [SMALL_STATE(581)] = 42490, + [SMALL_STATE(582)] = 42558, + [SMALL_STATE(583)] = 42626, + [SMALL_STATE(584)] = 42694, + [SMALL_STATE(585)] = 42768, + [SMALL_STATE(586)] = 42836, + [SMALL_STATE(587)] = 42910, + [SMALL_STATE(588)] = 42949, + [SMALL_STATE(589)] = 43020, + [SMALL_STATE(590)] = 43083, + [SMALL_STATE(591)] = 43122, + [SMALL_STATE(592)] = 43193, + [SMALL_STATE(593)] = 43264, + [SMALL_STATE(594)] = 43335, + [SMALL_STATE(595)] = 43406, + [SMALL_STATE(596)] = 43469, + [SMALL_STATE(597)] = 43508, + [SMALL_STATE(598)] = 43547, + [SMALL_STATE(599)] = 43610, + [SMALL_STATE(600)] = 43681, + [SMALL_STATE(601)] = 43752, + [SMALL_STATE(602)] = 43823, + [SMALL_STATE(603)] = 43862, + [SMALL_STATE(604)] = 43901, + [SMALL_STATE(605)] = 43940, + [SMALL_STATE(606)] = 44011, + [SMALL_STATE(607)] = 44082, + [SMALL_STATE(608)] = 44121, + [SMALL_STATE(609)] = 44160, + [SMALL_STATE(610)] = 44199, + [SMALL_STATE(611)] = 44238, + [SMALL_STATE(612)] = 44277, + [SMALL_STATE(613)] = 44316, + [SMALL_STATE(614)] = 44355, + [SMALL_STATE(615)] = 44394, + [SMALL_STATE(616)] = 44465, + [SMALL_STATE(617)] = 44504, + [SMALL_STATE(618)] = 44543, + [SMALL_STATE(619)] = 44614, + [SMALL_STATE(620)] = 44653, + [SMALL_STATE(621)] = 44724, + [SMALL_STATE(622)] = 44787, + [SMALL_STATE(623)] = 44853, + [SMALL_STATE(624)] = 44919, + [SMALL_STATE(625)] = 44979, + [SMALL_STATE(626)] = 45045, + [SMALL_STATE(627)] = 45105, + [SMALL_STATE(628)] = 45165, + [SMALL_STATE(629)] = 45231, + [SMALL_STATE(630)] = 45297, + [SMALL_STATE(631)] = 45357, + [SMALL_STATE(632)] = 45423, + [SMALL_STATE(633)] = 45483, + [SMALL_STATE(634)] = 45549, + [SMALL_STATE(635)] = 45617, + [SMALL_STATE(636)] = 45683, + [SMALL_STATE(637)] = 45751, + [SMALL_STATE(638)] = 45817, + [SMALL_STATE(639)] = 45885, + [SMALL_STATE(640)] = 45951, + [SMALL_STATE(641)] = 46014, + [SMALL_STATE(642)] = 46069, + [SMALL_STATE(643)] = 46132, + [SMALL_STATE(644)] = 46195, + [SMALL_STATE(645)] = 46258, + [SMALL_STATE(646)] = 46321, + [SMALL_STATE(647)] = 46384, + [SMALL_STATE(648)] = 46447, + [SMALL_STATE(649)] = 46510, + [SMALL_STATE(650)] = 46573, + [SMALL_STATE(651)] = 46636, + [SMALL_STATE(652)] = 46691, + [SMALL_STATE(653)] = 46756, + [SMALL_STATE(654)] = 46821, + [SMALL_STATE(655)] = 46876, + [SMALL_STATE(656)] = 46941, + [SMALL_STATE(657)] = 47001, + [SMALL_STATE(658)] = 47055, + [SMALL_STATE(659)] = 47109, + [SMALL_STATE(660)] = 47169, + [SMALL_STATE(661)] = 47223, + [SMALL_STATE(662)] = 47283, + [SMALL_STATE(663)] = 47337, + [SMALL_STATE(664)] = 47391, + [SMALL_STATE(665)] = 47451, [SMALL_STATE(666)] = 47511, - [SMALL_STATE(667)] = 47571, - [SMALL_STATE(668)] = 47631, - [SMALL_STATE(669)] = 47691, - [SMALL_STATE(670)] = 47745, - [SMALL_STATE(671)] = 47799, - [SMALL_STATE(672)] = 47859, - [SMALL_STATE(673)] = 47919, - [SMALL_STATE(674)] = 47973, - [SMALL_STATE(675)] = 48027, + [SMALL_STATE(667)] = 47565, + [SMALL_STATE(668)] = 47625, + [SMALL_STATE(669)] = 47679, + [SMALL_STATE(670)] = 47739, + [SMALL_STATE(671)] = 47793, + [SMALL_STATE(672)] = 47853, + [SMALL_STATE(673)] = 47907, + [SMALL_STATE(674)] = 47967, + [SMALL_STATE(675)] = 48021, [SMALL_STATE(676)] = 48081, - [SMALL_STATE(677)] = 48135, - [SMALL_STATE(678)] = 48189, - [SMALL_STATE(679)] = 48249, - [SMALL_STATE(680)] = 48303, - [SMALL_STATE(681)] = 48363, + [SMALL_STATE(677)] = 48141, + [SMALL_STATE(678)] = 48201, + [SMALL_STATE(679)] = 48255, + [SMALL_STATE(680)] = 48309, + [SMALL_STATE(681)] = 48369, [SMALL_STATE(682)] = 48423, - [SMALL_STATE(683)] = 48483, - [SMALL_STATE(684)] = 48537, - [SMALL_STATE(685)] = 48597, - [SMALL_STATE(686)] = 48654, - [SMALL_STATE(687)] = 48711, - [SMALL_STATE(688)] = 48768, - [SMALL_STATE(689)] = 48825, - [SMALL_STATE(690)] = 48882, - [SMALL_STATE(691)] = 48939, - [SMALL_STATE(692)] = 48996, - [SMALL_STATE(693)] = 49053, - [SMALL_STATE(694)] = 49110, - [SMALL_STATE(695)] = 49167, - [SMALL_STATE(696)] = 49224, - [SMALL_STATE(697)] = 49258, - [SMALL_STATE(698)] = 49292, - [SMALL_STATE(699)] = 49326, - [SMALL_STATE(700)] = 49360, - [SMALL_STATE(701)] = 49407, - [SMALL_STATE(702)] = 49454, - [SMALL_STATE(703)] = 49501, - [SMALL_STATE(704)] = 49531, - [SMALL_STATE(705)] = 49578, - [SMALL_STATE(706)] = 49625, - [SMALL_STATE(707)] = 49672, - [SMALL_STATE(708)] = 49716, - [SMALL_STATE(709)] = 49760, - [SMALL_STATE(710)] = 49804, - [SMALL_STATE(711)] = 49848, - [SMALL_STATE(712)] = 49892, - [SMALL_STATE(713)] = 49936, - [SMALL_STATE(714)] = 49980, - [SMALL_STATE(715)] = 50008, - [SMALL_STATE(716)] = 50038, + [SMALL_STATE(683)] = 48477, + [SMALL_STATE(684)] = 48531, + [SMALL_STATE(685)] = 48585, + [SMALL_STATE(686)] = 48639, + [SMALL_STATE(687)] = 48696, + [SMALL_STATE(688)] = 48753, + [SMALL_STATE(689)] = 48810, + [SMALL_STATE(690)] = 48867, + [SMALL_STATE(691)] = 48924, + [SMALL_STATE(692)] = 48981, + [SMALL_STATE(693)] = 49038, + [SMALL_STATE(694)] = 49095, + [SMALL_STATE(695)] = 49152, + [SMALL_STATE(696)] = 49209, + [SMALL_STATE(697)] = 49266, + [SMALL_STATE(698)] = 49298, + [SMALL_STATE(699)] = 49332, + [SMALL_STATE(700)] = 49366, + [SMALL_STATE(701)] = 49400, + [SMALL_STATE(702)] = 49434, + [SMALL_STATE(703)] = 49481, + [SMALL_STATE(704)] = 49528, + [SMALL_STATE(705)] = 49575, + [SMALL_STATE(706)] = 49605, + [SMALL_STATE(707)] = 49652, + [SMALL_STATE(708)] = 49699, + [SMALL_STATE(709)] = 49746, + [SMALL_STATE(710)] = 49790, + [SMALL_STATE(711)] = 49834, + [SMALL_STATE(712)] = 49878, + [SMALL_STATE(713)] = 49922, + [SMALL_STATE(714)] = 49966, + [SMALL_STATE(715)] = 50010, + [SMALL_STATE(716)] = 50054, [SMALL_STATE(717)] = 50082, - [SMALL_STATE(718)] = 50126, - [SMALL_STATE(719)] = 50152, - [SMALL_STATE(720)] = 50196, - [SMALL_STATE(721)] = 50239, - [SMALL_STATE(722)] = 50280, - [SMALL_STATE(723)] = 50321, - [SMALL_STATE(724)] = 50362, - [SMALL_STATE(725)] = 50391, - [SMALL_STATE(726)] = 50416, - [SMALL_STATE(727)] = 50457, - [SMALL_STATE(728)] = 50498, - [SMALL_STATE(729)] = 50539, - [SMALL_STATE(730)] = 50580, - [SMALL_STATE(731)] = 50621, - [SMALL_STATE(732)] = 50664, - [SMALL_STATE(733)] = 50705, - [SMALL_STATE(734)] = 50748, - [SMALL_STATE(735)] = 50789, - [SMALL_STATE(736)] = 50830, - [SMALL_STATE(737)] = 50870, - [SMALL_STATE(738)] = 50896, - [SMALL_STATE(739)] = 50922, - [SMALL_STATE(740)] = 50948, - [SMALL_STATE(741)] = 50986, - [SMALL_STATE(742)] = 51024, - [SMALL_STATE(743)] = 51064, - [SMALL_STATE(744)] = 51102, - [SMALL_STATE(745)] = 51142, - [SMALL_STATE(746)] = 51180, - [SMALL_STATE(747)] = 51218, - [SMALL_STATE(748)] = 51256, - [SMALL_STATE(749)] = 51294, - [SMALL_STATE(750)] = 51318, - [SMALL_STATE(751)] = 51356, - [SMALL_STATE(752)] = 51380, - [SMALL_STATE(753)] = 51404, - [SMALL_STATE(754)] = 51428, - [SMALL_STATE(755)] = 51466, - [SMALL_STATE(756)] = 51504, - [SMALL_STATE(757)] = 51528, - [SMALL_STATE(758)] = 51552, - [SMALL_STATE(759)] = 51590, - [SMALL_STATE(760)] = 51614, - [SMALL_STATE(761)] = 51652, - [SMALL_STATE(762)] = 51678, - [SMALL_STATE(763)] = 51718, - [SMALL_STATE(764)] = 51744, - [SMALL_STATE(765)] = 51772, - [SMALL_STATE(766)] = 51812, - [SMALL_STATE(767)] = 51836, - [SMALL_STATE(768)] = 51874, - [SMALL_STATE(769)] = 51912, - [SMALL_STATE(770)] = 51936, - [SMALL_STATE(771)] = 51960, - [SMALL_STATE(772)] = 51986, + [SMALL_STATE(718)] = 50112, + [SMALL_STATE(719)] = 50156, + [SMALL_STATE(720)] = 50182, + [SMALL_STATE(721)] = 50226, + [SMALL_STATE(722)] = 50270, + [SMALL_STATE(723)] = 50299, + [SMALL_STATE(724)] = 50342, + [SMALL_STATE(725)] = 50367, + [SMALL_STATE(726)] = 50408, + [SMALL_STATE(727)] = 50449, + [SMALL_STATE(728)] = 50490, + [SMALL_STATE(729)] = 50531, + [SMALL_STATE(730)] = 50574, + [SMALL_STATE(731)] = 50615, + [SMALL_STATE(732)] = 50656, + [SMALL_STATE(733)] = 50697, + [SMALL_STATE(734)] = 50738, + [SMALL_STATE(735)] = 50781, + [SMALL_STATE(736)] = 50822, + [SMALL_STATE(737)] = 50863, + [SMALL_STATE(738)] = 50904, + [SMALL_STATE(739)] = 50942, + [SMALL_STATE(740)] = 50982, + [SMALL_STATE(741)] = 51008, + [SMALL_STATE(742)] = 51034, + [SMALL_STATE(743)] = 51060, + [SMALL_STATE(744)] = 51098, + [SMALL_STATE(745)] = 51136, + [SMALL_STATE(746)] = 51174, + [SMALL_STATE(747)] = 51214, + [SMALL_STATE(748)] = 51254, + [SMALL_STATE(749)] = 51292, + [SMALL_STATE(750)] = 51330, + [SMALL_STATE(751)] = 51370, + [SMALL_STATE(752)] = 51408, + [SMALL_STATE(753)] = 51432, + [SMALL_STATE(754)] = 51456, + [SMALL_STATE(755)] = 51480, + [SMALL_STATE(756)] = 51518, + [SMALL_STATE(757)] = 51542, + [SMALL_STATE(758)] = 51580, + [SMALL_STATE(759)] = 51618, + [SMALL_STATE(760)] = 51642, + [SMALL_STATE(761)] = 51666, + [SMALL_STATE(762)] = 51690, + [SMALL_STATE(763)] = 51730, + [SMALL_STATE(764)] = 51756, + [SMALL_STATE(765)] = 51782, + [SMALL_STATE(766)] = 51820, + [SMALL_STATE(767)] = 51848, + [SMALL_STATE(768)] = 51872, + [SMALL_STATE(769)] = 51910, + [SMALL_STATE(770)] = 51948, + [SMALL_STATE(771)] = 51972, + [SMALL_STATE(772)] = 52000, [SMALL_STATE(773)] = 52024, [SMALL_STATE(774)] = 52062, - [SMALL_STATE(775)] = 52086, + [SMALL_STATE(775)] = 52100, [SMALL_STATE(776)] = 52124, [SMALL_STATE(777)] = 52162, [SMALL_STATE(778)] = 52200, [SMALL_STATE(779)] = 52238, - [SMALL_STATE(780)] = 52264, - [SMALL_STATE(781)] = 52292, - [SMALL_STATE(782)] = 52330, - [SMALL_STATE(783)] = 52354, - [SMALL_STATE(784)] = 52380, - [SMALL_STATE(785)] = 52420, - [SMALL_STATE(786)] = 52458, - [SMALL_STATE(787)] = 52496, - [SMALL_STATE(788)] = 52534, - [SMALL_STATE(789)] = 52574, - [SMALL_STATE(790)] = 52612, - [SMALL_STATE(791)] = 52650, - [SMALL_STATE(792)] = 52681, - [SMALL_STATE(793)] = 52704, - [SMALL_STATE(794)] = 52727, - [SMALL_STATE(795)] = 52756, - [SMALL_STATE(796)] = 52783, - [SMALL_STATE(797)] = 52806, - [SMALL_STATE(798)] = 52839, - [SMALL_STATE(799)] = 52870, - [SMALL_STATE(800)] = 52899, - [SMALL_STATE(801)] = 52936, - [SMALL_STATE(802)] = 52959, - [SMALL_STATE(803)] = 52996, - [SMALL_STATE(804)] = 53023, - [SMALL_STATE(805)] = 53046, - [SMALL_STATE(806)] = 53069, - [SMALL_STATE(807)] = 53092, - [SMALL_STATE(808)] = 53119, - [SMALL_STATE(809)] = 53142, + [SMALL_STATE(780)] = 52276, + [SMALL_STATE(781)] = 52302, + [SMALL_STATE(782)] = 52328, + [SMALL_STATE(783)] = 52366, + [SMALL_STATE(784)] = 52390, + [SMALL_STATE(785)] = 52428, + [SMALL_STATE(786)] = 52468, + [SMALL_STATE(787)] = 52506, + [SMALL_STATE(788)] = 52544, + [SMALL_STATE(789)] = 52570, + [SMALL_STATE(790)] = 52608, + [SMALL_STATE(791)] = 52648, + [SMALL_STATE(792)] = 52686, + [SMALL_STATE(793)] = 52724, + [SMALL_STATE(794)] = 52753, + [SMALL_STATE(795)] = 52776, + [SMALL_STATE(796)] = 52799, + [SMALL_STATE(797)] = 52836, + [SMALL_STATE(798)] = 52873, + [SMALL_STATE(799)] = 52904, + [SMALL_STATE(800)] = 52927, + [SMALL_STATE(801)] = 52956, + [SMALL_STATE(802)] = 52981, + [SMALL_STATE(803)] = 53004, + [SMALL_STATE(804)] = 53027, + [SMALL_STATE(805)] = 53050, + [SMALL_STATE(806)] = 53077, + [SMALL_STATE(807)] = 53100, + [SMALL_STATE(808)] = 53123, + [SMALL_STATE(809)] = 53146, [SMALL_STATE(810)] = 53169, - [SMALL_STATE(811)] = 53192, - [SMALL_STATE(812)] = 53215, - [SMALL_STATE(813)] = 53238, - [SMALL_STATE(814)] = 53265, - [SMALL_STATE(815)] = 53298, - [SMALL_STATE(816)] = 53323, - [SMALL_STATE(817)] = 53346, - [SMALL_STATE(818)] = 53369, - [SMALL_STATE(819)] = 53392, - [SMALL_STATE(820)] = 53415, - [SMALL_STATE(821)] = 53438, - [SMALL_STATE(822)] = 53461, - [SMALL_STATE(823)] = 53498, - [SMALL_STATE(824)] = 53521, - [SMALL_STATE(825)] = 53544, - [SMALL_STATE(826)] = 53567, - [SMALL_STATE(827)] = 53590, - [SMALL_STATE(828)] = 53613, - [SMALL_STATE(829)] = 53636, - [SMALL_STATE(830)] = 53659, - [SMALL_STATE(831)] = 53682, - [SMALL_STATE(832)] = 53719, - [SMALL_STATE(833)] = 53742, - [SMALL_STATE(834)] = 53767, - [SMALL_STATE(835)] = 53792, - [SMALL_STATE(836)] = 53817, - [SMALL_STATE(837)] = 53840, - [SMALL_STATE(838)] = 53863, - [SMALL_STATE(839)] = 53890, - [SMALL_STATE(840)] = 53913, - [SMALL_STATE(841)] = 53937, - [SMALL_STATE(842)] = 53962, - [SMALL_STATE(843)] = 53983, - [SMALL_STATE(844)] = 54024, - [SMALL_STATE(845)] = 54045, - [SMALL_STATE(846)] = 54066, - [SMALL_STATE(847)] = 54087, - [SMALL_STATE(848)] = 54128, - [SMALL_STATE(849)] = 54149, - [SMALL_STATE(850)] = 54174, - [SMALL_STATE(851)] = 54195, - [SMALL_STATE(852)] = 54236, - [SMALL_STATE(853)] = 54257, - [SMALL_STATE(854)] = 54278, - [SMALL_STATE(855)] = 54319, - [SMALL_STATE(856)] = 54344, - [SMALL_STATE(857)] = 54365, - [SMALL_STATE(858)] = 54386, - [SMALL_STATE(859)] = 54427, - [SMALL_STATE(860)] = 54468, - [SMALL_STATE(861)] = 54493, - [SMALL_STATE(862)] = 54518, - [SMALL_STATE(863)] = 54540, - [SMALL_STATE(864)] = 54560, - [SMALL_STATE(865)] = 54582, - [SMALL_STATE(866)] = 54616, - [SMALL_STATE(867)] = 54650, - [SMALL_STATE(868)] = 54670, - [SMALL_STATE(869)] = 54692, - [SMALL_STATE(870)] = 54714, - [SMALL_STATE(871)] = 54752, - [SMALL_STATE(872)] = 54772, - [SMALL_STATE(873)] = 54792, - [SMALL_STATE(874)] = 54814, - [SMALL_STATE(875)] = 54833, - [SMALL_STATE(876)] = 54852, - [SMALL_STATE(877)] = 54871, - [SMALL_STATE(878)] = 54890, - [SMALL_STATE(879)] = 54909, - [SMALL_STATE(880)] = 54928, - [SMALL_STATE(881)] = 54947, - [SMALL_STATE(882)] = 54966, - [SMALL_STATE(883)] = 54985, - [SMALL_STATE(884)] = 55004, - [SMALL_STATE(885)] = 55031, - [SMALL_STATE(886)] = 55050, - [SMALL_STATE(887)] = 55069, - [SMALL_STATE(888)] = 55088, - [SMALL_STATE(889)] = 55111, - [SMALL_STATE(890)] = 55130, - [SMALL_STATE(891)] = 55149, - [SMALL_STATE(892)] = 55168, - [SMALL_STATE(893)] = 55187, - [SMALL_STATE(894)] = 55206, - [SMALL_STATE(895)] = 55225, - [SMALL_STATE(896)] = 55244, - [SMALL_STATE(897)] = 55263, - [SMALL_STATE(898)] = 55284, - [SMALL_STATE(899)] = 55303, - [SMALL_STATE(900)] = 55322, - [SMALL_STATE(901)] = 55341, - [SMALL_STATE(902)] = 55362, - [SMALL_STATE(903)] = 55381, - [SMALL_STATE(904)] = 55400, - [SMALL_STATE(905)] = 55419, - [SMALL_STATE(906)] = 55438, - [SMALL_STATE(907)] = 55457, - [SMALL_STATE(908)] = 55476, - [SMALL_STATE(909)] = 55495, - [SMALL_STATE(910)] = 55514, - [SMALL_STATE(911)] = 55546, - [SMALL_STATE(912)] = 55564, - [SMALL_STATE(913)] = 55596, - [SMALL_STATE(914)] = 55616, - [SMALL_STATE(915)] = 55634, - [SMALL_STATE(916)] = 55652, - [SMALL_STATE(917)] = 55684, - [SMALL_STATE(918)] = 55713, - [SMALL_STATE(919)] = 55742, - [SMALL_STATE(920)] = 55771, - [SMALL_STATE(921)] = 55800, - [SMALL_STATE(922)] = 55829, - [SMALL_STATE(923)] = 55846, - [SMALL_STATE(924)] = 55875, - [SMALL_STATE(925)] = 55904, - [SMALL_STATE(926)] = 55928, - [SMALL_STATE(927)] = 55950, - [SMALL_STATE(928)] = 55974, - [SMALL_STATE(929)] = 55996, - [SMALL_STATE(930)] = 56022, - [SMALL_STATE(931)] = 56046, - [SMALL_STATE(932)] = 56070, - [SMALL_STATE(933)] = 56092, - [SMALL_STATE(934)] = 56112, - [SMALL_STATE(935)] = 56134, - [SMALL_STATE(936)] = 56158, - [SMALL_STATE(937)] = 56182, - [SMALL_STATE(938)] = 56206, - [SMALL_STATE(939)] = 56228, - [SMALL_STATE(940)] = 56248, - [SMALL_STATE(941)] = 56272, - [SMALL_STATE(942)] = 56294, - [SMALL_STATE(943)] = 56316, - [SMALL_STATE(944)] = 56340, - [SMALL_STATE(945)] = 56364, - [SMALL_STATE(946)] = 56382, - [SMALL_STATE(947)] = 56406, - [SMALL_STATE(948)] = 56430, - [SMALL_STATE(949)] = 56449, - [SMALL_STATE(950)] = 56470, - [SMALL_STATE(951)] = 56491, - [SMALL_STATE(952)] = 56510, - [SMALL_STATE(953)] = 56531, - [SMALL_STATE(954)] = 56552, - [SMALL_STATE(955)] = 56573, - [SMALL_STATE(956)] = 56594, - [SMALL_STATE(957)] = 56615, - [SMALL_STATE(958)] = 56634, - [SMALL_STATE(959)] = 56653, - [SMALL_STATE(960)] = 56676, - [SMALL_STATE(961)] = 56699, - [SMALL_STATE(962)] = 56722, - [SMALL_STATE(963)] = 56741, - [SMALL_STATE(964)] = 56760, - [SMALL_STATE(965)] = 56781, - [SMALL_STATE(966)] = 56804, - [SMALL_STATE(967)] = 56823, - [SMALL_STATE(968)] = 56842, - [SMALL_STATE(969)] = 56865, - [SMALL_STATE(970)] = 56888, - [SMALL_STATE(971)] = 56909, - [SMALL_STATE(972)] = 56929, - [SMALL_STATE(973)] = 56949, - [SMALL_STATE(974)] = 56967, - [SMALL_STATE(975)] = 56985, - [SMALL_STATE(976)] = 57003, - [SMALL_STATE(977)] = 57021, - [SMALL_STATE(978)] = 57039, - [SMALL_STATE(979)] = 57059, - [SMALL_STATE(980)] = 57077, - [SMALL_STATE(981)] = 57095, - [SMALL_STATE(982)] = 57113, - [SMALL_STATE(983)] = 57129, - [SMALL_STATE(984)] = 57147, - [SMALL_STATE(985)] = 57165, - [SMALL_STATE(986)] = 57183, - [SMALL_STATE(987)] = 57203, - [SMALL_STATE(988)] = 57219, - [SMALL_STATE(989)] = 57237, - [SMALL_STATE(990)] = 57257, - [SMALL_STATE(991)] = 57275, - [SMALL_STATE(992)] = 57293, - [SMALL_STATE(993)] = 57309, - [SMALL_STATE(994)] = 57327, - [SMALL_STATE(995)] = 57343, - [SMALL_STATE(996)] = 57357, - [SMALL_STATE(997)] = 57375, - [SMALL_STATE(998)] = 57393, - [SMALL_STATE(999)] = 57411, - [SMALL_STATE(1000)] = 57431, - [SMALL_STATE(1001)] = 57449, - [SMALL_STATE(1002)] = 57469, - [SMALL_STATE(1003)] = 57487, - [SMALL_STATE(1004)] = 57505, - [SMALL_STATE(1005)] = 57521, - [SMALL_STATE(1006)] = 57539, - [SMALL_STATE(1007)] = 57557, - [SMALL_STATE(1008)] = 57577, - [SMALL_STATE(1009)] = 57595, - [SMALL_STATE(1010)] = 57615, - [SMALL_STATE(1011)] = 57633, - [SMALL_STATE(1012)] = 57651, - [SMALL_STATE(1013)] = 57669, - [SMALL_STATE(1014)] = 57689, - [SMALL_STATE(1015)] = 57707, - [SMALL_STATE(1016)] = 57727, - [SMALL_STATE(1017)] = 57747, - [SMALL_STATE(1018)] = 57765, - [SMALL_STATE(1019)] = 57783, - [SMALL_STATE(1020)] = 57801, - [SMALL_STATE(1021)] = 57819, - [SMALL_STATE(1022)] = 57839, - [SMALL_STATE(1023)] = 57857, - [SMALL_STATE(1024)] = 57875, - [SMALL_STATE(1025)] = 57893, - [SMALL_STATE(1026)] = 57909, - [SMALL_STATE(1027)] = 57929, - [SMALL_STATE(1028)] = 57949, - [SMALL_STATE(1029)] = 57967, - [SMALL_STATE(1030)] = 57980, - [SMALL_STATE(1031)] = 57997, - [SMALL_STATE(1032)] = 58014, - [SMALL_STATE(1033)] = 58031, - [SMALL_STATE(1034)] = 58048, - [SMALL_STATE(1035)] = 58065, - [SMALL_STATE(1036)] = 58078, - [SMALL_STATE(1037)] = 58091, - [SMALL_STATE(1038)] = 58108, - [SMALL_STATE(1039)] = 58121, - [SMALL_STATE(1040)] = 58134, - [SMALL_STATE(1041)] = 58151, - [SMALL_STATE(1042)] = 58168, - [SMALL_STATE(1043)] = 58181, - [SMALL_STATE(1044)] = 58198, - [SMALL_STATE(1045)] = 58211, - [SMALL_STATE(1046)] = 58224, - [SMALL_STATE(1047)] = 58241, - [SMALL_STATE(1048)] = 58256, - [SMALL_STATE(1049)] = 58273, - [SMALL_STATE(1050)] = 58290, - [SMALL_STATE(1051)] = 58307, - [SMALL_STATE(1052)] = 58320, - [SMALL_STATE(1053)] = 58337, - [SMALL_STATE(1054)] = 58354, - [SMALL_STATE(1055)] = 58371, - [SMALL_STATE(1056)] = 58384, - [SMALL_STATE(1057)] = 58401, - [SMALL_STATE(1058)] = 58418, - [SMALL_STATE(1059)] = 58435, - [SMALL_STATE(1060)] = 58452, - [SMALL_STATE(1061)] = 58467, - [SMALL_STATE(1062)] = 58482, - [SMALL_STATE(1063)] = 58499, - [SMALL_STATE(1064)] = 58516, - [SMALL_STATE(1065)] = 58533, - [SMALL_STATE(1066)] = 58550, - [SMALL_STATE(1067)] = 58567, - [SMALL_STATE(1068)] = 58584, - [SMALL_STATE(1069)] = 58599, - [SMALL_STATE(1070)] = 58616, - [SMALL_STATE(1071)] = 58633, - [SMALL_STATE(1072)] = 58650, - [SMALL_STATE(1073)] = 58667, - [SMALL_STATE(1074)] = 58680, - [SMALL_STATE(1075)] = 58693, - [SMALL_STATE(1076)] = 58710, - [SMALL_STATE(1077)] = 58727, - [SMALL_STATE(1078)] = 58744, - [SMALL_STATE(1079)] = 58761, - [SMALL_STATE(1080)] = 58778, - [SMALL_STATE(1081)] = 58795, - [SMALL_STATE(1082)] = 58812, - [SMALL_STATE(1083)] = 58825, - [SMALL_STATE(1084)] = 58838, - [SMALL_STATE(1085)] = 58855, - [SMALL_STATE(1086)] = 58872, - [SMALL_STATE(1087)] = 58889, - [SMALL_STATE(1088)] = 58906, - [SMALL_STATE(1089)] = 58923, - [SMALL_STATE(1090)] = 58936, - [SMALL_STATE(1091)] = 58953, - [SMALL_STATE(1092)] = 58966, - [SMALL_STATE(1093)] = 58983, - [SMALL_STATE(1094)] = 58998, - [SMALL_STATE(1095)] = 59015, - [SMALL_STATE(1096)] = 59032, - [SMALL_STATE(1097)] = 59049, - [SMALL_STATE(1098)] = 59066, - [SMALL_STATE(1099)] = 59083, - [SMALL_STATE(1100)] = 59100, - [SMALL_STATE(1101)] = 59117, - [SMALL_STATE(1102)] = 59134, - [SMALL_STATE(1103)] = 59151, - [SMALL_STATE(1104)] = 59164, - [SMALL_STATE(1105)] = 59181, - [SMALL_STATE(1106)] = 59198, - [SMALL_STATE(1107)] = 59215, - [SMALL_STATE(1108)] = 59232, - [SMALL_STATE(1109)] = 59245, - [SMALL_STATE(1110)] = 59258, - [SMALL_STATE(1111)] = 59275, - [SMALL_STATE(1112)] = 59288, - [SMALL_STATE(1113)] = 59301, - [SMALL_STATE(1114)] = 59314, - [SMALL_STATE(1115)] = 59329, - [SMALL_STATE(1116)] = 59346, - [SMALL_STATE(1117)] = 59363, - [SMALL_STATE(1118)] = 59380, - [SMALL_STATE(1119)] = 59397, - [SMALL_STATE(1120)] = 59414, - [SMALL_STATE(1121)] = 59431, - [SMALL_STATE(1122)] = 59446, - [SMALL_STATE(1123)] = 59463, - [SMALL_STATE(1124)] = 59480, - [SMALL_STATE(1125)] = 59497, - [SMALL_STATE(1126)] = 59514, - [SMALL_STATE(1127)] = 59531, - [SMALL_STATE(1128)] = 59548, - [SMALL_STATE(1129)] = 59565, - [SMALL_STATE(1130)] = 59582, - [SMALL_STATE(1131)] = 59599, - [SMALL_STATE(1132)] = 59616, - [SMALL_STATE(1133)] = 59633, - [SMALL_STATE(1134)] = 59650, - [SMALL_STATE(1135)] = 59667, - [SMALL_STATE(1136)] = 59684, - [SMALL_STATE(1137)] = 59701, - [SMALL_STATE(1138)] = 59718, - [SMALL_STATE(1139)] = 59735, - [SMALL_STATE(1140)] = 59752, - [SMALL_STATE(1141)] = 59769, - [SMALL_STATE(1142)] = 59786, - [SMALL_STATE(1143)] = 59803, - [SMALL_STATE(1144)] = 59816, - [SMALL_STATE(1145)] = 59829, - [SMALL_STATE(1146)] = 59846, - [SMALL_STATE(1147)] = 59863, - [SMALL_STATE(1148)] = 59880, - [SMALL_STATE(1149)] = 59897, - [SMALL_STATE(1150)] = 59914, - [SMALL_STATE(1151)] = 59931, - [SMALL_STATE(1152)] = 59948, - [SMALL_STATE(1153)] = 59965, - [SMALL_STATE(1154)] = 59982, - [SMALL_STATE(1155)] = 59995, - [SMALL_STATE(1156)] = 60012, - [SMALL_STATE(1157)] = 60029, - [SMALL_STATE(1158)] = 60046, - [SMALL_STATE(1159)] = 60063, - [SMALL_STATE(1160)] = 60080, - [SMALL_STATE(1161)] = 60097, - [SMALL_STATE(1162)] = 60114, - [SMALL_STATE(1163)] = 60131, - [SMALL_STATE(1164)] = 60148, - [SMALL_STATE(1165)] = 60165, - [SMALL_STATE(1166)] = 60182, - [SMALL_STATE(1167)] = 60199, - [SMALL_STATE(1168)] = 60216, - [SMALL_STATE(1169)] = 60233, - [SMALL_STATE(1170)] = 60250, - [SMALL_STATE(1171)] = 60263, - [SMALL_STATE(1172)] = 60280, - [SMALL_STATE(1173)] = 60297, - [SMALL_STATE(1174)] = 60314, - [SMALL_STATE(1175)] = 60331, - [SMALL_STATE(1176)] = 60348, - [SMALL_STATE(1177)] = 60365, - [SMALL_STATE(1178)] = 60382, - [SMALL_STATE(1179)] = 60399, - [SMALL_STATE(1180)] = 60416, - [SMALL_STATE(1181)] = 60433, - [SMALL_STATE(1182)] = 60450, - [SMALL_STATE(1183)] = 60467, - [SMALL_STATE(1184)] = 60480, - [SMALL_STATE(1185)] = 60497, - [SMALL_STATE(1186)] = 60510, - [SMALL_STATE(1187)] = 60527, - [SMALL_STATE(1188)] = 60544, - [SMALL_STATE(1189)] = 60558, - [SMALL_STATE(1190)] = 60572, - [SMALL_STATE(1191)] = 60586, - [SMALL_STATE(1192)] = 60600, - [SMALL_STATE(1193)] = 60614, - [SMALL_STATE(1194)] = 60628, - [SMALL_STATE(1195)] = 60642, - [SMALL_STATE(1196)] = 60656, - [SMALL_STATE(1197)] = 60670, - [SMALL_STATE(1198)] = 60684, - [SMALL_STATE(1199)] = 60696, - [SMALL_STATE(1200)] = 60708, - [SMALL_STATE(1201)] = 60720, - [SMALL_STATE(1202)] = 60734, - [SMALL_STATE(1203)] = 60748, - [SMALL_STATE(1204)] = 60760, - [SMALL_STATE(1205)] = 60774, - [SMALL_STATE(1206)] = 60788, - [SMALL_STATE(1207)] = 60800, - [SMALL_STATE(1208)] = 60814, - [SMALL_STATE(1209)] = 60828, - [SMALL_STATE(1210)] = 60842, - [SMALL_STATE(1211)] = 60856, - [SMALL_STATE(1212)] = 60870, - [SMALL_STATE(1213)] = 60884, - [SMALL_STATE(1214)] = 60896, - [SMALL_STATE(1215)] = 60910, - [SMALL_STATE(1216)] = 60924, - [SMALL_STATE(1217)] = 60936, - [SMALL_STATE(1218)] = 60948, - [SMALL_STATE(1219)] = 60960, - [SMALL_STATE(1220)] = 60972, - [SMALL_STATE(1221)] = 60984, - [SMALL_STATE(1222)] = 60998, - [SMALL_STATE(1223)] = 61010, - [SMALL_STATE(1224)] = 61022, - [SMALL_STATE(1225)] = 61034, - [SMALL_STATE(1226)] = 61048, - [SMALL_STATE(1227)] = 61062, - [SMALL_STATE(1228)] = 61074, - [SMALL_STATE(1229)] = 61088, - [SMALL_STATE(1230)] = 61100, - [SMALL_STATE(1231)] = 61114, - [SMALL_STATE(1232)] = 61128, - [SMALL_STATE(1233)] = 61142, - [SMALL_STATE(1234)] = 61156, - [SMALL_STATE(1235)] = 61168, - [SMALL_STATE(1236)] = 61180, - [SMALL_STATE(1237)] = 61194, - [SMALL_STATE(1238)] = 61206, - [SMALL_STATE(1239)] = 61218, - [SMALL_STATE(1240)] = 61232, - [SMALL_STATE(1241)] = 61244, - [SMALL_STATE(1242)] = 61256, - [SMALL_STATE(1243)] = 61268, - [SMALL_STATE(1244)] = 61282, - [SMALL_STATE(1245)] = 61296, - [SMALL_STATE(1246)] = 61308, - [SMALL_STATE(1247)] = 61322, - [SMALL_STATE(1248)] = 61336, - [SMALL_STATE(1249)] = 61350, - [SMALL_STATE(1250)] = 61362, - [SMALL_STATE(1251)] = 61374, - [SMALL_STATE(1252)] = 61388, - [SMALL_STATE(1253)] = 61402, - [SMALL_STATE(1254)] = 61414, - [SMALL_STATE(1255)] = 61428, - [SMALL_STATE(1256)] = 61440, - [SMALL_STATE(1257)] = 61452, - [SMALL_STATE(1258)] = 61466, - [SMALL_STATE(1259)] = 61478, - [SMALL_STATE(1260)] = 61492, - [SMALL_STATE(1261)] = 61504, - [SMALL_STATE(1262)] = 61516, - [SMALL_STATE(1263)] = 61528, - [SMALL_STATE(1264)] = 61542, - [SMALL_STATE(1265)] = 61556, - [SMALL_STATE(1266)] = 61568, - [SMALL_STATE(1267)] = 61582, - [SMALL_STATE(1268)] = 61594, - [SMALL_STATE(1269)] = 61608, - [SMALL_STATE(1270)] = 61622, - [SMALL_STATE(1271)] = 61636, - [SMALL_STATE(1272)] = 61650, - [SMALL_STATE(1273)] = 61664, - [SMALL_STATE(1274)] = 61678, - [SMALL_STATE(1275)] = 61692, - [SMALL_STATE(1276)] = 61704, - [SMALL_STATE(1277)] = 61718, - [SMALL_STATE(1278)] = 61732, - [SMALL_STATE(1279)] = 61746, - [SMALL_STATE(1280)] = 61760, - [SMALL_STATE(1281)] = 61774, - [SMALL_STATE(1282)] = 61788, - [SMALL_STATE(1283)] = 61802, - [SMALL_STATE(1284)] = 61816, - [SMALL_STATE(1285)] = 61828, - [SMALL_STATE(1286)] = 61842, - [SMALL_STATE(1287)] = 61854, - [SMALL_STATE(1288)] = 61868, - [SMALL_STATE(1289)] = 61880, - [SMALL_STATE(1290)] = 61892, - [SMALL_STATE(1291)] = 61906, - [SMALL_STATE(1292)] = 61920, - [SMALL_STATE(1293)] = 61932, - [SMALL_STATE(1294)] = 61944, - [SMALL_STATE(1295)] = 61956, - [SMALL_STATE(1296)] = 61970, - [SMALL_STATE(1297)] = 61984, - [SMALL_STATE(1298)] = 61996, - [SMALL_STATE(1299)] = 62008, - [SMALL_STATE(1300)] = 62020, - [SMALL_STATE(1301)] = 62034, - [SMALL_STATE(1302)] = 62048, - [SMALL_STATE(1303)] = 62062, - [SMALL_STATE(1304)] = 62076, - [SMALL_STATE(1305)] = 62090, - [SMALL_STATE(1306)] = 62104, - [SMALL_STATE(1307)] = 62118, - [SMALL_STATE(1308)] = 62132, - [SMALL_STATE(1309)] = 62144, - [SMALL_STATE(1310)] = 62156, - [SMALL_STATE(1311)] = 62168, - [SMALL_STATE(1312)] = 62180, - [SMALL_STATE(1313)] = 62192, - [SMALL_STATE(1314)] = 62204, - [SMALL_STATE(1315)] = 62218, - [SMALL_STATE(1316)] = 62230, - [SMALL_STATE(1317)] = 62244, - [SMALL_STATE(1318)] = 62258, - [SMALL_STATE(1319)] = 62272, - [SMALL_STATE(1320)] = 62286, - [SMALL_STATE(1321)] = 62297, - [SMALL_STATE(1322)] = 62308, - [SMALL_STATE(1323)] = 62319, - [SMALL_STATE(1324)] = 62330, - [SMALL_STATE(1325)] = 62341, - [SMALL_STATE(1326)] = 62352, - [SMALL_STATE(1327)] = 62363, - [SMALL_STATE(1328)] = 62374, - [SMALL_STATE(1329)] = 62385, - [SMALL_STATE(1330)] = 62396, - [SMALL_STATE(1331)] = 62407, - [SMALL_STATE(1332)] = 62418, - [SMALL_STATE(1333)] = 62429, - [SMALL_STATE(1334)] = 62440, - [SMALL_STATE(1335)] = 62451, - [SMALL_STATE(1336)] = 62462, - [SMALL_STATE(1337)] = 62473, - [SMALL_STATE(1338)] = 62484, - [SMALL_STATE(1339)] = 62495, - [SMALL_STATE(1340)] = 62506, - [SMALL_STATE(1341)] = 62517, - [SMALL_STATE(1342)] = 62528, - [SMALL_STATE(1343)] = 62539, - [SMALL_STATE(1344)] = 62550, - [SMALL_STATE(1345)] = 62561, - [SMALL_STATE(1346)] = 62572, - [SMALL_STATE(1347)] = 62583, - [SMALL_STATE(1348)] = 62594, - [SMALL_STATE(1349)] = 62605, - [SMALL_STATE(1350)] = 62616, - [SMALL_STATE(1351)] = 62627, - [SMALL_STATE(1352)] = 62638, - [SMALL_STATE(1353)] = 62649, - [SMALL_STATE(1354)] = 62660, - [SMALL_STATE(1355)] = 62671, - [SMALL_STATE(1356)] = 62682, - [SMALL_STATE(1357)] = 62693, - [SMALL_STATE(1358)] = 62704, - [SMALL_STATE(1359)] = 62715, - [SMALL_STATE(1360)] = 62726, - [SMALL_STATE(1361)] = 62737, - [SMALL_STATE(1362)] = 62748, - [SMALL_STATE(1363)] = 62759, - [SMALL_STATE(1364)] = 62770, - [SMALL_STATE(1365)] = 62781, - [SMALL_STATE(1366)] = 62792, - [SMALL_STATE(1367)] = 62803, - [SMALL_STATE(1368)] = 62814, - [SMALL_STATE(1369)] = 62825, - [SMALL_STATE(1370)] = 62836, - [SMALL_STATE(1371)] = 62847, - [SMALL_STATE(1372)] = 62858, - [SMALL_STATE(1373)] = 62869, - [SMALL_STATE(1374)] = 62880, - [SMALL_STATE(1375)] = 62891, - [SMALL_STATE(1376)] = 62902, - [SMALL_STATE(1377)] = 62913, - [SMALL_STATE(1378)] = 62924, - [SMALL_STATE(1379)] = 62935, - [SMALL_STATE(1380)] = 62946, - [SMALL_STATE(1381)] = 62957, - [SMALL_STATE(1382)] = 62968, - [SMALL_STATE(1383)] = 62979, - [SMALL_STATE(1384)] = 62990, - [SMALL_STATE(1385)] = 63001, - [SMALL_STATE(1386)] = 63012, - [SMALL_STATE(1387)] = 63023, - [SMALL_STATE(1388)] = 63034, - [SMALL_STATE(1389)] = 63045, - [SMALL_STATE(1390)] = 63056, - [SMALL_STATE(1391)] = 63067, - [SMALL_STATE(1392)] = 63078, - [SMALL_STATE(1393)] = 63089, - [SMALL_STATE(1394)] = 63100, - [SMALL_STATE(1395)] = 63111, - [SMALL_STATE(1396)] = 63122, - [SMALL_STATE(1397)] = 63133, - [SMALL_STATE(1398)] = 63144, - [SMALL_STATE(1399)] = 63155, - [SMALL_STATE(1400)] = 63166, - [SMALL_STATE(1401)] = 63177, - [SMALL_STATE(1402)] = 63188, - [SMALL_STATE(1403)] = 63199, - [SMALL_STATE(1404)] = 63210, - [SMALL_STATE(1405)] = 63221, - [SMALL_STATE(1406)] = 63232, - [SMALL_STATE(1407)] = 63243, - [SMALL_STATE(1408)] = 63254, - [SMALL_STATE(1409)] = 63265, - [SMALL_STATE(1410)] = 63276, - [SMALL_STATE(1411)] = 63287, - [SMALL_STATE(1412)] = 63298, - [SMALL_STATE(1413)] = 63309, - [SMALL_STATE(1414)] = 63320, - [SMALL_STATE(1415)] = 63331, - [SMALL_STATE(1416)] = 63342, - [SMALL_STATE(1417)] = 63353, - [SMALL_STATE(1418)] = 63364, - [SMALL_STATE(1419)] = 63375, - [SMALL_STATE(1420)] = 63386, - [SMALL_STATE(1421)] = 63397, - [SMALL_STATE(1422)] = 63408, - [SMALL_STATE(1423)] = 63419, - [SMALL_STATE(1424)] = 63430, - [SMALL_STATE(1425)] = 63441, - [SMALL_STATE(1426)] = 63452, - [SMALL_STATE(1427)] = 63463, - [SMALL_STATE(1428)] = 63474, - [SMALL_STATE(1429)] = 63485, - [SMALL_STATE(1430)] = 63496, - [SMALL_STATE(1431)] = 63507, - [SMALL_STATE(1432)] = 63518, - [SMALL_STATE(1433)] = 63529, - [SMALL_STATE(1434)] = 63540, + [SMALL_STATE(811)] = 53196, + [SMALL_STATE(812)] = 53219, + [SMALL_STATE(813)] = 53242, + [SMALL_STATE(814)] = 53269, + [SMALL_STATE(815)] = 53292, + [SMALL_STATE(816)] = 53315, + [SMALL_STATE(817)] = 53338, + [SMALL_STATE(818)] = 53371, + [SMALL_STATE(819)] = 53394, + [SMALL_STATE(820)] = 53419, + [SMALL_STATE(821)] = 53444, + [SMALL_STATE(822)] = 53469, + [SMALL_STATE(823)] = 53492, + [SMALL_STATE(824)] = 53515, + [SMALL_STATE(825)] = 53538, + [SMALL_STATE(826)] = 53565, + [SMALL_STATE(827)] = 53602, + [SMALL_STATE(828)] = 53625, + [SMALL_STATE(829)] = 53648, + [SMALL_STATE(830)] = 53671, + [SMALL_STATE(831)] = 53702, + [SMALL_STATE(832)] = 53725, + [SMALL_STATE(833)] = 53752, + [SMALL_STATE(834)] = 53775, + [SMALL_STATE(835)] = 53798, + [SMALL_STATE(836)] = 53821, + [SMALL_STATE(837)] = 53858, + [SMALL_STATE(838)] = 53881, + [SMALL_STATE(839)] = 53904, + [SMALL_STATE(840)] = 53931, + [SMALL_STATE(841)] = 53964, + [SMALL_STATE(842)] = 53988, + [SMALL_STATE(843)] = 54009, + [SMALL_STATE(844)] = 54030, + [SMALL_STATE(845)] = 54051, + [SMALL_STATE(846)] = 54072, + [SMALL_STATE(847)] = 54097, + [SMALL_STATE(848)] = 54118, + [SMALL_STATE(849)] = 54159, + [SMALL_STATE(850)] = 54200, + [SMALL_STATE(851)] = 54241, + [SMALL_STATE(852)] = 54282, + [SMALL_STATE(853)] = 54307, + [SMALL_STATE(854)] = 54328, + [SMALL_STATE(855)] = 54369, + [SMALL_STATE(856)] = 54390, + [SMALL_STATE(857)] = 54415, + [SMALL_STATE(858)] = 54436, + [SMALL_STATE(859)] = 54457, + [SMALL_STATE(860)] = 54482, + [SMALL_STATE(861)] = 54503, + [SMALL_STATE(862)] = 54544, + [SMALL_STATE(863)] = 54569, + [SMALL_STATE(864)] = 54591, + [SMALL_STATE(865)] = 54613, + [SMALL_STATE(866)] = 54651, + [SMALL_STATE(867)] = 54673, + [SMALL_STATE(868)] = 54707, + [SMALL_STATE(869)] = 54741, + [SMALL_STATE(870)] = 54761, + [SMALL_STATE(871)] = 54783, + [SMALL_STATE(872)] = 54803, + [SMALL_STATE(873)] = 54825, + [SMALL_STATE(874)] = 54845, + [SMALL_STATE(875)] = 54865, + [SMALL_STATE(876)] = 54884, + [SMALL_STATE(877)] = 54903, + [SMALL_STATE(878)] = 54922, + [SMALL_STATE(879)] = 54943, + [SMALL_STATE(880)] = 54962, + [SMALL_STATE(881)] = 54981, + [SMALL_STATE(882)] = 55000, + [SMALL_STATE(883)] = 55019, + [SMALL_STATE(884)] = 55038, + [SMALL_STATE(885)] = 55057, + [SMALL_STATE(886)] = 55080, + [SMALL_STATE(887)] = 55099, + [SMALL_STATE(888)] = 55118, + [SMALL_STATE(889)] = 55139, + [SMALL_STATE(890)] = 55158, + [SMALL_STATE(891)] = 55177, + [SMALL_STATE(892)] = 55196, + [SMALL_STATE(893)] = 55215, + [SMALL_STATE(894)] = 55234, + [SMALL_STATE(895)] = 55253, + [SMALL_STATE(896)] = 55272, + [SMALL_STATE(897)] = 55291, + [SMALL_STATE(898)] = 55310, + [SMALL_STATE(899)] = 55329, + [SMALL_STATE(900)] = 55348, + [SMALL_STATE(901)] = 55367, + [SMALL_STATE(902)] = 55386, + [SMALL_STATE(903)] = 55413, + [SMALL_STATE(904)] = 55432, + [SMALL_STATE(905)] = 55451, + [SMALL_STATE(906)] = 55470, + [SMALL_STATE(907)] = 55489, + [SMALL_STATE(908)] = 55508, + [SMALL_STATE(909)] = 55527, + [SMALL_STATE(910)] = 55546, + [SMALL_STATE(911)] = 55565, + [SMALL_STATE(912)] = 55597, + [SMALL_STATE(913)] = 55617, + [SMALL_STATE(914)] = 55649, + [SMALL_STATE(915)] = 55667, + [SMALL_STATE(916)] = 55699, + [SMALL_STATE(917)] = 55717, + [SMALL_STATE(918)] = 55735, + [SMALL_STATE(919)] = 55764, + [SMALL_STATE(920)] = 55793, + [SMALL_STATE(921)] = 55822, + [SMALL_STATE(922)] = 55851, + [SMALL_STATE(923)] = 55880, + [SMALL_STATE(924)] = 55909, + [SMALL_STATE(925)] = 55938, + [SMALL_STATE(926)] = 55955, + [SMALL_STATE(927)] = 55979, + [SMALL_STATE(928)] = 56003, + [SMALL_STATE(929)] = 56023, + [SMALL_STATE(930)] = 56047, + [SMALL_STATE(931)] = 56069, + [SMALL_STATE(932)] = 56091, + [SMALL_STATE(933)] = 56115, + [SMALL_STATE(934)] = 56139, + [SMALL_STATE(935)] = 56161, + [SMALL_STATE(936)] = 56183, + [SMALL_STATE(937)] = 56205, + [SMALL_STATE(938)] = 56229, + [SMALL_STATE(939)] = 56253, + [SMALL_STATE(940)] = 56273, + [SMALL_STATE(941)] = 56291, + [SMALL_STATE(942)] = 56313, + [SMALL_STATE(943)] = 56335, + [SMALL_STATE(944)] = 56359, + [SMALL_STATE(945)] = 56383, + [SMALL_STATE(946)] = 56409, + [SMALL_STATE(947)] = 56433, + [SMALL_STATE(948)] = 56457, + [SMALL_STATE(949)] = 56481, + [SMALL_STATE(950)] = 56502, + [SMALL_STATE(951)] = 56523, + [SMALL_STATE(952)] = 56542, + [SMALL_STATE(953)] = 56563, + [SMALL_STATE(954)] = 56582, + [SMALL_STATE(955)] = 56605, + [SMALL_STATE(956)] = 56626, + [SMALL_STATE(957)] = 56647, + [SMALL_STATE(958)] = 56670, + [SMALL_STATE(959)] = 56693, + [SMALL_STATE(960)] = 56712, + [SMALL_STATE(961)] = 56733, + [SMALL_STATE(962)] = 56754, + [SMALL_STATE(963)] = 56775, + [SMALL_STATE(964)] = 56794, + [SMALL_STATE(965)] = 56813, + [SMALL_STATE(966)] = 56836, + [SMALL_STATE(967)] = 56855, + [SMALL_STATE(968)] = 56878, + [SMALL_STATE(969)] = 56897, + [SMALL_STATE(970)] = 56918, + [SMALL_STATE(971)] = 56937, + [SMALL_STATE(972)] = 56960, + [SMALL_STATE(973)] = 56978, + [SMALL_STATE(974)] = 56996, + [SMALL_STATE(975)] = 57016, + [SMALL_STATE(976)] = 57034, + [SMALL_STATE(977)] = 57052, + [SMALL_STATE(978)] = 57070, + [SMALL_STATE(979)] = 57088, + [SMALL_STATE(980)] = 57108, + [SMALL_STATE(981)] = 57126, + [SMALL_STATE(982)] = 57146, + [SMALL_STATE(983)] = 57164, + [SMALL_STATE(984)] = 57180, + [SMALL_STATE(985)] = 57198, + [SMALL_STATE(986)] = 57216, + [SMALL_STATE(987)] = 57234, + [SMALL_STATE(988)] = 57252, + [SMALL_STATE(989)] = 57270, + [SMALL_STATE(990)] = 57290, + [SMALL_STATE(991)] = 57310, + [SMALL_STATE(992)] = 57330, + [SMALL_STATE(993)] = 57348, + [SMALL_STATE(994)] = 57366, + [SMALL_STATE(995)] = 57384, + [SMALL_STATE(996)] = 57402, + [SMALL_STATE(997)] = 57418, + [SMALL_STATE(998)] = 57436, + [SMALL_STATE(999)] = 57456, + [SMALL_STATE(1000)] = 57476, + [SMALL_STATE(1001)] = 57496, + [SMALL_STATE(1002)] = 57514, + [SMALL_STATE(1003)] = 57534, + [SMALL_STATE(1004)] = 57552, + [SMALL_STATE(1005)] = 57566, + [SMALL_STATE(1006)] = 57586, + [SMALL_STATE(1007)] = 57604, + [SMALL_STATE(1008)] = 57622, + [SMALL_STATE(1009)] = 57642, + [SMALL_STATE(1010)] = 57658, + [SMALL_STATE(1011)] = 57676, + [SMALL_STATE(1012)] = 57692, + [SMALL_STATE(1013)] = 57710, + [SMALL_STATE(1014)] = 57728, + [SMALL_STATE(1015)] = 57746, + [SMALL_STATE(1016)] = 57764, + [SMALL_STATE(1017)] = 57782, + [SMALL_STATE(1018)] = 57800, + [SMALL_STATE(1019)] = 57820, + [SMALL_STATE(1020)] = 57836, + [SMALL_STATE(1021)] = 57854, + [SMALL_STATE(1022)] = 57874, + [SMALL_STATE(1023)] = 57890, + [SMALL_STATE(1024)] = 57908, + [SMALL_STATE(1025)] = 57926, + [SMALL_STATE(1026)] = 57944, + [SMALL_STATE(1027)] = 57962, + [SMALL_STATE(1028)] = 57980, + [SMALL_STATE(1029)] = 57998, + [SMALL_STATE(1030)] = 58016, + [SMALL_STATE(1031)] = 58034, + [SMALL_STATE(1032)] = 58054, + [SMALL_STATE(1033)] = 58072, + [SMALL_STATE(1034)] = 58090, + [SMALL_STATE(1035)] = 58103, + [SMALL_STATE(1036)] = 58120, + [SMALL_STATE(1037)] = 58137, + [SMALL_STATE(1038)] = 58150, + [SMALL_STATE(1039)] = 58163, + [SMALL_STATE(1040)] = 58176, + [SMALL_STATE(1041)] = 58189, + [SMALL_STATE(1042)] = 58202, + [SMALL_STATE(1043)] = 58219, + [SMALL_STATE(1044)] = 58236, + [SMALL_STATE(1045)] = 58249, + [SMALL_STATE(1046)] = 58266, + [SMALL_STATE(1047)] = 58279, + [SMALL_STATE(1048)] = 58292, + [SMALL_STATE(1049)] = 58307, + [SMALL_STATE(1050)] = 58324, + [SMALL_STATE(1051)] = 58341, + [SMALL_STATE(1052)] = 58354, + [SMALL_STATE(1053)] = 58371, + [SMALL_STATE(1054)] = 58388, + [SMALL_STATE(1055)] = 58405, + [SMALL_STATE(1056)] = 58418, + [SMALL_STATE(1057)] = 58435, + [SMALL_STATE(1058)] = 58452, + [SMALL_STATE(1059)] = 58469, + [SMALL_STATE(1060)] = 58486, + [SMALL_STATE(1061)] = 58503, + [SMALL_STATE(1062)] = 58520, + [SMALL_STATE(1063)] = 58535, + [SMALL_STATE(1064)] = 58550, + [SMALL_STATE(1065)] = 58567, + [SMALL_STATE(1066)] = 58584, + [SMALL_STATE(1067)] = 58601, + [SMALL_STATE(1068)] = 58614, + [SMALL_STATE(1069)] = 58631, + [SMALL_STATE(1070)] = 58648, + [SMALL_STATE(1071)] = 58663, + [SMALL_STATE(1072)] = 58680, + [SMALL_STATE(1073)] = 58697, + [SMALL_STATE(1074)] = 58710, + [SMALL_STATE(1075)] = 58727, + [SMALL_STATE(1076)] = 58744, + [SMALL_STATE(1077)] = 58761, + [SMALL_STATE(1078)] = 58778, + [SMALL_STATE(1079)] = 58795, + [SMALL_STATE(1080)] = 58812, + [SMALL_STATE(1081)] = 58829, + [SMALL_STATE(1082)] = 58842, + [SMALL_STATE(1083)] = 58859, + [SMALL_STATE(1084)] = 58876, + [SMALL_STATE(1085)] = 58893, + [SMALL_STATE(1086)] = 58906, + [SMALL_STATE(1087)] = 58923, + [SMALL_STATE(1088)] = 58940, + [SMALL_STATE(1089)] = 58957, + [SMALL_STATE(1090)] = 58974, + [SMALL_STATE(1091)] = 58991, + [SMALL_STATE(1092)] = 59004, + [SMALL_STATE(1093)] = 59021, + [SMALL_STATE(1094)] = 59036, + [SMALL_STATE(1095)] = 59053, + [SMALL_STATE(1096)] = 59070, + [SMALL_STATE(1097)] = 59087, + [SMALL_STATE(1098)] = 59104, + [SMALL_STATE(1099)] = 59121, + [SMALL_STATE(1100)] = 59138, + [SMALL_STATE(1101)] = 59155, + [SMALL_STATE(1102)] = 59168, + [SMALL_STATE(1103)] = 59185, + [SMALL_STATE(1104)] = 59202, + [SMALL_STATE(1105)] = 59219, + [SMALL_STATE(1106)] = 59236, + [SMALL_STATE(1107)] = 59253, + [SMALL_STATE(1108)] = 59270, + [SMALL_STATE(1109)] = 59287, + [SMALL_STATE(1110)] = 59304, + [SMALL_STATE(1111)] = 59321, + [SMALL_STATE(1112)] = 59334, + [SMALL_STATE(1113)] = 59347, + [SMALL_STATE(1114)] = 59364, + [SMALL_STATE(1115)] = 59381, + [SMALL_STATE(1116)] = 59394, + [SMALL_STATE(1117)] = 59411, + [SMALL_STATE(1118)] = 59428, + [SMALL_STATE(1119)] = 59445, + [SMALL_STATE(1120)] = 59460, + [SMALL_STATE(1121)] = 59477, + [SMALL_STATE(1122)] = 59490, + [SMALL_STATE(1123)] = 59503, + [SMALL_STATE(1124)] = 59520, + [SMALL_STATE(1125)] = 59537, + [SMALL_STATE(1126)] = 59554, + [SMALL_STATE(1127)] = 59571, + [SMALL_STATE(1128)] = 59586, + [SMALL_STATE(1129)] = 59603, + [SMALL_STATE(1130)] = 59620, + [SMALL_STATE(1131)] = 59637, + [SMALL_STATE(1132)] = 59654, + [SMALL_STATE(1133)] = 59671, + [SMALL_STATE(1134)] = 59688, + [SMALL_STATE(1135)] = 59705, + [SMALL_STATE(1136)] = 59722, + [SMALL_STATE(1137)] = 59739, + [SMALL_STATE(1138)] = 59756, + [SMALL_STATE(1139)] = 59773, + [SMALL_STATE(1140)] = 59790, + [SMALL_STATE(1141)] = 59807, + [SMALL_STATE(1142)] = 59824, + [SMALL_STATE(1143)] = 59841, + [SMALL_STATE(1144)] = 59854, + [SMALL_STATE(1145)] = 59867, + [SMALL_STATE(1146)] = 59884, + [SMALL_STATE(1147)] = 59901, + [SMALL_STATE(1148)] = 59914, + [SMALL_STATE(1149)] = 59931, + [SMALL_STATE(1150)] = 59948, + [SMALL_STATE(1151)] = 59965, + [SMALL_STATE(1152)] = 59982, + [SMALL_STATE(1153)] = 59999, + [SMALL_STATE(1154)] = 60016, + [SMALL_STATE(1155)] = 60033, + [SMALL_STATE(1156)] = 60050, + [SMALL_STATE(1157)] = 60067, + [SMALL_STATE(1158)] = 60084, + [SMALL_STATE(1159)] = 60101, + [SMALL_STATE(1160)] = 60114, + [SMALL_STATE(1161)] = 60127, + [SMALL_STATE(1162)] = 60144, + [SMALL_STATE(1163)] = 60161, + [SMALL_STATE(1164)] = 60178, + [SMALL_STATE(1165)] = 60195, + [SMALL_STATE(1166)] = 60212, + [SMALL_STATE(1167)] = 60229, + [SMALL_STATE(1168)] = 60246, + [SMALL_STATE(1169)] = 60263, + [SMALL_STATE(1170)] = 60280, + [SMALL_STATE(1171)] = 60297, + [SMALL_STATE(1172)] = 60314, + [SMALL_STATE(1173)] = 60331, + [SMALL_STATE(1174)] = 60348, + [SMALL_STATE(1175)] = 60365, + [SMALL_STATE(1176)] = 60382, + [SMALL_STATE(1177)] = 60399, + [SMALL_STATE(1178)] = 60416, + [SMALL_STATE(1179)] = 60433, + [SMALL_STATE(1180)] = 60450, + [SMALL_STATE(1181)] = 60467, + [SMALL_STATE(1182)] = 60484, + [SMALL_STATE(1183)] = 60501, + [SMALL_STATE(1184)] = 60518, + [SMALL_STATE(1185)] = 60535, + [SMALL_STATE(1186)] = 60552, + [SMALL_STATE(1187)] = 60569, + [SMALL_STATE(1188)] = 60586, + [SMALL_STATE(1189)] = 60599, + [SMALL_STATE(1190)] = 60616, + [SMALL_STATE(1191)] = 60633, + [SMALL_STATE(1192)] = 60650, + [SMALL_STATE(1193)] = 60667, + [SMALL_STATE(1194)] = 60681, + [SMALL_STATE(1195)] = 60695, + [SMALL_STATE(1196)] = 60709, + [SMALL_STATE(1197)] = 60723, + [SMALL_STATE(1198)] = 60737, + [SMALL_STATE(1199)] = 60749, + [SMALL_STATE(1200)] = 60761, + [SMALL_STATE(1201)] = 60775, + [SMALL_STATE(1202)] = 60789, + [SMALL_STATE(1203)] = 60801, + [SMALL_STATE(1204)] = 60815, + [SMALL_STATE(1205)] = 60829, + [SMALL_STATE(1206)] = 60843, + [SMALL_STATE(1207)] = 60855, + [SMALL_STATE(1208)] = 60869, + [SMALL_STATE(1209)] = 60881, + [SMALL_STATE(1210)] = 60895, + [SMALL_STATE(1211)] = 60909, + [SMALL_STATE(1212)] = 60923, + [SMALL_STATE(1213)] = 60935, + [SMALL_STATE(1214)] = 60949, + [SMALL_STATE(1215)] = 60963, + [SMALL_STATE(1216)] = 60975, + [SMALL_STATE(1217)] = 60989, + [SMALL_STATE(1218)] = 61003, + [SMALL_STATE(1219)] = 61017, + [SMALL_STATE(1220)] = 61031, + [SMALL_STATE(1221)] = 61045, + [SMALL_STATE(1222)] = 61059, + [SMALL_STATE(1223)] = 61071, + [SMALL_STATE(1224)] = 61083, + [SMALL_STATE(1225)] = 61095, + [SMALL_STATE(1226)] = 61107, + [SMALL_STATE(1227)] = 61119, + [SMALL_STATE(1228)] = 61133, + [SMALL_STATE(1229)] = 61145, + [SMALL_STATE(1230)] = 61159, + [SMALL_STATE(1231)] = 61171, + [SMALL_STATE(1232)] = 61185, + [SMALL_STATE(1233)] = 61199, + [SMALL_STATE(1234)] = 61213, + [SMALL_STATE(1235)] = 61225, + [SMALL_STATE(1236)] = 61239, + [SMALL_STATE(1237)] = 61251, + [SMALL_STATE(1238)] = 61265, + [SMALL_STATE(1239)] = 61279, + [SMALL_STATE(1240)] = 61291, + [SMALL_STATE(1241)] = 61305, + [SMALL_STATE(1242)] = 61317, + [SMALL_STATE(1243)] = 61331, + [SMALL_STATE(1244)] = 61343, + [SMALL_STATE(1245)] = 61355, + [SMALL_STATE(1246)] = 61369, + [SMALL_STATE(1247)] = 61381, + [SMALL_STATE(1248)] = 61395, + [SMALL_STATE(1249)] = 61409, + [SMALL_STATE(1250)] = 61421, + [SMALL_STATE(1251)] = 61433, + [SMALL_STATE(1252)] = 61445, + [SMALL_STATE(1253)] = 61459, + [SMALL_STATE(1254)] = 61471, + [SMALL_STATE(1255)] = 61485, + [SMALL_STATE(1256)] = 61497, + [SMALL_STATE(1257)] = 61511, + [SMALL_STATE(1258)] = 61525, + [SMALL_STATE(1259)] = 61537, + [SMALL_STATE(1260)] = 61551, + [SMALL_STATE(1261)] = 61565, + [SMALL_STATE(1262)] = 61579, + [SMALL_STATE(1263)] = 61593, + [SMALL_STATE(1264)] = 61605, + [SMALL_STATE(1265)] = 61617, + [SMALL_STATE(1266)] = 61631, + [SMALL_STATE(1267)] = 61645, + [SMALL_STATE(1268)] = 61659, + [SMALL_STATE(1269)] = 61671, + [SMALL_STATE(1270)] = 61683, + [SMALL_STATE(1271)] = 61697, + [SMALL_STATE(1272)] = 61711, + [SMALL_STATE(1273)] = 61725, + [SMALL_STATE(1274)] = 61739, + [SMALL_STATE(1275)] = 61753, + [SMALL_STATE(1276)] = 61765, + [SMALL_STATE(1277)] = 61779, + [SMALL_STATE(1278)] = 61791, + [SMALL_STATE(1279)] = 61805, + [SMALL_STATE(1280)] = 61817, + [SMALL_STATE(1281)] = 61829, + [SMALL_STATE(1282)] = 61843, + [SMALL_STATE(1283)] = 61855, + [SMALL_STATE(1284)] = 61867, + [SMALL_STATE(1285)] = 61881, + [SMALL_STATE(1286)] = 61893, + [SMALL_STATE(1287)] = 61905, + [SMALL_STATE(1288)] = 61919, + [SMALL_STATE(1289)] = 61931, + [SMALL_STATE(1290)] = 61945, + [SMALL_STATE(1291)] = 61957, + [SMALL_STATE(1292)] = 61969, + [SMALL_STATE(1293)] = 61983, + [SMALL_STATE(1294)] = 61995, + [SMALL_STATE(1295)] = 62007, + [SMALL_STATE(1296)] = 62021, + [SMALL_STATE(1297)] = 62035, + [SMALL_STATE(1298)] = 62049, + [SMALL_STATE(1299)] = 62063, + [SMALL_STATE(1300)] = 62075, + [SMALL_STATE(1301)] = 62089, + [SMALL_STATE(1302)] = 62101, + [SMALL_STATE(1303)] = 62113, + [SMALL_STATE(1304)] = 62127, + [SMALL_STATE(1305)] = 62141, + [SMALL_STATE(1306)] = 62155, + [SMALL_STATE(1307)] = 62169, + [SMALL_STATE(1308)] = 62183, + [SMALL_STATE(1309)] = 62197, + [SMALL_STATE(1310)] = 62211, + [SMALL_STATE(1311)] = 62225, + [SMALL_STATE(1312)] = 62237, + [SMALL_STATE(1313)] = 62249, + [SMALL_STATE(1314)] = 62261, + [SMALL_STATE(1315)] = 62273, + [SMALL_STATE(1316)] = 62285, + [SMALL_STATE(1317)] = 62297, + [SMALL_STATE(1318)] = 62311, + [SMALL_STATE(1319)] = 62325, + [SMALL_STATE(1320)] = 62339, + [SMALL_STATE(1321)] = 62353, + [SMALL_STATE(1322)] = 62364, + [SMALL_STATE(1323)] = 62375, + [SMALL_STATE(1324)] = 62386, + [SMALL_STATE(1325)] = 62397, + [SMALL_STATE(1326)] = 62408, + [SMALL_STATE(1327)] = 62419, + [SMALL_STATE(1328)] = 62430, + [SMALL_STATE(1329)] = 62441, + [SMALL_STATE(1330)] = 62452, + [SMALL_STATE(1331)] = 62463, + [SMALL_STATE(1332)] = 62474, + [SMALL_STATE(1333)] = 62485, + [SMALL_STATE(1334)] = 62496, + [SMALL_STATE(1335)] = 62507, + [SMALL_STATE(1336)] = 62518, + [SMALL_STATE(1337)] = 62529, + [SMALL_STATE(1338)] = 62540, + [SMALL_STATE(1339)] = 62551, + [SMALL_STATE(1340)] = 62562, + [SMALL_STATE(1341)] = 62573, + [SMALL_STATE(1342)] = 62584, + [SMALL_STATE(1343)] = 62595, + [SMALL_STATE(1344)] = 62606, + [SMALL_STATE(1345)] = 62617, + [SMALL_STATE(1346)] = 62628, + [SMALL_STATE(1347)] = 62639, + [SMALL_STATE(1348)] = 62650, + [SMALL_STATE(1349)] = 62661, + [SMALL_STATE(1350)] = 62672, + [SMALL_STATE(1351)] = 62683, + [SMALL_STATE(1352)] = 62694, + [SMALL_STATE(1353)] = 62705, + [SMALL_STATE(1354)] = 62716, + [SMALL_STATE(1355)] = 62727, + [SMALL_STATE(1356)] = 62738, + [SMALL_STATE(1357)] = 62749, + [SMALL_STATE(1358)] = 62760, + [SMALL_STATE(1359)] = 62771, + [SMALL_STATE(1360)] = 62782, + [SMALL_STATE(1361)] = 62793, + [SMALL_STATE(1362)] = 62804, + [SMALL_STATE(1363)] = 62815, + [SMALL_STATE(1364)] = 62826, + [SMALL_STATE(1365)] = 62837, + [SMALL_STATE(1366)] = 62848, + [SMALL_STATE(1367)] = 62859, + [SMALL_STATE(1368)] = 62870, + [SMALL_STATE(1369)] = 62881, + [SMALL_STATE(1370)] = 62892, + [SMALL_STATE(1371)] = 62903, + [SMALL_STATE(1372)] = 62914, + [SMALL_STATE(1373)] = 62925, + [SMALL_STATE(1374)] = 62936, + [SMALL_STATE(1375)] = 62947, + [SMALL_STATE(1376)] = 62958, + [SMALL_STATE(1377)] = 62969, + [SMALL_STATE(1378)] = 62980, + [SMALL_STATE(1379)] = 62991, + [SMALL_STATE(1380)] = 63002, + [SMALL_STATE(1381)] = 63013, + [SMALL_STATE(1382)] = 63024, + [SMALL_STATE(1383)] = 63035, + [SMALL_STATE(1384)] = 63046, + [SMALL_STATE(1385)] = 63057, + [SMALL_STATE(1386)] = 63068, + [SMALL_STATE(1387)] = 63079, + [SMALL_STATE(1388)] = 63090, + [SMALL_STATE(1389)] = 63101, + [SMALL_STATE(1390)] = 63112, + [SMALL_STATE(1391)] = 63123, + [SMALL_STATE(1392)] = 63134, + [SMALL_STATE(1393)] = 63145, + [SMALL_STATE(1394)] = 63156, + [SMALL_STATE(1395)] = 63167, + [SMALL_STATE(1396)] = 63178, + [SMALL_STATE(1397)] = 63189, + [SMALL_STATE(1398)] = 63200, + [SMALL_STATE(1399)] = 63211, + [SMALL_STATE(1400)] = 63222, + [SMALL_STATE(1401)] = 63233, + [SMALL_STATE(1402)] = 63244, + [SMALL_STATE(1403)] = 63255, + [SMALL_STATE(1404)] = 63266, + [SMALL_STATE(1405)] = 63277, + [SMALL_STATE(1406)] = 63288, + [SMALL_STATE(1407)] = 63299, + [SMALL_STATE(1408)] = 63310, + [SMALL_STATE(1409)] = 63321, + [SMALL_STATE(1410)] = 63332, + [SMALL_STATE(1411)] = 63343, + [SMALL_STATE(1412)] = 63354, + [SMALL_STATE(1413)] = 63365, + [SMALL_STATE(1414)] = 63376, + [SMALL_STATE(1415)] = 63387, + [SMALL_STATE(1416)] = 63398, + [SMALL_STATE(1417)] = 63409, + [SMALL_STATE(1418)] = 63420, + [SMALL_STATE(1419)] = 63431, + [SMALL_STATE(1420)] = 63442, + [SMALL_STATE(1421)] = 63453, + [SMALL_STATE(1422)] = 63464, + [SMALL_STATE(1423)] = 63475, + [SMALL_STATE(1424)] = 63486, + [SMALL_STATE(1425)] = 63497, + [SMALL_STATE(1426)] = 63508, + [SMALL_STATE(1427)] = 63519, + [SMALL_STATE(1428)] = 63530, + [SMALL_STATE(1429)] = 63541, + [SMALL_STATE(1430)] = 63552, + [SMALL_STATE(1431)] = 63563, + [SMALL_STATE(1432)] = 63574, + [SMALL_STATE(1433)] = 63585, + [SMALL_STATE(1434)] = 63596, + [SMALL_STATE(1435)] = 63607, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -58690,1617 +58759,1618 @@ static const TSParseActionEntry ts_parse_actions[] = { [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1093), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1195), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1197), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(927), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1210), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1416), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(172), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(249), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(295), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1027), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1215), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(174), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(569), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(565), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(311), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1403), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1019), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1093), + [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1201), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1205), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(933), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1218), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1417), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(198), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(222), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(306), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1018), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1221), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(178), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(569), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(592), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(560), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(293), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1404), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1006), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(83), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(79), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1416), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(172), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(249), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(295), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1201), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(14), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(60), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(174), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(62), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1417), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(198), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(222), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(306), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1211), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(16), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(68), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(178), [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(569), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(588), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(565), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(311), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1019), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(80), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(24), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(24), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(25), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(26), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(592), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(560), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(293), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1006), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(83), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(25), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(25), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(26), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(27), [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1416), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(172), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(249), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(295), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1201), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(14), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(60), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(174), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(62), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1417), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(198), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(222), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(306), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1211), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(16), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(68), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(178), [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(569), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(588), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(565), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(311), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1019), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(80), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(24), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(24), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(25), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(26), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(592), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(560), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(293), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1006), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(83), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(25), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(25), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(26), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(27), [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 7), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 7), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 19), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 19), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 20), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 20), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 44), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 44), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(70), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1352), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(178), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(270), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(297), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1243), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(280), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(289), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(176), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(571), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(601), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(566), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(307), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(985), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(312), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(116), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [472] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1290), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 30), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 30), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 8), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 8), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 20), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 20), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 19), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 19), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 30), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 30), + [413] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1308), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1353), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(193), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(271), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(311), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1254), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(279), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(289), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(172), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(577), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(615), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(555), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(292), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(975), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(312), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(123), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(123), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(57), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(125), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 7), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 7), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 44), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 44), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 8), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 8), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 70), [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 70), [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 18), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 18), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 13), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 13), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 65), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 65), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 38), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 38), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 16), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 16), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 55), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 55), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 49), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 49), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 35), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 35), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 13), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 13), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 13), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 13), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 33), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 33), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1231), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 13), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 13), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 38), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 38), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 18), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 18), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 65), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 65), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 35), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 35), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 33), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 33), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 13), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 13), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 16), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 16), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 55), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 55), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 49), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 49), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 13), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 13), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1227), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(59), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(59), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(59), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1112] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1285), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1112] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1287), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 58), [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 68), [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 68), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1344), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1358), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1183] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1278), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1207] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1271), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 23), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 23), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1341), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(561), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(573), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(987), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1008), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(939), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(914), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(914), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(836), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(896), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(875), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 36), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 36), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 23), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 23), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1342), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(565), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(575), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1019), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(972), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(939), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(914), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(914), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(697), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(880), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(879), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 36), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 36), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 12), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 12), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 10), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 10), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 12), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 12), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 10), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 10), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 56), [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 56), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 8), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 8), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 62), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 62), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 22), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 22), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 36), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 36), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 62), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 62), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 61), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 61), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 53), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 53), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 73), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 73), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 72), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 72), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 54), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 54), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 50), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 50), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 9), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 9), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 42), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 42), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 26), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 26), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 37), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 37), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 22), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 22), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 64), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 64), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 22), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 22), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 62), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 62), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 73), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 73), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 72), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 72), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 53), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 53), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 54), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 54), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 50), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 50), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 9), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 9), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 42), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 42), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 8), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 8), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 37), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 37), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 15), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 15), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 64), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 64), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 26), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 26), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 12), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 12), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 42), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 42), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 22), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 22), [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 8), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 8), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 15), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 15), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 12), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 12), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 42), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 42), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 24), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 24), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 62), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 62), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 36), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 36), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 61), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 61), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 24), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 24), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 8), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 8), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 51), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 51), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1291), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1271), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(946), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1287), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1211), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1266), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(969), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1404), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 47), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 51), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 51), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1297), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1278), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(943), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1296), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1214), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1267), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(971), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1405), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 8), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 46), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 31), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 46), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 59), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 47), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 31), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 18), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 59), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 31), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 5), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1408), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 47), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 32), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 31), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(259), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(630), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(627), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(116), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 45), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 6), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 11), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 29), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 6), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(564), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(563), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 25), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(691), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(574), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(560), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 11), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1017), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(611), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(643), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(732), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 41), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 41), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 8), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 64), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1269), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(711), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(929), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(671), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(594), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(609), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 34), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 60), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(132), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(645), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 52), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(802), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 14), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(734), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(736), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(870), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(290), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(743), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(924), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 54), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1146), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 43), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 28), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 27), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 40), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 59), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 46), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 31), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 47), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 18), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 47), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 31), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 47), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 5), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 46), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 59), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 31), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1406), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 32), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 31), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(246), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(125), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(636), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(638), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 6), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 45), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 29), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 11), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(561), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(562), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(995), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(558), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 25), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(570), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(695), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 11), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 6), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(600), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(732), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 41), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 41), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 8), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 64), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(945), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(836), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(671), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(650), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(593), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 34), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(601), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 60), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(750), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(744), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(718), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(132), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(644), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 52), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(736), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 14), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(865), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1171), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(290), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(918), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 54), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1272), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 28), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 27), [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 40), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 28), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 17), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 71), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 51), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 8), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 51), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 63), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 51), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 48), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 27), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 17), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 51), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 51), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 51), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 8), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 43), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 63), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 71), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 27), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 48), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 25), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3313] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3315] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 25), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), }; #ifdef __cplusplus