diff --git a/src/grammar.json b/src/grammar.json index 3545521d9..f29cf9200 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3753,6 +3753,10 @@ }, "named": true, "value": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "boolean_negation" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 6d53a4ea7..c0869227b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1484,6 +1484,10 @@ "type": "bit_string", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "field_access", "named": true diff --git a/src/parser.c b/src/parser.c index 7e1e17fba..4e7b61656 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,7 +14,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1437 +#define STATE_COUNT 1560 #define LARGE_STATE_COUNT 6 #define SYMBOL_COUNT 271 #define ALIAS_COUNT 1 @@ -2359,160 +2359,160 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(175); + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(170) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(268); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + lookahead == ' ') SKIP(168) + if (lookahead == '\r') SKIP(168) + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '\\') ADVANCE(127); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'b') ADVANCE(373); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == 'f') ADVANCE(384); - if (lookahead == 'i') ADVANCE(364); - if (lookahead == 'j') ADVANCE(323); - if (lookahead == 'l') ADVANCE(356); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 's') ADVANCE(374); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(389); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(255); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'b') ADVANCE(370); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'f') ADVANCE(381); + if (lookahead == 'i') ADVANCE(361); + if (lookahead == 'j') ADVANCE(320); + if (lookahead == 'l') ADVANCE(353); + if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 's') ADVANCE(371); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(386); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 1: - if (lookahead == '&') ADVANCE(227); + if (lookahead == '&') ADVANCE(226); END_STATE(); case 2: - if (lookahead == '-') ADVANCE(167); + if (lookahead == '-') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); + lookahead == '_') ADVANCE(269); END_STATE(); case 3: - if (lookahead == '-') ADVANCE(260); - if (lookahead == '<') ADVANCE(211); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '<') ADVANCE(209); END_STATE(); case 4: - if (lookahead == '-') ADVANCE(260); - if (lookahead == '>') ADVANCE(249); + if (lookahead == '-') ADVANCE(257); + if (lookahead == '>') ADVANCE(247); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(252); + if (lookahead == '.') ADVANCE(250); END_STATE(); case 6: - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 7: - if (lookahead == '/') ADVANCE(179); + if (lookahead == '/') ADVANCE(177); END_STATE(); case 8: if (lookahead == '1') ADVANCE(10); if (lookahead == '3') ADVANCE(9); - if (lookahead == '8') ADVANCE(292); + if (lookahead == '8') ADVANCE(289); END_STATE(); case 9: - if (lookahead == '2') ADVANCE(296); + if (lookahead == '2') ADVANCE(293); END_STATE(); case 10: - if (lookahead == '6') ADVANCE(294); + if (lookahead == '6') ADVANCE(291); END_STATE(); case 11: - if (lookahead == '<') ADVANCE(211); + if (lookahead == '<') ADVANCE(209); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(229); + if (lookahead == '=') ADVANCE(228); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(228); + if (lookahead == '=') ADVANCE(227); END_STATE(); case 14: - if (lookahead == '>') ADVANCE(223); + if (lookahead == '>') ADVANCE(222); END_STATE(); case 15: - if (lookahead == '>') ADVANCE(212); + if (lookahead == '>') ADVANCE(210); END_STATE(); case 16: - if (lookahead == '>') ADVANCE(241); - if (lookahead == '|') ADVANCE(226); + if (lookahead == '>') ADVANCE(239); + if (lookahead == '|') ADVANCE(225); END_STATE(); case 17: - if (lookahead == '_') ADVANCE(111); - if (lookahead == 's') ADVANCE(290); + if (lookahead == '_') ADVANCE(110); + if (lookahead == 's') ADVANCE(287); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'a') ADVANCE(129); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(102); + if (lookahead == 'a') ADVANCE(101); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(76); + if (lookahead == 'a') ADVANCE(75); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(116); + if (lookahead == 'a') ADVANCE(115); END_STATE(); case 26: - if (lookahead == 'b') ADVANCE(263); + if (lookahead == 'b') ADVANCE(260); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(86); + if (lookahead == 'c') ADVANCE(85); END_STATE(); case 28: - if (lookahead == 'c') ADVANCE(105); + if (lookahead == 'c') ADVANCE(104); END_STATE(); case 29: - if (lookahead == 'c') ADVANCE(91); + if (lookahead == 'c') ADVANCE(90); END_STATE(); case 30: - if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'c') ADVANCE(91); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(304); + if (lookahead == 'd') ADVANCE(301); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(306); + if (lookahead == 'd') ADVANCE(303); END_STATE(); case 33: if (lookahead == 'd') ADVANCE(45); @@ -2524,94 +2524,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(47); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(219); + if (lookahead == 'e') ADVANCE(218); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(202); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 38: if (lookahead == 'e') ADVANCE(31); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(312); + if (lookahead == 'e') ADVANCE(309); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'e') ADVANCE(262); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 43: if (lookahead == 'e') ADVANCE(32); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(96); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 48: if (lookahead == 'f') ADVANCE(8); END_STATE(); case 49: - if (lookahead == 'f') ADVANCE(181); + if (lookahead == 'f') ADVANCE(179); + if (lookahead == 'm') ADVANCE(92); END_STATE(); case 50: - if (lookahead == 'f') ADVANCE(181); - if (lookahead == 'm') ADVANCE(93); - END_STATE(); - case 51: - if (lookahead == 'g') ADVANCE(308); + if (lookahead == 'g') ADVANCE(305); if (lookahead == 'n') ADVANCE(20); if (lookahead == 't') ADVANCE(17); END_STATE(); + case 51: + if (lookahead == 'g') ADVANCE(183); + END_STATE(); case 52: - if (lookahead == 'g') ADVANCE(185); + if (lookahead == 'g') ADVANCE(285); END_STATE(); case 53: - if (lookahead == 'g') ADVANCE(288); + if (lookahead == 'g') ADVANCE(77); + if (lookahead == 'z') ADVANCE(36); END_STATE(); case 54: - if (lookahead == 'g') ADVANCE(78); - if (lookahead == 'z') ADVANCE(36); + if (lookahead == 'g') ADVANCE(79); END_STATE(); case 55: - if (lookahead == 'g') ADVANCE(80); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'y') ADVANCE(111); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(51); - if (lookahead == 'y') ADVANCE(112); + if (lookahead == 'i') ADVANCE(53); END_STATE(); case 57: if (lookahead == 'i') ADVANCE(54); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(55); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(131); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'i') ADVANCE(76); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 's') ADVANCE(57); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(114); - if (lookahead == 's') ADVANCE(58); + if (lookahead == 'i') ADVANCE(80); END_STATE(); case 64: if (lookahead == 'i') ADVANCE(81); @@ -2620,52 +2620,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(82); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(83); + if (lookahead == 'l') ADVANCE(223); END_STATE(); case 67: - if (lookahead == 'l') ADVANCE(224); + if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'n') ADVANCE(220); END_STATE(); case 68: - if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'n') ADVANCE(221); + if (lookahead == 'l') ADVANCE(21); END_STATE(); case 69: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'm') ADVANCE(92); END_STATE(); case 71: - if (lookahead == 'm') ADVANCE(93); + if (lookahead == 'm') ADVANCE(92); + if (lookahead == 'n') ADVANCE(112); END_STATE(); case 72: - if (lookahead == 'm') ADVANCE(93); - if (lookahead == 'n') ADVANCE(113); + if (lookahead == 'n') ADVANCE(220); END_STATE(); case 73: - if (lookahead == 'n') ADVANCE(221); + if (lookahead == 'n') ADVANCE(62); + if (lookahead == 't') ADVANCE(48); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 't') ADVANCE(48); + if (lookahead == 'n') ADVANCE(109); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(110); + if (lookahead == 'n') ADVANCE(51); END_STATE(); case 76: if (lookahead == 'n') ADVANCE(52); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(53); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'n') ADVANCE(22); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'n') ADVANCE(43); END_STATE(); case 80: - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 81: if (lookahead == 'n') ADVANCE(119); @@ -2674,19 +2674,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(120); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(121); + if (lookahead == 'o') ADVANCE(74); END_STATE(); case 84: - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'o') ADVANCE(105); END_STATE(); case 85: - if (lookahead == 'o') ADVANCE(106); + if (lookahead == 'o') ADVANCE(33); END_STATE(); case 86: - if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'o') ADVANCE(63); END_STATE(); case 88: if (lookahead == 'o') ADVANCE(64); @@ -2695,363 +2695,433 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(65); END_STATE(); case 90: - if (lookahead == 'o') ADVANCE(66); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 91: - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 92: - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'p') ADVANCE(84); END_STATE(); case 93: - if (lookahead == 'p') ADVANCE(85); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(19); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 95: - if (lookahead == 'p') ADVANCE(37); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 96: - if (lookahead == 'p') ADVANCE(88); + if (lookahead == 'p') ADVANCE(117); END_STATE(); case 97: - if (lookahead == 'p') ADVANCE(118); + if (lookahead == 'p') ADVANCE(88); END_STATE(); case 98: if (lookahead == 'p') ADVANCE(89); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(90); + if (lookahead == 'q') ADVANCE(128); END_STATE(); case 100: - if (lookahead == 'q') ADVANCE(129); + if (lookahead == 'r') ADVANCE(68); + if (lookahead == 'x') ADVANCE(122); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(69); - if (lookahead == 'x') ADVANCE(123); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'r') ADVANCE(78); END_STATE(); case 103: - if (lookahead == 'r') ADVANCE(79); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 104: - if (lookahead == 'r') ADVANCE(62); + if (lookahead == 'r') ADVANCE(60); END_STATE(); case 105: - if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'r') ADVANCE(116); END_STATE(); case 106: - if (lookahead == 'r') ADVANCE(117); + if (lookahead == 's') ADVANCE(196); END_STATE(); case 107: - if (lookahead == 's') ADVANCE(198); + if (lookahead == 's') ADVANCE(279); END_STATE(); case 108: - if (lookahead == 's') ADVANCE(282); + if (lookahead == 's') ADVANCE(28); END_STATE(); case 109: - if (lookahead == 's') ADVANCE(28); + if (lookahead == 's') ADVANCE(114); END_STATE(); case 110: - if (lookahead == 's') ADVANCE(115); + if (lookahead == 's') ADVANCE(124); END_STATE(); case 111: - if (lookahead == 's') ADVANCE(125); + if (lookahead == 't') ADVANCE(44); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(44); + if (lookahead == 't') ADVANCE(281); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(284); + if (lookahead == 't') ADVANCE(311); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(314); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(204); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(286); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(194); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(187); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(298); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(300); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(302); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(70); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(42); + if (lookahead == 't') ADVANCE(58); END_STATE(); case 124: - if (lookahead == 't') ADVANCE(59); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(104); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 126: - if (lookahead == 't') ADVANCE(122); - END_STATE(); - case 127: - if (lookahead == 'u') ADVANCE(135); + if (lookahead == 'u') ADVANCE(134); if (lookahead == '"' || lookahead == '\\' || lookahead == 'e' || lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(269); + lookahead == 't') ADVANCE(266); END_STATE(); - case 128: + case 127: if (lookahead == 'u') ADVANCE(26); END_STATE(); - case 129: + case 128: if (lookahead == 'u') ADVANCE(41); END_STATE(); - case 130: + case 129: if (lookahead == 'v') ADVANCE(23); END_STATE(); - case 131: + case 130: if (lookahead == 'v') ADVANCE(40); END_STATE(); + case 131: + if (lookahead == 'x') ADVANCE(122); + END_STATE(); case 132: - if (lookahead == 'x') ADVANCE(123); + if (lookahead == 'y') ADVANCE(277); END_STATE(); case 133: - if (lookahead == 'y') ADVANCE(280); + if (lookahead == 'y') ADVANCE(94); END_STATE(); case 134: - if (lookahead == 'y') ADVANCE(95); + if (lookahead == '{') ADVANCE(166); END_STATE(); case 135: - if (lookahead == '{') ADVANCE(168); + if (lookahead == '}') ADVANCE(267); END_STATE(); case 136: - if (lookahead == '|') ADVANCE(226); + if (lookahead == '}') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); END_STATE(); case 137: - if (lookahead == '}') ADVANCE(270); + if (lookahead == '}') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 138: - if (lookahead == '}') ADVANCE(270); + if (lookahead == '}') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 139: - if (lookahead == '}') ADVANCE(270); + if (lookahead == '}') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 140: - if (lookahead == '}') ADVANCE(270); + if (lookahead == '}') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); END_STATE(); case 141: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(141) + if (lookahead == '\r') SKIP(141) + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(323); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 't') ADVANCE(398); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 142: - if (lookahead == '}') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(142) + if (lookahead == '\r') SKIP(142) + if (lookahead == '!') ADVANCE(258); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(5); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(271); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(323); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 't') ADVANCE(398); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 143: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(143) if (lookahead == '\r') SKIP(143) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(401); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '!') ADVANCE(258); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(5); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(323); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 't') ADVANCE(398); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 144: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(144) if (lookahead == '\r') SKIP(144) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(401); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(234); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'c') ADVANCE(323); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 't') ADVANCE(398); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 145: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(145) - if (lookahead == '\r') SKIP(145) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(401); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + lookahead == ' ') SKIP(146) + if (lookahead == '\r') SKIP(146) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '%') ADVANCE(246); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(212); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(273); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'b') ADVANCE(55); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'j') ADVANCE(18); + if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 's') ADVANCE(56); + if (lookahead == 't') ADVANCE(133); + if (lookahead == 'u') ADVANCE(73); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 146: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(146) if (lookahead == '\r') SKIP(146) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(212); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(273); + if (lookahead == ':') ADVANCE(191); if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(401); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'b') ADVANCE(55); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'j') ADVANCE(18); + if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 's') ADVANCE(56); + if (lookahead == 't') ADVANCE(133); + if (lookahead == 'u') ADVANCE(73); + if (lookahead == '{') ADVANCE(181); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 147: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(148) - if (lookahead == '\r') SKIP(148) + lookahead == ' ') SKIP(147) + if (lookahead == '\r') SKIP(147) if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(268); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '\\') ADVANCE(127); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'b') ADVANCE(56); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(101); - if (lookahead == 'f') ADVANCE(68); - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(60); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 's') ADVANCE(57); - if (lookahead == 't') ADVANCE(134); - if (lookahead == 'u') ADVANCE(74); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(212); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '{') ADVANCE(181); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 148: if (lookahead == '\t' || @@ -3059,41 +3129,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(148) if (lookahead == '\r') SKIP(148) if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'b') ADVANCE(56); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(101); - if (lookahead == 'f') ADVANCE(68); - if (lookahead == 'i') ADVANCE(72); - if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(60); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 's') ADVANCE(57); - if (lookahead == 't') ADVANCE(134); - if (lookahead == 'u') ADVANCE(74); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(313); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 149: if (lookahead == '\t' || @@ -3101,63 +3159,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(149) if (lookahead == '\r') SKIP(149) if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(214); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(232); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(229); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '>') ADVANCE(234); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'a') ADVANCE(426); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 150: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(150) if (lookahead == '\r') SKIP(150) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + if (lookahead == '!') ADVANCE(258); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(315); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 151: if (lookahead == '\t' || @@ -3165,2170 +3209,2134 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(151) if (lookahead == '\r') SKIP(151) if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(199); if (lookahead == '<') ADVANCE(230); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(429); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '>') ADVANCE(234); + if (lookahead == '@') ADVANCE(187); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 152: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(152) if (lookahead == '\r') SKIP(152) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(217); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '-') ADVANCE(216); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '0') ADVANCE(271); if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'i') ADVANCE(366); - if (lookahead == '|') ADVANCE(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'i') ADVANCE(363); + if (lookahead == '|') ADVANCE(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 153: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(153) if (lookahead == '\r') SKIP(153) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(196); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '-') ADVANCE(217); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(231); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(136); - if (lookahead == '}') ADVANCE(184); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(313); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 154: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(154) if (lookahead == '\r') SKIP(154) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(246); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(199); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 155: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(155) if (lookahead == '\r') SKIP(155) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '-') ADVANCE(218); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '-') ADVANCE(217); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '0') ADVANCE(271); if (lookahead == '<') ADVANCE(11); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'a') ADVANCE(432); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 156: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(156) if (lookahead == '\r') SKIP(156) - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(218); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(195); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(435); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(4); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '@') ADVANCE(187); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 157: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(157) if (lookahead == '\r') SKIP(157) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(213); - if (lookahead == '.') ADVANCE(197); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(14); + if (lookahead == '.') ADVANCE(195); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); + if (lookahead == ':') ADVANCE(191); if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(206); + if (lookahead == '=') ADVANCE(204); if (lookahead == '>') ADVANCE(15); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '}') ADVANCE(184); + if (lookahead == '@') ADVANCE(187); + if (lookahead == ']') ADVANCE(208); + if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '|') ADVANCE(252); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 158: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(158) if (lookahead == '\r') SKIP(158) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(197); + if (lookahead == '#') ADVANCE(206); + if (lookahead == ')') ADVANCE(190); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '@') ADVANCE(189); - if (lookahead == ']') ADVANCE(210); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'c') ADVANCE(84); - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'f') ADVANCE(73); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'o') ADVANCE(94); - if (lookahead == 'p') ADVANCE(128); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '|') ADVANCE(254); - if (lookahead == '}') ADVANCE(184); + if (lookahead == '_') ADVANCE(314); + if (lookahead == 'f') ADVANCE(385); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 159: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(159) if (lookahead == '\r') SKIP(159) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '&') ADVANCE(1); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(14); + if (lookahead == ')') ADVANCE(190); + if (lookahead == ',') ADVANCE(189); if (lookahead == '/') ADVANCE(7); - if (lookahead == '<') ADVANCE(232); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == 'a') ADVANCE(107); - if (lookahead == 'i') ADVANCE(49); - if (lookahead == '|') ADVANCE(256); + if (lookahead == ':') ADVANCE(191); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(314); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 160: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(160) if (lookahead == '\r') SKIP(160) - if (lookahead == '#') ADVANCE(208); - if (lookahead == ')') ADVANCE(192); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '-') ADVANCE(211); if (lookahead == '/') ADVANCE(7); - if (lookahead == '_') ADVANCE(317); - if (lookahead == 'f') ADVANCE(388); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '0') ADVANCE(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 161: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(161) if (lookahead == '\r') SKIP(161) - if (lookahead == ')') ADVANCE(192); - if (lookahead == ',') ADVANCE(191); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(317); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + if (lookahead == 't') ADVANCE(455); + if (lookahead == '}') ADVANCE(182); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); case 162: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(162) if (lookahead == '\r') SKIP(162) - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '-') ADVANCE(213); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - END_STATE(); - case 163: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(163) - if (lookahead == '\r') SKIP(163) - if (lookahead == '/') ADVANCE(7); - if (lookahead == 't') ADVANCE(458); - if (lookahead == '}') ADVANCE(184); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); - END_STATE(); - case 164: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(164) - if (lookahead == '\r') SKIP(164) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(230); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(229); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(326); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'p') ADVANCE(328); - if (lookahead == 't') ADVANCE(401); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(323); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 't') ADVANCE(398); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 165: + case 163: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(279); + lookahead == '_') ADVANCE(276); END_STATE(); - case 166: + case 164: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(278); + lookahead == '_') ADVANCE(275); END_STATE(); - case 167: + case 165: if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); + lookahead == '_') ADVANCE(269); END_STATE(); - case 168: + case 166: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); END_STATE(); - case 169: + case 167: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); END_STATE(); - case 170: - if (eof) ADVANCE(175); + case 168: + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(170) - if (lookahead == '\r') SKIP(170) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + lookahead == ' ') SKIP(168) + if (lookahead == '\r') SKIP(168) + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(192); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == ',') ADVANCE(191); - if (lookahead == '-') ADVANCE(215); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(230); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == ']') ADVANCE(210); - if (lookahead == '_') ADVANCE(316); - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'b') ADVANCE(373); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == 'f') ADVANCE(384); - if (lookahead == 'i') ADVANCE(364); - if (lookahead == 'j') ADVANCE(323); - if (lookahead == 'l') ADVANCE(356); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 's') ADVANCE(374); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(389); - if (lookahead == '{') ADVANCE(183); - if (lookahead == '|') ADVANCE(255); - if (lookahead == '}') ADVANCE(184); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '(') ADVANCE(188); + if (lookahead == ')') ADVANCE(190); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == ',') ADVANCE(189); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == ':') ADVANCE(191); + if (lookahead == '<') ADVANCE(229); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '>') ADVANCE(235); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == ']') ADVANCE(208); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'b') ADVANCE(370); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'f') ADVANCE(381); + if (lookahead == 'i') ADVANCE(361); + if (lookahead == 'j') ADVANCE(320); + if (lookahead == 'l') ADVANCE(353); + if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 's') ADVANCE(371); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(386); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 171: - if (eof) ADVANCE(175); + case 169: + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(171) - if (lookahead == '\r') SKIP(171) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + lookahead == ' ') SKIP(169) + if (lookahead == '\r') SKIP(169) + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(230); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(229); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(456); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(365); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '>') ADVANCE(234); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 172: - if (eof) ADVANCE(175); + case 170: + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(172) - if (lookahead == '\r') SKIP(172) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '-') ADVANCE(218); + lookahead == ' ') SKIP(170) + if (lookahead == '\r') SKIP(170) + if (lookahead == '!') ADVANCE(258); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '-') ADVANCE(217); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '0') ADVANCE(271); if (lookahead == '<') ADVANCE(11); - if (lookahead == '=') ADVANCE(206); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(456); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(365); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '=') ADVANCE(204); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 173: - if (eof) ADVANCE(175); + case 171: + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(173) - if (lookahead == '\r') SKIP(173) - if (lookahead == '!') ADVANCE(261); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '-') ADVANCE(217); + lookahead == ' ') SKIP(171) + if (lookahead == '\r') SKIP(171) + if (lookahead == '!') ADVANCE(258); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '-') ADVANCE(216); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(274); + if (lookahead == '0') ADVANCE(271); if (lookahead == '<') ADVANCE(11); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(435); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(456); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(365); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 174: - if (eof) ADVANCE(175); + case 172: + if (eof) ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(174) - if (lookahead == '!') ADVANCE(262); - if (lookahead == '"') ADVANCE(267); - if (lookahead == '#') ADVANCE(208); - if (lookahead == '%') ADVANCE(248); + lookahead == ' ') SKIP(172) + if (lookahead == '\r') SKIP(172) + if (lookahead == '!') ADVANCE(259); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '#') ADVANCE(206); + if (lookahead == '%') ADVANCE(246); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(190); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '+') ADVANCE(242); - if (lookahead == '-') ADVANCE(216); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '0') ADVANCE(274); - if (lookahead == '<') ADVANCE(230); + if (lookahead == '(') ADVANCE(188); + if (lookahead == '*') ADVANCE(243); + if (lookahead == '+') ADVANCE(240); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '0') ADVANCE(271); + if (lookahead == '<') ADVANCE(229); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(236); - if (lookahead == '@') ADVANCE(189); - if (lookahead == '[') ADVANCE(209); - if (lookahead == '_') ADVANCE(318); - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == 'e') ADVANCE(456); - if (lookahead == 'f') ADVANCE(388); - if (lookahead == 'i') ADVANCE(365); - if (lookahead == 'l') ADVANCE(357); - if (lookahead == 'o') ADVANCE(412); - if (lookahead == 'p') ADVANCE(327); - if (lookahead == 't') ADVANCE(400); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == '{') ADVANCE(183); + if (lookahead == '>') ADVANCE(234); + if (lookahead == '@') ADVANCE(187); + if (lookahead == '[') ADVANCE(207); + if (lookahead == '_') ADVANCE(315); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'c') ADVANCE(322); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'l') ADVANCE(354); + if (lookahead == 'o') ADVANCE(409); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 't') ADVANCE(397); + if (lookahead == 'u') ADVANCE(424); + if (lookahead == '{') ADVANCE(181); if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(460); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(457); END_STATE(); - case 175: + case 173: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 176: + case 174: ACCEPT_TOKEN(sym_module_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(176); + lookahead != '\n') ADVANCE(174); END_STATE(); - case 177: + case 175: ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(176); + if (lookahead == '/') ADVANCE(174); if (lookahead != 0 && - lookahead != '\n') ADVANCE(178); + lookahead != '\n') ADVANCE(176); END_STATE(); - case 178: + case 176: ACCEPT_TOKEN(sym_statement_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(178); + lookahead != '\n') ADVANCE(176); END_STATE(); - case 179: + case 177: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(177); + if (lookahead == '/') ADVANCE(175); if (lookahead != 0 && - lookahead != '\n') ADVANCE(180); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 180: + case 178: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(180); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 181: + case 179: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 182: + case 180: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 183: + case 181: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 184: + case 182: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 185: + case 183: ACCEPT_TOKEN(anon_sym_erlang); END_STATE(); - case 186: + case 184: ACCEPT_TOKEN(anon_sym_erlang); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 187: + case 185: ACCEPT_TOKEN(anon_sym_javascript); END_STATE(); - case 188: + case 186: ACCEPT_TOKEN(anon_sym_javascript); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 189: + case 187: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 190: + case 188: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 191: + case 189: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 192: + case 190: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 193: + case 191: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 194: + case 192: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 195: + case 193: ACCEPT_TOKEN(anon_sym_import); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 196: + case 194: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 197: + case 195: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(252); + if (lookahead == '.') ADVANCE(250); END_STATE(); - case 198: + case 196: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 199: + case 197: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(348); + if (lookahead == 's') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 200: + case 198: ACCEPT_TOKEN(anon_sym_as); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 201: + case 199: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(247); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '.') ADVANCE(245); + if (lookahead == '/') ADVANCE(177); END_STATE(); - case 202: + case 200: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 203: + case 201: ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 204: + case 202: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 205: + case 203: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(228); + if (lookahead == '=') ADVANCE(227); END_STATE(); - case 208: + case 206: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 209: + case 207: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 210: + case 208: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 211: + case 209: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 212: + case 210: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(242); + END_STATE(); case 213: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '>') ADVANCE(222); END_STATE(); case 214: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '>') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(6); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); - if (lookahead == '>') ADVANCE(223); + if (lookahead == '.') ADVANCE(242); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '>') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(6); - END_STATE(); - case 219: ACCEPT_TOKEN(anon_sym_size); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(anon_sym_size); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 224: + case 223: ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 225: + case 224: ACCEPT_TOKEN(anon_sym_external); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 226: + case 225: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(249); - END_STATE(); - case 231: + case 229: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '=') ADVANCE(233); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(231); + if (lookahead == '>') ADVANCE(247); END_STATE(); - case 232: + case 230: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(249); + if (lookahead == '.') ADVANCE(232); + if (lookahead == '=') ADVANCE(231); + if (lookahead == '>') ADVANCE(247); END_STATE(); - case 233: + case 231: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '.') ADVANCE(235); + if (lookahead == '.') ADVANCE(233); END_STATE(); - case 234: + case 232: ACCEPT_TOKEN(anon_sym_LT_DOT); END_STATE(); - case 235: + case 233: ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); END_STATE(); - case 236: + case 234: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(239); - if (lookahead == '=') ADVANCE(238); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '=') ADVANCE(236); END_STATE(); - case 237: + case 235: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(239); - if (lookahead == '=') ADVANCE(238); - if (lookahead == '>') ADVANCE(212); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '=') ADVANCE(236); + if (lookahead == '>') ADVANCE(210); END_STATE(); - case 238: + case 236: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == '.') ADVANCE(240); + if (lookahead == '.') ADVANCE(238); END_STATE(); - case 239: + case 237: ACCEPT_TOKEN(anon_sym_GT_DOT); END_STATE(); - case 240: + case 238: ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); END_STATE(); - case 241: + case 239: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 242: + case 240: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(243); + if (lookahead == '.') ADVANCE(241); END_STATE(); - case 243: + case 241: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 244: + case 242: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 245: + case 243: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(246); + if (lookahead == '.') ADVANCE(244); END_STATE(); - case 246: + case 244: ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); - case 247: + case 245: ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); - case 248: + case 246: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 249: + case 247: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 250: + case 248: ACCEPT_TOKEN(anon_sym_todo); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 251: + case 249: ACCEPT_TOKEN(anon_sym_panic); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 252: + case 250: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 253: + case 251: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_PIPE); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 255: + case 252: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(241); - if (lookahead == '|') ADVANCE(226); END_STATE(); - case 256: + case 253: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(226); + if (lookahead == '>') ADVANCE(239); + if (lookahead == '|') ADVANCE(225); END_STATE(); - case 257: + case 254: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 258: + case 255: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 259: + case 256: ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 260: + case 257: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 261: + case 258: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 262: + case 259: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(229); + if (lookahead == '=') ADVANCE(228); END_STATE(); - case 263: + case 260: ACCEPT_TOKEN(sym_visibility_modifier); END_STATE(); - case 264: + case 261: ACCEPT_TOKEN(sym_visibility_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 265: + case 262: ACCEPT_TOKEN(sym_opacity_modifier); END_STATE(); - case 266: + case 263: ACCEPT_TOKEN(sym_opacity_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 267: + case 264: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 268: + case 265: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 269: + case 266: ACCEPT_TOKEN(aux_sym_escape_sequence_token1); END_STATE(); - case 270: + case 267: ACCEPT_TOKEN(aux_sym_escape_sequence_token2); END_STATE(); - case 271: + case 268: ACCEPT_TOKEN(sym_float); if (lookahead == 'e') ADVANCE(2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(271); + lookahead == '_') ADVANCE(268); END_STATE(); - case 272: + case 269: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(272); + lookahead == '_') ADVANCE(269); END_STATE(); - case 273: + case 270: ACCEPT_TOKEN(sym__hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); END_STATE(); - case 274: + case 271: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(165); + lookahead == 'b') ADVANCE(163); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(166); + lookahead == 'o') ADVANCE(164); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(169); + lookahead == 'x') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(275); + lookahead == '_') ADVANCE(272); END_STATE(); - case 275: + case 272: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(275); + lookahead == '_') ADVANCE(272); END_STATE(); - case 276: + case 273: ACCEPT_TOKEN(sym__decimal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(165); + lookahead == 'b') ADVANCE(163); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(166); + lookahead == 'o') ADVANCE(164); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(169); + lookahead == 'x') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(277); + lookahead == '_') ADVANCE(274); END_STATE(); - case 277: + case 274: ACCEPT_TOKEN(sym__decimal); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(277); + lookahead == '_') ADVANCE(274); END_STATE(); - case 278: + case 275: ACCEPT_TOKEN(sym__octal); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(278); + lookahead == '_') ADVANCE(275); END_STATE(); - case 279: + case 276: ACCEPT_TOKEN(sym__binary); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(279); + lookahead == '_') ADVANCE(276); END_STATE(); - case 280: + case 277: ACCEPT_TOKEN(anon_sym_binary); END_STATE(); - case 281: + case 278: ACCEPT_TOKEN(anon_sym_binary); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 282: + case 279: ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); - case 283: + case 280: ACCEPT_TOKEN(anon_sym_bytes); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 284: + case 281: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 285: + case 282: ACCEPT_TOKEN(anon_sym_int); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 286: + case 283: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 287: + case 284: ACCEPT_TOKEN(anon_sym_float); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 288: + case 285: ACCEPT_TOKEN(anon_sym_bit_string); END_STATE(); - case 289: + case 286: ACCEPT_TOKEN(anon_sym_bit_string); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 290: + case 287: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 291: + case 288: ACCEPT_TOKEN(anon_sym_bits); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 292: + case 289: ACCEPT_TOKEN(anon_sym_utf8); if (lookahead == '_') ADVANCE(27); END_STATE(); - case 293: + case 290: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(337); + if (lookahead == '_') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 294: + case 291: ACCEPT_TOKEN(anon_sym_utf16); if (lookahead == '_') ADVANCE(29); END_STATE(); - case 295: + case 292: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(339); + if (lookahead == '_') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 296: + case 293: ACCEPT_TOKEN(anon_sym_utf32); if (lookahead == '_') ADVANCE(30); END_STATE(); - case 297: + case 294: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(340); + if (lookahead == '_') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 298: + case 295: ACCEPT_TOKEN(anon_sym_utf8_codepoint); END_STATE(); - case 299: + case 296: ACCEPT_TOKEN(anon_sym_utf8_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 300: + case 297: ACCEPT_TOKEN(anon_sym_utf16_codepoint); END_STATE(); - case 301: + case 298: ACCEPT_TOKEN(anon_sym_utf16_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 302: + case 299: ACCEPT_TOKEN(anon_sym_utf32_codepoint); END_STATE(); - case 303: + case 300: ACCEPT_TOKEN(anon_sym_utf32_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 304: + case 301: ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 305: + case 302: ACCEPT_TOKEN(anon_sym_signed); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 306: + case 303: ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 307: + case 304: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 308: + case 305: ACCEPT_TOKEN(anon_sym_big); END_STATE(); - case 309: + case 306: ACCEPT_TOKEN(anon_sym_big); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 310: + case 307: ACCEPT_TOKEN(anon_sym_little); END_STATE(); - case 311: + case 308: ACCEPT_TOKEN(anon_sym_little); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 312: + case 309: ACCEPT_TOKEN(anon_sym_native); END_STATE(); - case 313: + case 310: ACCEPT_TOKEN(anon_sym_native); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 314: + case 311: ACCEPT_TOKEN(anon_sym_unit); END_STATE(); - case 315: + case 312: ACCEPT_TOKEN(anon_sym_unit); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); - case 316: + case 313: ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(316); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); + lookahead == '_') ADVANCE(313); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(314); END_STATE(); - case 317: + case 314: ACCEPT_TOKEN(sym__discard_name); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(314); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym__name); + if (lookahead == '.') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(315); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym__name); + if (lookahead == '1') ADVANCE(318); + if (lookahead == '3') ADVANCE(317); + if (lookahead == '8') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); + END_STATE(); + case 317: + ACCEPT_TOKEN(sym__name); + if (lookahead == '2') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 318: ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '6') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(318); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 319: ACCEPT_TOKEN(sym__name); - if (lookahead == '1') ADVANCE(321); - if (lookahead == '3') ADVANCE(320); - if (lookahead == '8') ADVANCE(293); + if (lookahead == '_') ADVANCE(431); + if (lookahead == 's') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 320: ACCEPT_TOKEN(sym__name); - if (lookahead == '2') ADVANCE(297); + if (lookahead == 'a') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 321: ACCEPT_TOKEN(sym__name); - if (lookahead == '6') ADVANCE(295); + if (lookahead == 'a') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 322: ACCEPT_TOKEN(sym__name); - if (lookahead == '_') ADVANCE(434); - if (lookahead == 's') ADVANCE(291); + if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'o') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 323: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(454); + if (lookahead == 'a') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 324: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'a') ADVANCE(389); + if (lookahead == 'u') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 325: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(432); - if (lookahead == 'o') ADVANCE(391); + if (lookahead == 'a') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 326: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(432); + if (lookahead == 'a') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 327: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(392); - if (lookahead == 'u') ADVANCE(335); + if (lookahead == 'a') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 328: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(392); + if (lookahead == 'a') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 329: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'a') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 330: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(385); + if (lookahead == 'a') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 331: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(390); + if (lookahead == 'a') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 332: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(431); + if (lookahead == 'b') ADVANCE(261); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 333: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'c') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 334: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(440); + if (lookahead == 'c') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 335: ACCEPT_TOKEN(sym__name); - if (lookahead == 'b') ADVANCE(264); + if (lookahead == 'c') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 336: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(251); + if (lookahead == 'c') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 337: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(403); + if (lookahead == 'c') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 338: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(423); + if (lookahead == 'd') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 339: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(409); + if (lookahead == 'd') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 340: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(410); + if (lookahead == 'd') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 341: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(305); + if (lookahead == 'd') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 342: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(307); + if (lookahead == 'd') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 343: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(402); + if (lookahead == 'd') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 344: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(361); + if (lookahead == 'e') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 345: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(362); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 346: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 347: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(259); + if (lookahead == 'e') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 348: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(424); + if (lookahead == 'e') ADVANCE(201); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 349: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 'e') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 350: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'e') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 351: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'e') ADVANCE(263); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 352: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'e') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 353: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'e') ADVANCE(434); + if (lookahead == 'i') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 354: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'e') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 355: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'e') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 356: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(437); - if (lookahead == 'i') ADVANCE(452); + if (lookahead == 'e') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 357: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(437); + if (lookahead == 'e') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 358: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(342); + if (lookahead == 'e') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 359: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(422); + if (lookahead == 'e') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 360: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'e') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 361: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'f') ADVANCE(180); + if (lookahead == 'm') ADVANCE(408); + if (lookahead == 'n') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 362: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'f') ADVANCE(180); + if (lookahead == 'm') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 363: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'f') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 364: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); - if (lookahead == 'm') ADVANCE(411); - if (lookahead == 'n') ADVANCE(436); + if (lookahead == 'f') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 365: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); - if (lookahead == 'm') ADVANCE(411); + if (lookahead == 'g') ADVANCE(306); + if (lookahead == 'n') ADVANCE(326); + if (lookahead == 't') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 366: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(182); + if (lookahead == 'g') ADVANCE(184); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 367: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(319); + if (lookahead == 'g') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 368: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(309); - if (lookahead == 'n') ADVANCE(329); - if (lookahead == 't') ADVANCE(322); + if (lookahead == 'g') ADVANCE(392); + if (lookahead == 'z') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(456); END_STATE(); case 369: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(186); + if (lookahead == 'g') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 370: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(289); + if (lookahead == 'i') ADVANCE(365); + if (lookahead == 'y') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 371: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(395); - if (lookahead == 'z') ADVANCE(350); + if (lookahead == 'i') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 372: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(396); + if (lookahead == 'i') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 373: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(368); - if (lookahead == 'y') ADVANCE(449); + if (lookahead == 'i') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 374: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'i') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 375: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(336); + if (lookahead == 'i') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 376: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(372); + if (lookahead == 'i') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 377: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(455); + if (lookahead == 'i') ADVANCE(435); + if (lookahead == 's') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 378: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(415); + if (lookahead == 'i') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 379: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(393); + if (lookahead == 'i') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 380: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(438); - if (lookahead == 's') ADVANCE(376); + if (lookahead == 'i') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 381: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(397); + if (lookahead == 'l') ADVANCE(402); + if (lookahead == 'n') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 382: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(398); + if (lookahead == 'l') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 383: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'l') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 384: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(405); - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'l') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 385: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(225); + if (lookahead == 'n') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 386: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(331); + if (lookahead == 'n') ADVANCE(377); + if (lookahead == 's') ADVANCE(344); + if (lookahead == 't') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 387: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(352); + if (lookahead == 'n') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 388: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'n') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 389: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(380); - if (lookahead == 's') ADVANCE(347); - if (lookahead == 't') ADVANCE(367); + if (lookahead == 'n') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 390: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(369); + if (lookahead == 'n') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 391: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(433); + if (lookahead == 'n') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 392: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == 'n') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 393: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(370); + if (lookahead == 'n') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 394: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'n') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 395: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(355); + if (lookahead == 'n') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 396: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(358); + if (lookahead == 'n') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 397: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(444); + if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'y') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 398: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(445); + if (lookahead == 'o') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 399: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(446); + if (lookahead == 'o') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 400: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(343); - if (lookahead == 'y') ADVANCE(414); + if (lookahead == 'o') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 401: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(343); + if (lookahead == 'o') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 402: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(250); + if (lookahead == 'o') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 403: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(344); + if (lookahead == 'o') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 404: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(425); + if (lookahead == 'o') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 405: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(334); + if (lookahead == 'o') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 406: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(381); + if (lookahead == 'o') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 407: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(382); + if (lookahead == 'o') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 408: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(383); + if (lookahead == 'p') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 409: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(345); + if (lookahead == 'p') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 410: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(346); + if (lookahead == 'p') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 411: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(404); + if (lookahead == 'p') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 412: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'p') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 413: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(406); + if (lookahead == 'p') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 414: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(351); + if (lookahead == 'p') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 415: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(443); + if (lookahead == 'q') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 416: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(407); + if (lookahead == 'r') ADVANCE(383); + if (lookahead == 'x') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 417: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(408); + if (lookahead == 'r') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 418: ACCEPT_TOKEN(sym__name); - if (lookahead == 'q') ADVANCE(453); + if (lookahead == 'r') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 419: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(386); - if (lookahead == 'x') ADVANCE(451); + if (lookahead == 'r') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 420: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'r') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 421: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(379); + if (lookahead == 'r') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 422: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(394); + if (lookahead == 'r') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 423: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(378); + if (lookahead == 's') ADVANCE(197); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 424: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(441); + if (lookahead == 's') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 425: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(442); + if (lookahead == 's') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 426: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(199); + if (lookahead == 's') ADVANCE(198); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 427: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(347); + if (lookahead == 's') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 428: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(283); + if (lookahead == 's') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 429: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(200); + if (lookahead == 's') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 430: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(348); + if (lookahead == 's') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 431: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(338); + if (lookahead == 's') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 432: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(349); + if (lookahead == 's') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 433: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(439); + if (lookahead == 't') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 434: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(450); + if (lookahead == 't') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 435: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(430); + if (lookahead == 't') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 436: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(285); + if (lookahead == 't') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 437: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(257); + if (lookahead == 't') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 438: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(315); + if (lookahead == 't') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 439: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(205); + if (lookahead == 't') ADVANCE(193); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 440: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(287); + if (lookahead == 't') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 441: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(258); + if (lookahead == 't') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 442: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(195); + if (lookahead == 't') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 443: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(188); + if (lookahead == 't') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 444: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(299); + if (lookahead == 't') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 445: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 446: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(303); + if (lookahead == 't') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 447: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(377); + if (lookahead == 't') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 448: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(387); + if (lookahead == 't') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 449: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(360); + if (lookahead == 't') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 450: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(421); + if (lookahead == 'u') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 451: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(359); + if (lookahead == 'v') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 452: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(448); + if (lookahead == 'v') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 453: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(354); + if (lookahead == 'x') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 454: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(332); + if (lookahead == 'y') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 455: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(353); + if (lookahead == 'y') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 456: ACCEPT_TOKEN(sym__name); - if (lookahead == 'x') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(456); END_STATE(); case 457: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - END_STATE(); - case 458: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - END_STATE(); - case 459: - ACCEPT_TOKEN(sym__name); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(459); - END_STATE(); - case 460: ACCEPT_TOKEN(sym__upname); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(460); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(457); END_STATE(); default: return false; @@ -5337,1359 +5345,1359 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 171}, - [2] = {.lex_state = 171}, - [3] = {.lex_state = 171}, - [4] = {.lex_state = 171}, - [5] = {.lex_state = 171}, - [6] = {.lex_state = 171}, - [7] = {.lex_state = 143}, - [8] = {.lex_state = 171}, - [9] = {.lex_state = 171}, - [10] = {.lex_state = 171}, - [11] = {.lex_state = 171}, - [12] = {.lex_state = 171}, - [13] = {.lex_state = 171}, - [14] = {.lex_state = 143}, - [15] = {.lex_state = 143}, - [16] = {.lex_state = 174}, - [17] = {.lex_state = 143}, - [18] = {.lex_state = 143}, - [19] = {.lex_state = 171}, - [20] = {.lex_state = 171}, - [21] = {.lex_state = 143}, - [22] = {.lex_state = 143}, - [23] = {.lex_state = 143}, - [24] = {.lex_state = 143}, - [25] = {.lex_state = 143}, - [26] = {.lex_state = 171}, - [27] = {.lex_state = 171}, - [28] = {.lex_state = 171}, - [29] = {.lex_state = 143}, - [30] = {.lex_state = 143}, - [31] = {.lex_state = 171}, - [32] = {.lex_state = 143}, - [33] = {.lex_state = 143}, - [34] = {.lex_state = 143}, - [35] = {.lex_state = 171}, - [36] = {.lex_state = 171}, - [37] = {.lex_state = 143}, - [38] = {.lex_state = 171}, - [39] = {.lex_state = 171}, - [40] = {.lex_state = 171}, - [41] = {.lex_state = 143}, - [42] = {.lex_state = 143}, - [43] = {.lex_state = 143}, - [44] = {.lex_state = 143}, - [45] = {.lex_state = 143}, - [46] = {.lex_state = 143}, - [47] = {.lex_state = 143}, - [48] = {.lex_state = 143}, - [49] = {.lex_state = 143}, - [50] = {.lex_state = 143}, - [51] = {.lex_state = 171}, - [52] = {.lex_state = 143}, - [53] = {.lex_state = 143}, - [54] = {.lex_state = 143}, - [55] = {.lex_state = 143}, - [56] = {.lex_state = 143}, - [57] = {.lex_state = 171}, - [58] = {.lex_state = 143}, - [59] = {.lex_state = 171}, - [60] = {.lex_state = 143}, - [61] = {.lex_state = 143}, - [62] = {.lex_state = 143}, - [63] = {.lex_state = 143}, - [64] = {.lex_state = 171}, - [65] = {.lex_state = 143}, - [66] = {.lex_state = 143}, - [67] = {.lex_state = 143}, - [68] = {.lex_state = 174}, - [69] = {.lex_state = 171}, - [70] = {.lex_state = 171}, - [71] = {.lex_state = 171}, - [72] = {.lex_state = 171}, - [73] = {.lex_state = 171}, - [74] = {.lex_state = 171}, - [75] = {.lex_state = 171}, - [76] = {.lex_state = 171}, - [77] = {.lex_state = 143}, - [78] = {.lex_state = 143}, - [79] = {.lex_state = 143}, - [80] = {.lex_state = 171}, - [81] = {.lex_state = 171}, - [82] = {.lex_state = 144}, - [83] = {.lex_state = 171}, - [84] = {.lex_state = 171}, - [85] = {.lex_state = 171}, - [86] = {.lex_state = 171}, - [87] = {.lex_state = 171}, - [88] = {.lex_state = 171}, - [89] = {.lex_state = 171}, - [90] = {.lex_state = 171}, - [91] = {.lex_state = 171}, - [92] = {.lex_state = 171}, - [93] = {.lex_state = 144}, - [94] = {.lex_state = 171}, - [95] = {.lex_state = 171}, - [96] = {.lex_state = 144}, - [97] = {.lex_state = 171}, - [98] = {.lex_state = 171}, - [99] = {.lex_state = 171}, - [100] = {.lex_state = 171}, - [101] = {.lex_state = 171}, - [102] = {.lex_state = 171}, - [103] = {.lex_state = 171}, - [104] = {.lex_state = 171}, - [105] = {.lex_state = 171}, - [106] = {.lex_state = 171}, - [107] = {.lex_state = 171}, - [108] = {.lex_state = 171}, - [109] = {.lex_state = 171}, - [110] = {.lex_state = 171}, - [111] = {.lex_state = 171}, - [112] = {.lex_state = 144}, - [113] = {.lex_state = 171}, - [114] = {.lex_state = 171}, - [115] = {.lex_state = 171}, - [116] = {.lex_state = 144}, - [117] = {.lex_state = 144}, - [118] = {.lex_state = 144}, - [119] = {.lex_state = 144}, - [120] = {.lex_state = 144}, - [121] = {.lex_state = 144}, - [122] = {.lex_state = 164}, - [123] = {.lex_state = 144}, - [124] = {.lex_state = 144}, - [125] = {.lex_state = 144}, - [126] = {.lex_state = 144}, - [127] = {.lex_state = 164}, - [128] = {.lex_state = 144}, - [129] = {.lex_state = 164}, - [130] = {.lex_state = 144}, - [131] = {.lex_state = 164}, - [132] = {.lex_state = 164}, - [133] = {.lex_state = 144}, - [134] = {.lex_state = 164}, - [135] = {.lex_state = 164}, - [136] = {.lex_state = 164}, - [137] = {.lex_state = 164}, - [138] = {.lex_state = 164}, - [139] = {.lex_state = 164}, - [140] = {.lex_state = 164}, - [141] = {.lex_state = 164}, - [142] = {.lex_state = 164}, - [143] = {.lex_state = 164}, - [144] = {.lex_state = 164}, - [145] = {.lex_state = 164}, - [146] = {.lex_state = 164}, - [147] = {.lex_state = 164}, - [148] = {.lex_state = 164}, - [149] = {.lex_state = 164}, - [150] = {.lex_state = 144}, - [151] = {.lex_state = 164}, - [152] = {.lex_state = 145}, - [153] = {.lex_state = 164}, - [154] = {.lex_state = 145}, - [155] = {.lex_state = 145}, - [156] = {.lex_state = 164}, - [157] = {.lex_state = 145}, - [158] = {.lex_state = 145}, - [159] = {.lex_state = 164}, - [160] = {.lex_state = 145}, - [161] = {.lex_state = 164}, - [162] = {.lex_state = 164}, - [163] = {.lex_state = 164}, - [164] = {.lex_state = 145}, - [165] = {.lex_state = 164}, - [166] = {.lex_state = 164}, - [167] = {.lex_state = 145}, - [168] = {.lex_state = 164}, - [169] = {.lex_state = 145}, - [170] = {.lex_state = 164}, - [171] = {.lex_state = 164}, - [172] = {.lex_state = 145}, - [173] = {.lex_state = 145}, - [174] = {.lex_state = 145}, - [175] = {.lex_state = 164}, - [176] = {.lex_state = 164}, - [177] = {.lex_state = 164}, - [178] = {.lex_state = 145}, - [179] = {.lex_state = 145}, - [180] = {.lex_state = 145}, - [181] = {.lex_state = 145}, - [182] = {.lex_state = 164}, - [183] = {.lex_state = 164}, - [184] = {.lex_state = 164}, - [185] = {.lex_state = 145}, - [186] = {.lex_state = 164}, - [187] = {.lex_state = 145}, - [188] = {.lex_state = 164}, - [189] = {.lex_state = 145}, - [190] = {.lex_state = 164}, - [191] = {.lex_state = 145}, - [192] = {.lex_state = 145}, - [193] = {.lex_state = 145}, - [194] = {.lex_state = 164}, - [195] = {.lex_state = 145}, - [196] = {.lex_state = 164}, - [197] = {.lex_state = 145}, - [198] = {.lex_state = 145}, - [199] = {.lex_state = 164}, - [200] = {.lex_state = 145}, - [201] = {.lex_state = 145}, - [202] = {.lex_state = 145}, - [203] = {.lex_state = 164}, - [204] = {.lex_state = 145}, - [205] = {.lex_state = 145}, - [206] = {.lex_state = 145}, - [207] = {.lex_state = 145}, - [208] = {.lex_state = 145}, - [209] = {.lex_state = 145}, - [210] = {.lex_state = 145}, - [211] = {.lex_state = 145}, - [212] = {.lex_state = 145}, - [213] = {.lex_state = 145}, - [214] = {.lex_state = 145}, - [215] = {.lex_state = 145}, - [216] = {.lex_state = 145}, - [217] = {.lex_state = 145}, - [218] = {.lex_state = 145}, - [219] = {.lex_state = 145}, - [220] = {.lex_state = 145}, - [221] = {.lex_state = 145}, - [222] = {.lex_state = 145}, - [223] = {.lex_state = 145}, - [224] = {.lex_state = 145}, - [225] = {.lex_state = 145}, - [226] = {.lex_state = 145}, - [227] = {.lex_state = 145}, - [228] = {.lex_state = 145}, - [229] = {.lex_state = 145}, - [230] = {.lex_state = 145}, - [231] = {.lex_state = 145}, - [232] = {.lex_state = 145}, - [233] = {.lex_state = 145}, - [234] = {.lex_state = 145}, - [235] = {.lex_state = 145}, - [236] = {.lex_state = 145}, - [237] = {.lex_state = 145}, - [238] = {.lex_state = 145}, - [239] = {.lex_state = 145}, - [240] = {.lex_state = 145}, - [241] = {.lex_state = 145}, - [242] = {.lex_state = 145}, - [243] = {.lex_state = 145}, - [244] = {.lex_state = 145}, - [245] = {.lex_state = 145}, - [246] = {.lex_state = 145}, - [247] = {.lex_state = 145}, - [248] = {.lex_state = 145}, - [249] = {.lex_state = 145}, - [250] = {.lex_state = 145}, - [251] = {.lex_state = 145}, - [252] = {.lex_state = 145}, - [253] = {.lex_state = 145}, - [254] = {.lex_state = 145}, - [255] = {.lex_state = 145}, - [256] = {.lex_state = 145}, - [257] = {.lex_state = 145}, - [258] = {.lex_state = 145}, - [259] = {.lex_state = 145}, - [260] = {.lex_state = 145}, - [261] = {.lex_state = 145}, - [262] = {.lex_state = 145}, - [263] = {.lex_state = 145}, - [264] = {.lex_state = 145}, - [265] = {.lex_state = 145}, - [266] = {.lex_state = 145}, - [267] = {.lex_state = 145}, - [268] = {.lex_state = 145}, - [269] = {.lex_state = 145}, - [270] = {.lex_state = 145}, - [271] = {.lex_state = 145}, - [272] = {.lex_state = 145}, - [273] = {.lex_state = 145}, - [274] = {.lex_state = 145}, - [275] = {.lex_state = 164}, - [276] = {.lex_state = 145}, - [277] = {.lex_state = 145}, - [278] = {.lex_state = 145}, - [279] = {.lex_state = 146}, - [280] = {.lex_state = 145}, - [281] = {.lex_state = 145}, - [282] = {.lex_state = 145}, - [283] = {.lex_state = 145}, - [284] = {.lex_state = 145}, - [285] = {.lex_state = 145}, - [286] = {.lex_state = 145}, - [287] = {.lex_state = 145}, - [288] = {.lex_state = 145}, - [289] = {.lex_state = 146}, - [290] = {.lex_state = 145}, - [291] = {.lex_state = 164}, - [292] = {.lex_state = 145}, - [293] = {.lex_state = 164}, - [294] = {.lex_state = 164}, - [295] = {.lex_state = 164}, - [296] = {.lex_state = 164}, - [297] = {.lex_state = 164}, - [298] = {.lex_state = 164}, - [299] = {.lex_state = 164}, - [300] = {.lex_state = 145}, - [301] = {.lex_state = 164}, - [302] = {.lex_state = 164}, - [303] = {.lex_state = 145}, - [304] = {.lex_state = 145}, - [305] = {.lex_state = 164}, - [306] = {.lex_state = 164}, - [307] = {.lex_state = 145}, - [308] = {.lex_state = 164}, - [309] = {.lex_state = 164}, - [310] = {.lex_state = 145}, - [311] = {.lex_state = 145}, - [312] = {.lex_state = 145}, - [313] = {.lex_state = 145}, - [314] = {.lex_state = 145}, - [315] = {.lex_state = 147}, - [316] = {.lex_state = 147}, - [317] = {.lex_state = 147}, - [318] = {.lex_state = 147}, - [319] = {.lex_state = 147}, - [320] = {.lex_state = 149}, - [321] = {.lex_state = 147}, - [322] = {.lex_state = 150}, - [323] = {.lex_state = 150}, - [324] = {.lex_state = 150}, - [325] = {.lex_state = 150}, - [326] = {.lex_state = 150}, - [327] = {.lex_state = 150}, - [328] = {.lex_state = 150}, - [329] = {.lex_state = 150}, - [330] = {.lex_state = 150}, - [331] = {.lex_state = 150}, - [332] = {.lex_state = 150}, - [333] = {.lex_state = 150}, - [334] = {.lex_state = 151}, - [335] = {.lex_state = 150}, - [336] = {.lex_state = 150}, - [337] = {.lex_state = 150}, - [338] = {.lex_state = 150}, - [339] = {.lex_state = 150}, - [340] = {.lex_state = 150}, - [341] = {.lex_state = 150}, - [342] = {.lex_state = 150}, - [343] = {.lex_state = 150}, - [344] = {.lex_state = 150}, - [345] = {.lex_state = 150}, - [346] = {.lex_state = 150}, - [347] = {.lex_state = 151}, - [348] = {.lex_state = 150}, - [349] = {.lex_state = 150}, - [350] = {.lex_state = 150}, - [351] = {.lex_state = 150}, - [352] = {.lex_state = 150}, - [353] = {.lex_state = 150}, - [354] = {.lex_state = 150}, - [355] = {.lex_state = 150}, - [356] = {.lex_state = 150}, - [357] = {.lex_state = 150}, - [358] = {.lex_state = 150}, - [359] = {.lex_state = 150}, - [360] = {.lex_state = 150}, - [361] = {.lex_state = 150}, - [362] = {.lex_state = 150}, - [363] = {.lex_state = 150}, - [364] = {.lex_state = 150}, - [365] = {.lex_state = 150}, - [366] = {.lex_state = 150}, - [367] = {.lex_state = 150}, - [368] = {.lex_state = 150}, - [369] = {.lex_state = 150}, - [370] = {.lex_state = 150}, - [371] = {.lex_state = 150}, - [372] = {.lex_state = 150}, - [373] = {.lex_state = 150}, - [374] = {.lex_state = 150}, - [375] = {.lex_state = 150}, - [376] = {.lex_state = 150}, - [377] = {.lex_state = 150}, - [378] = {.lex_state = 150}, - [379] = {.lex_state = 150}, - [380] = {.lex_state = 150}, - [381] = {.lex_state = 150}, - [382] = {.lex_state = 150}, - [383] = {.lex_state = 150}, - [384] = {.lex_state = 150}, - [385] = {.lex_state = 174}, - [386] = {.lex_state = 174}, - [387] = {.lex_state = 174}, - [388] = {.lex_state = 172}, - [389] = {.lex_state = 174}, + [1] = {.lex_state = 169}, + [2] = {.lex_state = 169}, + [3] = {.lex_state = 169}, + [4] = {.lex_state = 169}, + [5] = {.lex_state = 169}, + [6] = {.lex_state = 169}, + [7] = {.lex_state = 169}, + [8] = {.lex_state = 141}, + [9] = {.lex_state = 169}, + [10] = {.lex_state = 141}, + [11] = {.lex_state = 141}, + [12] = {.lex_state = 141}, + [13] = {.lex_state = 169}, + [14] = {.lex_state = 169}, + [15] = {.lex_state = 141}, + [16] = {.lex_state = 169}, + [17] = {.lex_state = 172}, + [18] = {.lex_state = 141}, + [19] = {.lex_state = 141}, + [20] = {.lex_state = 141}, + [21] = {.lex_state = 141}, + [22] = {.lex_state = 141}, + [23] = {.lex_state = 141}, + [24] = {.lex_state = 141}, + [25] = {.lex_state = 169}, + [26] = {.lex_state = 141}, + [27] = {.lex_state = 169}, + [28] = {.lex_state = 169}, + [29] = {.lex_state = 169}, + [30] = {.lex_state = 141}, + [31] = {.lex_state = 169}, + [32] = {.lex_state = 141}, + [33] = {.lex_state = 141}, + [34] = {.lex_state = 141}, + [35] = {.lex_state = 141}, + [36] = {.lex_state = 169}, + [37] = {.lex_state = 169}, + [38] = {.lex_state = 141}, + [39] = {.lex_state = 141}, + [40] = {.lex_state = 169}, + [41] = {.lex_state = 141}, + [42] = {.lex_state = 141}, + [43] = {.lex_state = 141}, + [44] = {.lex_state = 141}, + [45] = {.lex_state = 169}, + [46] = {.lex_state = 141}, + [47] = {.lex_state = 169}, + [48] = {.lex_state = 141}, + [49] = {.lex_state = 141}, + [50] = {.lex_state = 169}, + [51] = {.lex_state = 141}, + [52] = {.lex_state = 141}, + [53] = {.lex_state = 141}, + [54] = {.lex_state = 141}, + [55] = {.lex_state = 169}, + [56] = {.lex_state = 141}, + [57] = {.lex_state = 169}, + [58] = {.lex_state = 141}, + [59] = {.lex_state = 169}, + [60] = {.lex_state = 141}, + [61] = {.lex_state = 169}, + [62] = {.lex_state = 141}, + [63] = {.lex_state = 141}, + [64] = {.lex_state = 141}, + [65] = {.lex_state = 169}, + [66] = {.lex_state = 141}, + [67] = {.lex_state = 141}, + [68] = {.lex_state = 141}, + [69] = {.lex_state = 141}, + [70] = {.lex_state = 169}, + [71] = {.lex_state = 141}, + [72] = {.lex_state = 141}, + [73] = {.lex_state = 169}, + [74] = {.lex_state = 169}, + [75] = {.lex_state = 169}, + [76] = {.lex_state = 141}, + [77] = {.lex_state = 141}, + [78] = {.lex_state = 141}, + [79] = {.lex_state = 169}, + [80] = {.lex_state = 172}, + [81] = {.lex_state = 141}, + [82] = {.lex_state = 169}, + [83] = {.lex_state = 141}, + [84] = {.lex_state = 169}, + [85] = {.lex_state = 169}, + [86] = {.lex_state = 169}, + [87] = {.lex_state = 169}, + [88] = {.lex_state = 169}, + [89] = {.lex_state = 169}, + [90] = {.lex_state = 142}, + [91] = {.lex_state = 142}, + [92] = {.lex_state = 169}, + [93] = {.lex_state = 169}, + [94] = {.lex_state = 169}, + [95] = {.lex_state = 169}, + [96] = {.lex_state = 169}, + [97] = {.lex_state = 169}, + [98] = {.lex_state = 169}, + [99] = {.lex_state = 169}, + [100] = {.lex_state = 169}, + [101] = {.lex_state = 169}, + [102] = {.lex_state = 169}, + [103] = {.lex_state = 169}, + [104] = {.lex_state = 169}, + [105] = {.lex_state = 169}, + [106] = {.lex_state = 169}, + [107] = {.lex_state = 169}, + [108] = {.lex_state = 142}, + [109] = {.lex_state = 169}, + [110] = {.lex_state = 169}, + [111] = {.lex_state = 169}, + [112] = {.lex_state = 142}, + [113] = {.lex_state = 169}, + [114] = {.lex_state = 169}, + [115] = {.lex_state = 169}, + [116] = {.lex_state = 169}, + [117] = {.lex_state = 169}, + [118] = {.lex_state = 142}, + [119] = {.lex_state = 169}, + [120] = {.lex_state = 169}, + [121] = {.lex_state = 169}, + [122] = {.lex_state = 169}, + [123] = {.lex_state = 142}, + [124] = {.lex_state = 142}, + [125] = {.lex_state = 142}, + [126] = {.lex_state = 142}, + [127] = {.lex_state = 142}, + [128] = {.lex_state = 162}, + [129] = {.lex_state = 162}, + [130] = {.lex_state = 142}, + [131] = {.lex_state = 142}, + [132] = {.lex_state = 142}, + [133] = {.lex_state = 142}, + [134] = {.lex_state = 142}, + [135] = {.lex_state = 142}, + [136] = {.lex_state = 162}, + [137] = {.lex_state = 142}, + [138] = {.lex_state = 142}, + [139] = {.lex_state = 142}, + [140] = {.lex_state = 162}, + [141] = {.lex_state = 142}, + [142] = {.lex_state = 162}, + [143] = {.lex_state = 142}, + [144] = {.lex_state = 162}, + [145] = {.lex_state = 162}, + [146] = {.lex_state = 162}, + [147] = {.lex_state = 162}, + [148] = {.lex_state = 162}, + [149] = {.lex_state = 162}, + [150] = {.lex_state = 162}, + [151] = {.lex_state = 162}, + [152] = {.lex_state = 162}, + [153] = {.lex_state = 162}, + [154] = {.lex_state = 162}, + [155] = {.lex_state = 162}, + [156] = {.lex_state = 162}, + [157] = {.lex_state = 162}, + [158] = {.lex_state = 162}, + [159] = {.lex_state = 162}, + [160] = {.lex_state = 162}, + [161] = {.lex_state = 142}, + [162] = {.lex_state = 143}, + [163] = {.lex_state = 143}, + [164] = {.lex_state = 143}, + [165] = {.lex_state = 162}, + [166] = {.lex_state = 143}, + [167] = {.lex_state = 143}, + [168] = {.lex_state = 162}, + [169] = {.lex_state = 162}, + [170] = {.lex_state = 143}, + [171] = {.lex_state = 143}, + [172] = {.lex_state = 162}, + [173] = {.lex_state = 162}, + [174] = {.lex_state = 162}, + [175] = {.lex_state = 143}, + [176] = {.lex_state = 143}, + [177] = {.lex_state = 162}, + [178] = {.lex_state = 143}, + [179] = {.lex_state = 162}, + [180] = {.lex_state = 162}, + [181] = {.lex_state = 143}, + [182] = {.lex_state = 162}, + [183] = {.lex_state = 143}, + [184] = {.lex_state = 162}, + [185] = {.lex_state = 143}, + [186] = {.lex_state = 143}, + [187] = {.lex_state = 143}, + [188] = {.lex_state = 143}, + [189] = {.lex_state = 143}, + [190] = {.lex_state = 143}, + [191] = {.lex_state = 143}, + [192] = {.lex_state = 143}, + [193] = {.lex_state = 143}, + [194] = {.lex_state = 143}, + [195] = {.lex_state = 143}, + [196] = {.lex_state = 143}, + [197] = {.lex_state = 162}, + [198] = {.lex_state = 162}, + [199] = {.lex_state = 143}, + [200] = {.lex_state = 143}, + [201] = {.lex_state = 143}, + [202] = {.lex_state = 162}, + [203] = {.lex_state = 162}, + [204] = {.lex_state = 143}, + [205] = {.lex_state = 143}, + [206] = {.lex_state = 143}, + [207] = {.lex_state = 143}, + [208] = {.lex_state = 162}, + [209] = {.lex_state = 162}, + [210] = {.lex_state = 162}, + [211] = {.lex_state = 162}, + [212] = {.lex_state = 162}, + [213] = {.lex_state = 162}, + [214] = {.lex_state = 162}, + [215] = {.lex_state = 162}, + [216] = {.lex_state = 143}, + [217] = {.lex_state = 143}, + [218] = {.lex_state = 162}, + [219] = {.lex_state = 143}, + [220] = {.lex_state = 143}, + [221] = {.lex_state = 143}, + [222] = {.lex_state = 143}, + [223] = {.lex_state = 143}, + [224] = {.lex_state = 143}, + [225] = {.lex_state = 143}, + [226] = {.lex_state = 143}, + [227] = {.lex_state = 143}, + [228] = {.lex_state = 143}, + [229] = {.lex_state = 143}, + [230] = {.lex_state = 143}, + [231] = {.lex_state = 143}, + [232] = {.lex_state = 143}, + [233] = {.lex_state = 143}, + [234] = {.lex_state = 143}, + [235] = {.lex_state = 143}, + [236] = {.lex_state = 143}, + [237] = {.lex_state = 143}, + [238] = {.lex_state = 143}, + [239] = {.lex_state = 143}, + [240] = {.lex_state = 143}, + [241] = {.lex_state = 143}, + [242] = {.lex_state = 143}, + [243] = {.lex_state = 143}, + [244] = {.lex_state = 143}, + [245] = {.lex_state = 143}, + [246] = {.lex_state = 143}, + [247] = {.lex_state = 143}, + [248] = {.lex_state = 143}, + [249] = {.lex_state = 143}, + [250] = {.lex_state = 143}, + [251] = {.lex_state = 143}, + [252] = {.lex_state = 143}, + [253] = {.lex_state = 143}, + [254] = {.lex_state = 144}, + [255] = {.lex_state = 143}, + [256] = {.lex_state = 143}, + [257] = {.lex_state = 143}, + [258] = {.lex_state = 143}, + [259] = {.lex_state = 143}, + [260] = {.lex_state = 143}, + [261] = {.lex_state = 143}, + [262] = {.lex_state = 143}, + [263] = {.lex_state = 143}, + [264] = {.lex_state = 143}, + [265] = {.lex_state = 143}, + [266] = {.lex_state = 143}, + [267] = {.lex_state = 143}, + [268] = {.lex_state = 143}, + [269] = {.lex_state = 143}, + [270] = {.lex_state = 143}, + [271] = {.lex_state = 143}, + [272] = {.lex_state = 143}, + [273] = {.lex_state = 143}, + [274] = {.lex_state = 143}, + [275] = {.lex_state = 143}, + [276] = {.lex_state = 143}, + [277] = {.lex_state = 143}, + [278] = {.lex_state = 143}, + [279] = {.lex_state = 143}, + [280] = {.lex_state = 143}, + [281] = {.lex_state = 143}, + [282] = {.lex_state = 143}, + [283] = {.lex_state = 143}, + [284] = {.lex_state = 143}, + [285] = {.lex_state = 143}, + [286] = {.lex_state = 143}, + [287] = {.lex_state = 143}, + [288] = {.lex_state = 143}, + [289] = {.lex_state = 143}, + [290] = {.lex_state = 143}, + [291] = {.lex_state = 143}, + [292] = {.lex_state = 143}, + [293] = {.lex_state = 143}, + [294] = {.lex_state = 143}, + [295] = {.lex_state = 143}, + [296] = {.lex_state = 143}, + [297] = {.lex_state = 143}, + [298] = {.lex_state = 143}, + [299] = {.lex_state = 143}, + [300] = {.lex_state = 143}, + [301] = {.lex_state = 143}, + [302] = {.lex_state = 143}, + [303] = {.lex_state = 143}, + [304] = {.lex_state = 143}, + [305] = {.lex_state = 143}, + [306] = {.lex_state = 143}, + [307] = {.lex_state = 143}, + [308] = {.lex_state = 143}, + [309] = {.lex_state = 143}, + [310] = {.lex_state = 143}, + [311] = {.lex_state = 143}, + [312] = {.lex_state = 143}, + [313] = {.lex_state = 143}, + [314] = {.lex_state = 143}, + [315] = {.lex_state = 143}, + [316] = {.lex_state = 143}, + [317] = {.lex_state = 143}, + [318] = {.lex_state = 143}, + [319] = {.lex_state = 162}, + [320] = {.lex_state = 143}, + [321] = {.lex_state = 143}, + [322] = {.lex_state = 143}, + [323] = {.lex_state = 143}, + [324] = {.lex_state = 143}, + [325] = {.lex_state = 144}, + [326] = {.lex_state = 162}, + [327] = {.lex_state = 162}, + [328] = {.lex_state = 143}, + [329] = {.lex_state = 143}, + [330] = {.lex_state = 143}, + [331] = {.lex_state = 162}, + [332] = {.lex_state = 143}, + [333] = {.lex_state = 162}, + [334] = {.lex_state = 143}, + [335] = {.lex_state = 162}, + [336] = {.lex_state = 162}, + [337] = {.lex_state = 162}, + [338] = {.lex_state = 143}, + [339] = {.lex_state = 162}, + [340] = {.lex_state = 143}, + [341] = {.lex_state = 162}, + [342] = {.lex_state = 143}, + [343] = {.lex_state = 143}, + [344] = {.lex_state = 162}, + [345] = {.lex_state = 143}, + [346] = {.lex_state = 162}, + [347] = {.lex_state = 143}, + [348] = {.lex_state = 162}, + [349] = {.lex_state = 162}, + [350] = {.lex_state = 162}, + [351] = {.lex_state = 143}, + [352] = {.lex_state = 145}, + [353] = {.lex_state = 145}, + [354] = {.lex_state = 145}, + [355] = {.lex_state = 145}, + [356] = {.lex_state = 147}, + [357] = {.lex_state = 145}, + [358] = {.lex_state = 145}, + [359] = {.lex_state = 148}, + [360] = {.lex_state = 148}, + [361] = {.lex_state = 148}, + [362] = {.lex_state = 148}, + [363] = {.lex_state = 148}, + [364] = {.lex_state = 148}, + [365] = {.lex_state = 148}, + [366] = {.lex_state = 149}, + [367] = {.lex_state = 148}, + [368] = {.lex_state = 148}, + [369] = {.lex_state = 148}, + [370] = {.lex_state = 148}, + [371] = {.lex_state = 148}, + [372] = {.lex_state = 148}, + [373] = {.lex_state = 148}, + [374] = {.lex_state = 148}, + [375] = {.lex_state = 148}, + [376] = {.lex_state = 148}, + [377] = {.lex_state = 148}, + [378] = {.lex_state = 148}, + [379] = {.lex_state = 148}, + [380] = {.lex_state = 148}, + [381] = {.lex_state = 148}, + [382] = {.lex_state = 148}, + [383] = {.lex_state = 148}, + [384] = {.lex_state = 148}, + [385] = {.lex_state = 148}, + [386] = {.lex_state = 148}, + [387] = {.lex_state = 148}, + [388] = {.lex_state = 148}, + [389] = {.lex_state = 148}, [390] = {.lex_state = 149}, - [391] = {.lex_state = 149}, - [392] = {.lex_state = 150}, - [393] = {.lex_state = 149}, - [394] = {.lex_state = 149}, - [395] = {.lex_state = 149}, - [396] = {.lex_state = 150}, - [397] = {.lex_state = 172}, - [398] = {.lex_state = 174}, - [399] = {.lex_state = 150}, - [400] = {.lex_state = 149}, - [401] = {.lex_state = 149}, - [402] = {.lex_state = 149}, - [403] = {.lex_state = 150}, - [404] = {.lex_state = 149}, - [405] = {.lex_state = 171}, - [406] = {.lex_state = 149}, - [407] = {.lex_state = 149}, - [408] = {.lex_state = 149}, - [409] = {.lex_state = 149}, - [410] = {.lex_state = 149}, - [411] = {.lex_state = 171}, - [412] = {.lex_state = 172}, - [413] = {.lex_state = 149}, - [414] = {.lex_state = 172}, - [415] = {.lex_state = 150}, - [416] = {.lex_state = 171}, - [417] = {.lex_state = 149}, - [418] = {.lex_state = 149}, - [419] = {.lex_state = 147}, - [420] = {.lex_state = 171}, - [421] = {.lex_state = 174}, - [422] = {.lex_state = 149}, - [423] = {.lex_state = 172}, - [424] = {.lex_state = 150}, - [425] = {.lex_state = 173}, - [426] = {.lex_state = 173}, - [427] = {.lex_state = 149}, + [391] = {.lex_state = 148}, + [392] = {.lex_state = 148}, + [393] = {.lex_state = 148}, + [394] = {.lex_state = 148}, + [395] = {.lex_state = 148}, + [396] = {.lex_state = 148}, + [397] = {.lex_state = 148}, + [398] = {.lex_state = 148}, + [399] = {.lex_state = 148}, + [400] = {.lex_state = 148}, + [401] = {.lex_state = 148}, + [402] = {.lex_state = 148}, + [403] = {.lex_state = 148}, + [404] = {.lex_state = 148}, + [405] = {.lex_state = 148}, + [406] = {.lex_state = 148}, + [407] = {.lex_state = 148}, + [408] = {.lex_state = 148}, + [409] = {.lex_state = 148}, + [410] = {.lex_state = 148}, + [411] = {.lex_state = 148}, + [412] = {.lex_state = 148}, + [413] = {.lex_state = 148}, + [414] = {.lex_state = 148}, + [415] = {.lex_state = 148}, + [416] = {.lex_state = 148}, + [417] = {.lex_state = 148}, + [418] = {.lex_state = 148}, + [419] = {.lex_state = 148}, + [420] = {.lex_state = 148}, + [421] = {.lex_state = 148}, + [422] = {.lex_state = 172}, + [423] = {.lex_state = 147}, + [424] = {.lex_state = 172}, + [425] = {.lex_state = 172}, + [426] = {.lex_state = 147}, + [427] = {.lex_state = 147}, [428] = {.lex_state = 147}, - [429] = {.lex_state = 149}, - [430] = {.lex_state = 149}, - [431] = {.lex_state = 149}, - [432] = {.lex_state = 149}, - [433] = {.lex_state = 174}, - [434] = {.lex_state = 172}, - [435] = {.lex_state = 173}, - [436] = {.lex_state = 150}, - [437] = {.lex_state = 150}, - [438] = {.lex_state = 149}, + [429] = {.lex_state = 170}, + [430] = {.lex_state = 147}, + [431] = {.lex_state = 147}, + [432] = {.lex_state = 147}, + [433] = {.lex_state = 147}, + [434] = {.lex_state = 147}, + [435] = {.lex_state = 147}, + [436] = {.lex_state = 147}, + [437] = {.lex_state = 147}, + [438] = {.lex_state = 172}, [439] = {.lex_state = 147}, - [440] = {.lex_state = 149}, - [441] = {.lex_state = 150}, - [442] = {.lex_state = 172}, - [443] = {.lex_state = 172}, - [444] = {.lex_state = 172}, - [445] = {.lex_state = 173}, - [446] = {.lex_state = 174}, - [447] = {.lex_state = 173}, - [448] = {.lex_state = 173}, - [449] = {.lex_state = 174}, + [440] = {.lex_state = 147}, + [441] = {.lex_state = 147}, + [442] = {.lex_state = 147}, + [443] = {.lex_state = 147}, + [444] = {.lex_state = 169}, + [445] = {.lex_state = 169}, + [446] = {.lex_state = 147}, + [447] = {.lex_state = 147}, + [448] = {.lex_state = 147}, + [449] = {.lex_state = 147}, [450] = {.lex_state = 147}, [451] = {.lex_state = 147}, - [452] = {.lex_state = 174}, + [452] = {.lex_state = 147}, [453] = {.lex_state = 147}, - [454] = {.lex_state = 149}, - [455] = {.lex_state = 149}, - [456] = {.lex_state = 172}, - [457] = {.lex_state = 171}, - [458] = {.lex_state = 171}, - [459] = {.lex_state = 171}, - [460] = {.lex_state = 149}, - [461] = {.lex_state = 171}, - [462] = {.lex_state = 171}, - [463] = {.lex_state = 171}, + [454] = {.lex_state = 170}, + [455] = {.lex_state = 148}, + [456] = {.lex_state = 148}, + [457] = {.lex_state = 170}, + [458] = {.lex_state = 148}, + [459] = {.lex_state = 148}, + [460] = {.lex_state = 147}, + [461] = {.lex_state = 147}, + [462] = {.lex_state = 148}, + [463] = {.lex_state = 172}, [464] = {.lex_state = 171}, - [465] = {.lex_state = 149}, - [466] = {.lex_state = 147}, - [467] = {.lex_state = 171}, - [468] = {.lex_state = 171}, - [469] = {.lex_state = 149}, - [470] = {.lex_state = 171}, - [471] = {.lex_state = 149}, - [472] = {.lex_state = 171}, - [473] = {.lex_state = 149}, - [474] = {.lex_state = 171}, - [475] = {.lex_state = 171}, - [476] = {.lex_state = 171}, - [477] = {.lex_state = 171}, - [478] = {.lex_state = 149}, - [479] = {.lex_state = 149}, - [480] = {.lex_state = 149}, - [481] = {.lex_state = 171}, - [482] = {.lex_state = 171}, - [483] = {.lex_state = 171}, - [484] = {.lex_state = 171}, - [485] = {.lex_state = 149}, - [486] = {.lex_state = 171}, - [487] = {.lex_state = 149}, - [488] = {.lex_state = 149}, - [489] = {.lex_state = 171}, - [490] = {.lex_state = 171}, - [491] = {.lex_state = 149}, - [492] = {.lex_state = 149}, - [493] = {.lex_state = 171}, - [494] = {.lex_state = 149}, - [495] = {.lex_state = 171}, - [496] = {.lex_state = 149}, - [497] = {.lex_state = 149}, - [498] = {.lex_state = 171}, + [465] = {.lex_state = 171}, + [466] = {.lex_state = 145}, + [467] = {.lex_state = 172}, + [468] = {.lex_state = 145}, + [469] = {.lex_state = 148}, + [470] = {.lex_state = 170}, + [471] = {.lex_state = 145}, + [472] = {.lex_state = 148}, + [473] = {.lex_state = 171}, + [474] = {.lex_state = 169}, + [475] = {.lex_state = 145}, + [476] = {.lex_state = 170}, + [477] = {.lex_state = 170}, + [478] = {.lex_state = 172}, + [479] = {.lex_state = 172}, + [480] = {.lex_state = 172}, + [481] = {.lex_state = 147}, + [482] = {.lex_state = 147}, + [483] = {.lex_state = 147}, + [484] = {.lex_state = 172}, + [485] = {.lex_state = 147}, + [486] = {.lex_state = 147}, + [487] = {.lex_state = 147}, + [488] = {.lex_state = 147}, + [489] = {.lex_state = 147}, + [490] = {.lex_state = 147}, + [491] = {.lex_state = 147}, + [492] = {.lex_state = 147}, + [493] = {.lex_state = 147}, + [494] = {.lex_state = 169}, + [495] = {.lex_state = 147}, + [496] = {.lex_state = 147}, + [497] = {.lex_state = 170}, + [498] = {.lex_state = 170}, [499] = {.lex_state = 171}, - [500] = {.lex_state = 171}, - [501] = {.lex_state = 149}, - [502] = {.lex_state = 171}, - [503] = {.lex_state = 171}, - [504] = {.lex_state = 171}, - [505] = {.lex_state = 171}, - [506] = {.lex_state = 171}, - [507] = {.lex_state = 171}, - [508] = {.lex_state = 149}, - [509] = {.lex_state = 171}, - [510] = {.lex_state = 149}, - [511] = {.lex_state = 171}, - [512] = {.lex_state = 171}, + [500] = {.lex_state = 170}, + [501] = {.lex_state = 148}, + [502] = {.lex_state = 147}, + [503] = {.lex_state = 170}, + [504] = {.lex_state = 147}, + [505] = {.lex_state = 147}, + [506] = {.lex_state = 147}, + [507] = {.lex_state = 145}, + [508] = {.lex_state = 147}, + [509] = {.lex_state = 147}, + [510] = {.lex_state = 148}, + [511] = {.lex_state = 147}, + [512] = {.lex_state = 147}, [513] = {.lex_state = 171}, - [514] = {.lex_state = 171}, - [515] = {.lex_state = 171}, + [514] = {.lex_state = 147}, + [515] = {.lex_state = 148}, [516] = {.lex_state = 171}, - [517] = {.lex_state = 149}, - [518] = {.lex_state = 171}, - [519] = {.lex_state = 171}, - [520] = {.lex_state = 171}, - [521] = {.lex_state = 171}, - [522] = {.lex_state = 149}, - [523] = {.lex_state = 171}, - [524] = {.lex_state = 171}, - [525] = {.lex_state = 149}, - [526] = {.lex_state = 147}, - [527] = {.lex_state = 149}, - [528] = {.lex_state = 149}, - [529] = {.lex_state = 171}, - [530] = {.lex_state = 171}, - [531] = {.lex_state = 171}, - [532] = {.lex_state = 171}, - [533] = {.lex_state = 171}, - [534] = {.lex_state = 171}, - [535] = {.lex_state = 149}, - [536] = {.lex_state = 171}, - [537] = {.lex_state = 171}, - [538] = {.lex_state = 171}, - [539] = {.lex_state = 171}, - [540] = {.lex_state = 171}, - [541] = {.lex_state = 171}, - [542] = {.lex_state = 171}, - [543] = {.lex_state = 149}, - [544] = {.lex_state = 171}, - [545] = {.lex_state = 171}, - [546] = {.lex_state = 171}, - [547] = {.lex_state = 171}, - [548] = {.lex_state = 171}, - [549] = {.lex_state = 171}, - [550] = {.lex_state = 149}, - [551] = {.lex_state = 171}, - [552] = {.lex_state = 149}, - [553] = {.lex_state = 171}, - [554] = {.lex_state = 147}, - [555] = {.lex_state = 152}, - [556] = {.lex_state = 152}, - [557] = {.lex_state = 153}, - [558] = {.lex_state = 152}, - [559] = {.lex_state = 152}, + [517] = {.lex_state = 145}, + [518] = {.lex_state = 147}, + [519] = {.lex_state = 147}, + [520] = {.lex_state = 147}, + [521] = {.lex_state = 147}, + [522] = {.lex_state = 169}, + [523] = {.lex_state = 169}, + [524] = {.lex_state = 169}, + [525] = {.lex_state = 169}, + [526] = {.lex_state = 169}, + [527] = {.lex_state = 169}, + [528] = {.lex_state = 169}, + [529] = {.lex_state = 169}, + [530] = {.lex_state = 169}, + [531] = {.lex_state = 169}, + [532] = {.lex_state = 169}, + [533] = {.lex_state = 169}, + [534] = {.lex_state = 150}, + [535] = {.lex_state = 169}, + [536] = {.lex_state = 169}, + [537] = {.lex_state = 145}, + [538] = {.lex_state = 150}, + [539] = {.lex_state = 169}, + [540] = {.lex_state = 150}, + [541] = {.lex_state = 169}, + [542] = {.lex_state = 150}, + [543] = {.lex_state = 169}, + [544] = {.lex_state = 169}, + [545] = {.lex_state = 169}, + [546] = {.lex_state = 145}, + [547] = {.lex_state = 169}, + [548] = {.lex_state = 169}, + [549] = {.lex_state = 151}, + [550] = {.lex_state = 169}, + [551] = {.lex_state = 145}, + [552] = {.lex_state = 150}, + [553] = {.lex_state = 169}, + [554] = {.lex_state = 169}, + [555] = {.lex_state = 169}, + [556] = {.lex_state = 169}, + [557] = {.lex_state = 169}, + [558] = {.lex_state = 169}, + [559] = {.lex_state = 150}, [560] = {.lex_state = 150}, - [561] = {.lex_state = 147}, - [562] = {.lex_state = 150}, + [561] = {.lex_state = 150}, + [562] = {.lex_state = 169}, [563] = {.lex_state = 150}, - [564] = {.lex_state = 154}, - [565] = {.lex_state = 147}, - [566] = {.lex_state = 147}, - [567] = {.lex_state = 154}, - [568] = {.lex_state = 155}, - [569] = {.lex_state = 154}, - [570] = {.lex_state = 156}, - [571] = {.lex_state = 150}, - [572] = {.lex_state = 156}, - [573] = {.lex_state = 150}, - [574] = {.lex_state = 150}, - [575] = {.lex_state = 149}, - [576] = {.lex_state = 155}, - [577] = {.lex_state = 155}, - [578] = {.lex_state = 150}, - [579] = {.lex_state = 155}, - [580] = {.lex_state = 154}, - [581] = {.lex_state = 155}, - [582] = {.lex_state = 155}, - [583] = {.lex_state = 155}, - [584] = {.lex_state = 155}, - [585] = {.lex_state = 155}, - [586] = {.lex_state = 155}, - [587] = {.lex_state = 153}, - [588] = {.lex_state = 153}, - [589] = {.lex_state = 150}, - [590] = {.lex_state = 149}, - [591] = {.lex_state = 150}, - [592] = {.lex_state = 150}, - [593] = {.lex_state = 153}, - [594] = {.lex_state = 153}, - [595] = {.lex_state = 150}, - [596] = {.lex_state = 153}, - [597] = {.lex_state = 153}, - [598] = {.lex_state = 153}, - [599] = {.lex_state = 153}, - [600] = {.lex_state = 149}, - [601] = {.lex_state = 150}, - [602] = {.lex_state = 153}, - [603] = {.lex_state = 150}, - [604] = {.lex_state = 153}, - [605] = {.lex_state = 149}, - [606] = {.lex_state = 150}, + [564] = {.lex_state = 169}, + [565] = {.lex_state = 169}, + [566] = {.lex_state = 169}, + [567] = {.lex_state = 150}, + [568] = {.lex_state = 169}, + [569] = {.lex_state = 169}, + [570] = {.lex_state = 169}, + [571] = {.lex_state = 169}, + [572] = {.lex_state = 169}, + [573] = {.lex_state = 169}, + [574] = {.lex_state = 169}, + [575] = {.lex_state = 169}, + [576] = {.lex_state = 169}, + [577] = {.lex_state = 169}, + [578] = {.lex_state = 169}, + [579] = {.lex_state = 169}, + [580] = {.lex_state = 147}, + [581] = {.lex_state = 169}, + [582] = {.lex_state = 169}, + [583] = {.lex_state = 169}, + [584] = {.lex_state = 169}, + [585] = {.lex_state = 169}, + [586] = {.lex_state = 169}, + [587] = {.lex_state = 169}, + [588] = {.lex_state = 169}, + [589] = {.lex_state = 169}, + [590] = {.lex_state = 169}, + [591] = {.lex_state = 169}, + [592] = {.lex_state = 169}, + [593] = {.lex_state = 169}, + [594] = {.lex_state = 169}, + [595] = {.lex_state = 169}, + [596] = {.lex_state = 169}, + [597] = {.lex_state = 169}, + [598] = {.lex_state = 169}, + [599] = {.lex_state = 169}, + [600] = {.lex_state = 169}, + [601] = {.lex_state = 169}, + [602] = {.lex_state = 169}, + [603] = {.lex_state = 169}, + [604] = {.lex_state = 152}, + [605] = {.lex_state = 148}, + [606] = {.lex_state = 145}, [607] = {.lex_state = 153}, - [608] = {.lex_state = 153}, - [609] = {.lex_state = 153}, - [610] = {.lex_state = 153}, - [611] = {.lex_state = 150}, + [608] = {.lex_state = 148}, + [609] = {.lex_state = 152}, + [610] = {.lex_state = 152}, + [611] = {.lex_state = 145}, [612] = {.lex_state = 153}, - [613] = {.lex_state = 150}, - [614] = {.lex_state = 150}, - [615] = {.lex_state = 153}, - [616] = {.lex_state = 150}, + [613] = {.lex_state = 154}, + [614] = {.lex_state = 145}, + [615] = {.lex_state = 148}, + [616] = {.lex_state = 152}, [617] = {.lex_state = 153}, - [618] = {.lex_state = 153}, - [619] = {.lex_state = 150}, - [620] = {.lex_state = 150}, - [621] = {.lex_state = 149}, - [622] = {.lex_state = 150}, - [623] = {.lex_state = 149}, - [624] = {.lex_state = 150}, - [625] = {.lex_state = 150}, - [626] = {.lex_state = 155}, - [627] = {.lex_state = 155}, - [628] = {.lex_state = 155}, - [629] = {.lex_state = 155}, - [630] = {.lex_state = 155}, - [631] = {.lex_state = 155}, - [632] = {.lex_state = 149}, - [633] = {.lex_state = 155}, - [634] = {.lex_state = 149}, - [635] = {.lex_state = 155}, - [636] = {.lex_state = 155}, - [637] = {.lex_state = 155}, - [638] = {.lex_state = 149}, - [639] = {.lex_state = 149}, - [640] = {.lex_state = 155}, - [641] = {.lex_state = 155}, - [642] = {.lex_state = 149}, - [643] = {.lex_state = 150}, - [644] = {.lex_state = 155}, - [645] = {.lex_state = 155}, - [646] = {.lex_state = 155}, - [647] = {.lex_state = 155}, - [648] = {.lex_state = 155}, - [649] = {.lex_state = 150}, - [650] = {.lex_state = 155}, - [651] = {.lex_state = 149}, - [652] = {.lex_state = 155}, - [653] = {.lex_state = 155}, - [654] = {.lex_state = 150}, - [655] = {.lex_state = 149}, - [656] = {.lex_state = 149}, - [657] = {.lex_state = 155}, - [658] = {.lex_state = 149}, - [659] = {.lex_state = 149}, - [660] = {.lex_state = 149}, - [661] = {.lex_state = 149}, - [662] = {.lex_state = 149}, - [663] = {.lex_state = 149}, - [664] = {.lex_state = 155}, - [665] = {.lex_state = 155}, - [666] = {.lex_state = 155}, - [667] = {.lex_state = 155}, - [668] = {.lex_state = 149}, - [669] = {.lex_state = 149}, - [670] = {.lex_state = 155}, - [671] = {.lex_state = 149}, - [672] = {.lex_state = 155}, - [673] = {.lex_state = 155}, - [674] = {.lex_state = 149}, - [675] = {.lex_state = 149}, - [676] = {.lex_state = 149}, - [677] = {.lex_state = 155}, - [678] = {.lex_state = 149}, - [679] = {.lex_state = 149}, - [680] = {.lex_state = 155}, - [681] = {.lex_state = 155}, - [682] = {.lex_state = 155}, - [683] = {.lex_state = 149}, - [684] = {.lex_state = 149}, - [685] = {.lex_state = 155}, - [686] = {.lex_state = 155}, - [687] = {.lex_state = 155}, - [688] = {.lex_state = 155}, - [689] = {.lex_state = 155}, - [690] = {.lex_state = 155}, - [691] = {.lex_state = 155}, - [692] = {.lex_state = 155}, - [693] = {.lex_state = 155}, - [694] = {.lex_state = 155}, - [695] = {.lex_state = 155}, - [696] = {.lex_state = 155}, - [697] = {.lex_state = 157}, - [698] = {.lex_state = 143}, - [699] = {.lex_state = 158}, - [700] = {.lex_state = 143}, - [701] = {.lex_state = 143}, - [702] = {.lex_state = 147}, - [703] = {.lex_state = 147}, - [704] = {.lex_state = 147}, - [705] = {.lex_state = 159}, - [706] = {.lex_state = 160}, - [707] = {.lex_state = 160}, - [708] = {.lex_state = 160}, - [709] = {.lex_state = 160}, - [710] = {.lex_state = 160}, - [711] = {.lex_state = 160}, - [712] = {.lex_state = 160}, - [713] = {.lex_state = 160}, - [714] = {.lex_state = 160}, - [715] = {.lex_state = 160}, - [716] = {.lex_state = 157}, - [717] = {.lex_state = 157}, - [718] = {.lex_state = 160}, - [719] = {.lex_state = 157}, - [720] = {.lex_state = 160}, - [721] = {.lex_state = 160}, - [722] = {.lex_state = 158}, - [723] = {.lex_state = 160}, - [724] = {.lex_state = 160}, - [725] = {.lex_state = 160}, - [726] = {.lex_state = 160}, - [727] = {.lex_state = 157}, - [728] = {.lex_state = 160}, - [729] = {.lex_state = 160}, - [730] = {.lex_state = 160}, - [731] = {.lex_state = 160}, - [732] = {.lex_state = 160}, - [733] = {.lex_state = 160}, - [734] = {.lex_state = 160}, - [735] = {.lex_state = 160}, - [736] = {.lex_state = 160}, - [737] = {.lex_state = 160}, - [738] = {.lex_state = 160}, - [739] = {.lex_state = 153}, - [740] = {.lex_state = 153}, - [741] = {.lex_state = 153}, - [742] = {.lex_state = 153}, - [743] = {.lex_state = 160}, - [744] = {.lex_state = 160}, - [745] = {.lex_state = 160}, - [746] = {.lex_state = 160}, - [747] = {.lex_state = 160}, - [748] = {.lex_state = 160}, - [749] = {.lex_state = 160}, - [750] = {.lex_state = 160}, - [751] = {.lex_state = 160}, - [752] = {.lex_state = 157}, - [753] = {.lex_state = 157}, - [754] = {.lex_state = 157}, - [755] = {.lex_state = 157}, - [756] = {.lex_state = 160}, - [757] = {.lex_state = 160}, - [758] = {.lex_state = 157}, - [759] = {.lex_state = 160}, - [760] = {.lex_state = 157}, - [761] = {.lex_state = 157}, - [762] = {.lex_state = 160}, - [763] = {.lex_state = 160}, - [764] = {.lex_state = 153}, - [765] = {.lex_state = 160}, - [766] = {.lex_state = 160}, - [767] = {.lex_state = 153}, - [768] = {.lex_state = 157}, - [769] = {.lex_state = 160}, - [770] = {.lex_state = 160}, - [771] = {.lex_state = 157}, - [772] = {.lex_state = 153}, - [773] = {.lex_state = 157}, - [774] = {.lex_state = 160}, - [775] = {.lex_state = 160}, - [776] = {.lex_state = 157}, - [777] = {.lex_state = 160}, - [778] = {.lex_state = 160}, - [779] = {.lex_state = 160}, - [780] = {.lex_state = 160}, - [781] = {.lex_state = 153}, - [782] = {.lex_state = 149}, - [783] = {.lex_state = 160}, - [784] = {.lex_state = 157}, - [785] = {.lex_state = 160}, - [786] = {.lex_state = 160}, - [787] = {.lex_state = 153}, - [788] = {.lex_state = 160}, - [789] = {.lex_state = 160}, - [790] = {.lex_state = 160}, - [791] = {.lex_state = 160}, - [792] = {.lex_state = 160}, - [793] = {.lex_state = 149}, - [794] = {.lex_state = 158}, - [795] = {.lex_state = 149}, - [796] = {.lex_state = 149}, - [797] = {.lex_state = 149}, - [798] = {.lex_state = 160}, - [799] = {.lex_state = 153}, - [800] = {.lex_state = 160}, - [801] = {.lex_state = 158}, - [802] = {.lex_state = 153}, - [803] = {.lex_state = 158}, - [804] = {.lex_state = 153}, - [805] = {.lex_state = 153}, - [806] = {.lex_state = 147}, - [807] = {.lex_state = 157}, - [808] = {.lex_state = 158}, - [809] = {.lex_state = 158}, - [810] = {.lex_state = 158}, - [811] = {.lex_state = 147}, - [812] = {.lex_state = 153}, + [618] = {.lex_state = 148}, + [619] = {.lex_state = 153}, + [620] = {.lex_state = 155}, + [621] = {.lex_state = 148}, + [622] = {.lex_state = 148}, + [623] = {.lex_state = 147}, + [624] = {.lex_state = 148}, + [625] = {.lex_state = 155}, + [626] = {.lex_state = 148}, + [627] = {.lex_state = 148}, + [628] = {.lex_state = 148}, + [629] = {.lex_state = 147}, + [630] = {.lex_state = 154}, + [631] = {.lex_state = 148}, + [632] = {.lex_state = 154}, + [633] = {.lex_state = 147}, + [634] = {.lex_state = 154}, + [635] = {.lex_state = 147}, + [636] = {.lex_state = 154}, + [637] = {.lex_state = 154}, + [638] = {.lex_state = 154}, + [639] = {.lex_state = 154}, + [640] = {.lex_state = 154}, + [641] = {.lex_state = 147}, + [642] = {.lex_state = 147}, + [643] = {.lex_state = 154}, + [644] = {.lex_state = 148}, + [645] = {.lex_state = 148}, + [646] = {.lex_state = 148}, + [647] = {.lex_state = 148}, + [648] = {.lex_state = 148}, + [649] = {.lex_state = 154}, + [650] = {.lex_state = 148}, + [651] = {.lex_state = 154}, + [652] = {.lex_state = 148}, + [653] = {.lex_state = 154}, + [654] = {.lex_state = 154}, + [655] = {.lex_state = 148}, + [656] = {.lex_state = 148}, + [657] = {.lex_state = 154}, + [658] = {.lex_state = 154}, + [659] = {.lex_state = 154}, + [660] = {.lex_state = 154}, + [661] = {.lex_state = 154}, + [662] = {.lex_state = 154}, + [663] = {.lex_state = 148}, + [664] = {.lex_state = 150}, + [665] = {.lex_state = 148}, + [666] = {.lex_state = 154}, + [667] = {.lex_state = 150}, + [668] = {.lex_state = 154}, + [669] = {.lex_state = 150}, + [670] = {.lex_state = 154}, + [671] = {.lex_state = 154}, + [672] = {.lex_state = 150}, + [673] = {.lex_state = 154}, + [674] = {.lex_state = 150}, + [675] = {.lex_state = 147}, + [676] = {.lex_state = 154}, + [677] = {.lex_state = 148}, + [678] = {.lex_state = 154}, + [679] = {.lex_state = 150}, + [680] = {.lex_state = 154}, + [681] = {.lex_state = 154}, + [682] = {.lex_state = 147}, + [683] = {.lex_state = 154}, + [684] = {.lex_state = 154}, + [685] = {.lex_state = 147}, + [686] = {.lex_state = 154}, + [687] = {.lex_state = 150}, + [688] = {.lex_state = 148}, + [689] = {.lex_state = 147}, + [690] = {.lex_state = 147}, + [691] = {.lex_state = 150}, + [692] = {.lex_state = 154}, + [693] = {.lex_state = 150}, + [694] = {.lex_state = 154}, + [695] = {.lex_state = 150}, + [696] = {.lex_state = 154}, + [697] = {.lex_state = 154}, + [698] = {.lex_state = 147}, + [699] = {.lex_state = 154}, + [700] = {.lex_state = 154}, + [701] = {.lex_state = 147}, + [702] = {.lex_state = 150}, + [703] = {.lex_state = 150}, + [704] = {.lex_state = 150}, + [705] = {.lex_state = 154}, + [706] = {.lex_state = 154}, + [707] = {.lex_state = 154}, + [708] = {.lex_state = 154}, + [709] = {.lex_state = 150}, + [710] = {.lex_state = 154}, + [711] = {.lex_state = 154}, + [712] = {.lex_state = 154}, + [713] = {.lex_state = 154}, + [714] = {.lex_state = 154}, + [715] = {.lex_state = 148}, + [716] = {.lex_state = 154}, + [717] = {.lex_state = 150}, + [718] = {.lex_state = 150}, + [719] = {.lex_state = 147}, + [720] = {.lex_state = 148}, + [721] = {.lex_state = 150}, + [722] = {.lex_state = 154}, + [723] = {.lex_state = 150}, + [724] = {.lex_state = 148}, + [725] = {.lex_state = 150}, + [726] = {.lex_state = 154}, + [727] = {.lex_state = 150}, + [728] = {.lex_state = 147}, + [729] = {.lex_state = 150}, + [730] = {.lex_state = 147}, + [731] = {.lex_state = 147}, + [732] = {.lex_state = 150}, + [733] = {.lex_state = 147}, + [734] = {.lex_state = 147}, + [735] = {.lex_state = 150}, + [736] = {.lex_state = 147}, + [737] = {.lex_state = 154}, + [738] = {.lex_state = 154}, + [739] = {.lex_state = 154}, + [740] = {.lex_state = 150}, + [741] = {.lex_state = 154}, + [742] = {.lex_state = 150}, + [743] = {.lex_state = 154}, + [744] = {.lex_state = 154}, + [745] = {.lex_state = 154}, + [746] = {.lex_state = 150}, + [747] = {.lex_state = 154}, + [748] = {.lex_state = 154}, + [749] = {.lex_state = 147}, + [750] = {.lex_state = 150}, + [751] = {.lex_state = 154}, + [752] = {.lex_state = 147}, + [753] = {.lex_state = 150}, + [754] = {.lex_state = 154}, + [755] = {.lex_state = 147}, + [756] = {.lex_state = 154}, + [757] = {.lex_state = 147}, + [758] = {.lex_state = 154}, + [759] = {.lex_state = 154}, + [760] = {.lex_state = 147}, + [761] = {.lex_state = 147}, + [762] = {.lex_state = 150}, + [763] = {.lex_state = 154}, + [764] = {.lex_state = 150}, + [765] = {.lex_state = 154}, + [766] = {.lex_state = 147}, + [767] = {.lex_state = 150}, + [768] = {.lex_state = 147}, + [769] = {.lex_state = 154}, + [770] = {.lex_state = 154}, + [771] = {.lex_state = 154}, + [772] = {.lex_state = 150}, + [773] = {.lex_state = 154}, + [774] = {.lex_state = 154}, + [775] = {.lex_state = 147}, + [776] = {.lex_state = 147}, + [777] = {.lex_state = 147}, + [778] = {.lex_state = 147}, + [779] = {.lex_state = 154}, + [780] = {.lex_state = 147}, + [781] = {.lex_state = 154}, + [782] = {.lex_state = 154}, + [783] = {.lex_state = 154}, + [784] = {.lex_state = 147}, + [785] = {.lex_state = 147}, + [786] = {.lex_state = 154}, + [787] = {.lex_state = 147}, + [788] = {.lex_state = 154}, + [789] = {.lex_state = 150}, + [790] = {.lex_state = 154}, + [791] = {.lex_state = 154}, + [792] = {.lex_state = 150}, + [793] = {.lex_state = 150}, + [794] = {.lex_state = 150}, + [795] = {.lex_state = 150}, + [796] = {.lex_state = 150}, + [797] = {.lex_state = 150}, + [798] = {.lex_state = 150}, + [799] = {.lex_state = 150}, + [800] = {.lex_state = 150}, + [801] = {.lex_state = 150}, + [802] = {.lex_state = 150}, + [803] = {.lex_state = 141}, + [804] = {.lex_state = 156}, + [805] = {.lex_state = 141}, + [806] = {.lex_state = 157}, + [807] = {.lex_state = 141}, + [808] = {.lex_state = 145}, + [809] = {.lex_state = 145}, + [810] = {.lex_state = 145}, + [811] = {.lex_state = 158}, + [812] = {.lex_state = 158}, [813] = {.lex_state = 158}, - [814] = {.lex_state = 158}, + [814] = {.lex_state = 156}, [815] = {.lex_state = 158}, - [816] = {.lex_state = 160}, + [816] = {.lex_state = 158}, [817] = {.lex_state = 158}, [818] = {.lex_state = 158}, [819] = {.lex_state = 158}, [820] = {.lex_state = 158}, [821] = {.lex_state = 158}, [822] = {.lex_state = 158}, - [823] = {.lex_state = 158}, + [823] = {.lex_state = 156}, [824] = {.lex_state = 158}, - [825] = {.lex_state = 158}, + [825] = {.lex_state = 156}, [826] = {.lex_state = 158}, [827] = {.lex_state = 158}, - [828] = {.lex_state = 158}, + [828] = {.lex_state = 157}, [829] = {.lex_state = 158}, - [830] = {.lex_state = 160}, + [830] = {.lex_state = 158}, [831] = {.lex_state = 158}, [832] = {.lex_state = 158}, [833] = {.lex_state = 158}, [834] = {.lex_state = 158}, [835] = {.lex_state = 158}, - [836] = {.lex_state = 153}, - [837] = {.lex_state = 153}, - [838] = {.lex_state = 153}, + [836] = {.lex_state = 158}, + [837] = {.lex_state = 156}, + [838] = {.lex_state = 158}, [839] = {.lex_state = 158}, - [840] = {.lex_state = 147}, - [841] = {.lex_state = 147}, - [842] = {.lex_state = 161}, + [840] = {.lex_state = 158}, + [841] = {.lex_state = 158}, + [842] = {.lex_state = 158}, [843] = {.lex_state = 158}, - [844] = {.lex_state = 153}, - [845] = {.lex_state = 157}, - [846] = {.lex_state = 157}, - [847] = {.lex_state = 157}, - [848] = {.lex_state = 153}, - [849] = {.lex_state = 161}, - [850] = {.lex_state = 161}, - [851] = {.lex_state = 153}, - [852] = {.lex_state = 161}, - [853] = {.lex_state = 157}, - [854] = {.lex_state = 153}, - [855] = {.lex_state = 161}, - [856] = {.lex_state = 147}, - [857] = {.lex_state = 157}, - [858] = {.lex_state = 153}, - [859] = {.lex_state = 157}, - [860] = {.lex_state = 153}, - [861] = {.lex_state = 161}, - [862] = {.lex_state = 157}, - [863] = {.lex_state = 147}, - [864] = {.lex_state = 147}, - [865] = {.lex_state = 147}, - [866] = {.lex_state = 147}, - [867] = {.lex_state = 162}, - [868] = {.lex_state = 147}, - [869] = {.lex_state = 162}, - [870] = {.lex_state = 147}, - [871] = {.lex_state = 147}, - [872] = {.lex_state = 157}, - [873] = {.lex_state = 161}, - [874] = {.lex_state = 147}, - [875] = {.lex_state = 147}, - [876] = {.lex_state = 147}, - [877] = {.lex_state = 147}, - [878] = {.lex_state = 147}, - [879] = {.lex_state = 147}, - [880] = {.lex_state = 147}, - [881] = {.lex_state = 147}, - [882] = {.lex_state = 147}, - [883] = {.lex_state = 147}, - [884] = {.lex_state = 147}, - [885] = {.lex_state = 147}, - [886] = {.lex_state = 162}, - [887] = {.lex_state = 147}, - [888] = {.lex_state = 147}, - [889] = {.lex_state = 147}, - [890] = {.lex_state = 158}, - [891] = {.lex_state = 147}, - [892] = {.lex_state = 147}, - [893] = {.lex_state = 157}, - [894] = {.lex_state = 147}, - [895] = {.lex_state = 147}, - [896] = {.lex_state = 158}, - [897] = {.lex_state = 147}, - [898] = {.lex_state = 157}, + [844] = {.lex_state = 147}, + [845] = {.lex_state = 158}, + [846] = {.lex_state = 158}, + [847] = {.lex_state = 158}, + [848] = {.lex_state = 158}, + [849] = {.lex_state = 156}, + [850] = {.lex_state = 158}, + [851] = {.lex_state = 158}, + [852] = {.lex_state = 158}, + [853] = {.lex_state = 158}, + [854] = {.lex_state = 158}, + [855] = {.lex_state = 158}, + [856] = {.lex_state = 154}, + [857] = {.lex_state = 154}, + [858] = {.lex_state = 154}, + [859] = {.lex_state = 156}, + [860] = {.lex_state = 158}, + [861] = {.lex_state = 158}, + [862] = {.lex_state = 154}, + [863] = {.lex_state = 156}, + [864] = {.lex_state = 158}, + [865] = {.lex_state = 158}, + [866] = {.lex_state = 156}, + [867] = {.lex_state = 158}, + [868] = {.lex_state = 156}, + [869] = {.lex_state = 158}, + [870] = {.lex_state = 158}, + [871] = {.lex_state = 158}, + [872] = {.lex_state = 158}, + [873] = {.lex_state = 158}, + [874] = {.lex_state = 158}, + [875] = {.lex_state = 156}, + [876] = {.lex_state = 156}, + [877] = {.lex_state = 156}, + [878] = {.lex_state = 156}, + [879] = {.lex_state = 154}, + [880] = {.lex_state = 158}, + [881] = {.lex_state = 158}, + [882] = {.lex_state = 158}, + [883] = {.lex_state = 158}, + [884] = {.lex_state = 158}, + [885] = {.lex_state = 158}, + [886] = {.lex_state = 158}, + [887] = {.lex_state = 158}, + [888] = {.lex_state = 158}, + [889] = {.lex_state = 158}, + [890] = {.lex_state = 156}, + [891] = {.lex_state = 156}, + [892] = {.lex_state = 158}, + [893] = {.lex_state = 156}, + [894] = {.lex_state = 154}, + [895] = {.lex_state = 158}, + [896] = {.lex_state = 157}, + [897] = {.lex_state = 145}, + [898] = {.lex_state = 147}, [899] = {.lex_state = 147}, - [900] = {.lex_state = 147}, + [900] = {.lex_state = 145}, [901] = {.lex_state = 147}, - [902] = {.lex_state = 147}, - [903] = {.lex_state = 158}, - [904] = {.lex_state = 147}, - [905] = {.lex_state = 147}, - [906] = {.lex_state = 147}, - [907] = {.lex_state = 147}, - [908] = {.lex_state = 158}, - [909] = {.lex_state = 147}, - [910] = {.lex_state = 147}, - [911] = {.lex_state = 161}, + [902] = {.lex_state = 157}, + [903] = {.lex_state = 154}, + [904] = {.lex_state = 157}, + [905] = {.lex_state = 154}, + [906] = {.lex_state = 157}, + [907] = {.lex_state = 154}, + [908] = {.lex_state = 157}, + [909] = {.lex_state = 157}, + [910] = {.lex_state = 157}, + [911] = {.lex_state = 157}, [912] = {.lex_state = 158}, [913] = {.lex_state = 158}, - [914] = {.lex_state = 161}, - [915] = {.lex_state = 158}, - [916] = {.lex_state = 158}, - [917] = {.lex_state = 161}, - [918] = {.lex_state = 163}, - [919] = {.lex_state = 163}, - [920] = {.lex_state = 163}, - [921] = {.lex_state = 163}, - [922] = {.lex_state = 161}, - [923] = {.lex_state = 163}, - [924] = {.lex_state = 158}, - [925] = {.lex_state = 163}, - [926] = {.lex_state = 162}, - [927] = {.lex_state = 147}, - [928] = {.lex_state = 147, .external_lex_state = 1}, - [929] = {.lex_state = 162}, - [930] = {.lex_state = 147}, - [931] = {.lex_state = 147}, - [932] = {.lex_state = 162}, - [933] = {.lex_state = 147, .external_lex_state = 1}, - [934] = {.lex_state = 147}, - [935] = {.lex_state = 147}, - [936] = {.lex_state = 158}, - [937] = {.lex_state = 162}, - [938] = {.lex_state = 147, .external_lex_state = 1}, - [939] = {.lex_state = 162}, - [940] = {.lex_state = 162}, - [941] = {.lex_state = 162}, - [942] = {.lex_state = 147, .external_lex_state = 1}, - [943] = {.lex_state = 147, .external_lex_state = 1}, - [944] = {.lex_state = 147, .external_lex_state = 1}, - [945] = {.lex_state = 147, .external_lex_state = 1}, - [946] = {.lex_state = 162}, - [947] = {.lex_state = 162}, - [948] = {.lex_state = 147}, - [949] = {.lex_state = 147, .external_lex_state = 1}, - [950] = {.lex_state = 147, .external_lex_state = 1}, - [951] = {.lex_state = 147}, - [952] = {.lex_state = 147, .external_lex_state = 1}, - [953] = {.lex_state = 162}, - [954] = {.lex_state = 147, .external_lex_state = 1}, - [955] = {.lex_state = 147, .external_lex_state = 1}, - [956] = {.lex_state = 147, .external_lex_state = 1}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 162}, - [959] = {.lex_state = 162}, - [960] = {.lex_state = 163}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 158}, - [964] = {.lex_state = 161}, - [965] = {.lex_state = 147}, - [966] = {.lex_state = 147}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 158}, - [970] = {.lex_state = 144}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 158}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 147}, - [979] = {.lex_state = 157}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 161}, - [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 147}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 147}, - [990] = {.lex_state = 147}, - [991] = {.lex_state = 158}, - [992] = {.lex_state = 147}, - [993] = {.lex_state = 147}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 162}, - [996] = {.lex_state = 147}, - [997] = {.lex_state = 161}, - [998] = {.lex_state = 162}, - [999] = {.lex_state = 147}, - [1000] = {.lex_state = 147}, - [1001] = {.lex_state = 161}, - [1002] = {.lex_state = 144}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 144}, - [1005] = {.lex_state = 161}, - [1006] = {.lex_state = 147}, - [1007] = {.lex_state = 147}, - [1008] = {.lex_state = 162}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 147}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 147}, - [1014] = {.lex_state = 147}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 162}, - [1017] = {.lex_state = 158}, - [1018] = {.lex_state = 161}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 158}, - [1021] = {.lex_state = 162}, - [1022] = {.lex_state = 162}, + [914] = {.lex_state = 157}, + [915] = {.lex_state = 157}, + [916] = {.lex_state = 157}, + [917] = {.lex_state = 145}, + [918] = {.lex_state = 157}, + [919] = {.lex_state = 154}, + [920] = {.lex_state = 156}, + [921] = {.lex_state = 157}, + [922] = {.lex_state = 157}, + [923] = {.lex_state = 157}, + [924] = {.lex_state = 157}, + [925] = {.lex_state = 157}, + [926] = {.lex_state = 157}, + [927] = {.lex_state = 158}, + [928] = {.lex_state = 157}, + [929] = {.lex_state = 157}, + [930] = {.lex_state = 158}, + [931] = {.lex_state = 157}, + [932] = {.lex_state = 157}, + [933] = {.lex_state = 157}, + [934] = {.lex_state = 157}, + [935] = {.lex_state = 157}, + [936] = {.lex_state = 157}, + [937] = {.lex_state = 157}, + [938] = {.lex_state = 147}, + [939] = {.lex_state = 157}, + [940] = {.lex_state = 145}, + [941] = {.lex_state = 156}, + [942] = {.lex_state = 151}, + [943] = {.lex_state = 156}, + [944] = {.lex_state = 156}, + [945] = {.lex_state = 159}, + [946] = {.lex_state = 159}, + [947] = {.lex_state = 151}, + [948] = {.lex_state = 159}, + [949] = {.lex_state = 157}, + [950] = {.lex_state = 151}, + [951] = {.lex_state = 156}, + [952] = {.lex_state = 159}, + [953] = {.lex_state = 151}, + [954] = {.lex_state = 156}, + [955] = {.lex_state = 159}, + [956] = {.lex_state = 159}, + [957] = {.lex_state = 151}, + [958] = {.lex_state = 156}, + [959] = {.lex_state = 151}, + [960] = {.lex_state = 156}, + [961] = {.lex_state = 145}, + [962] = {.lex_state = 145}, + [963] = {.lex_state = 145}, + [964] = {.lex_state = 160}, + [965] = {.lex_state = 145}, + [966] = {.lex_state = 156}, + [967] = {.lex_state = 159}, + [968] = {.lex_state = 145}, + [969] = {.lex_state = 145}, + [970] = {.lex_state = 145}, + [971] = {.lex_state = 145}, + [972] = {.lex_state = 145}, + [973] = {.lex_state = 160}, + [974] = {.lex_state = 157}, + [975] = {.lex_state = 145}, + [976] = {.lex_state = 145}, + [977] = {.lex_state = 145}, + [978] = {.lex_state = 145}, + [979] = {.lex_state = 145}, + [980] = {.lex_state = 157}, + [981] = {.lex_state = 156}, + [982] = {.lex_state = 145}, + [983] = {.lex_state = 145}, + [984] = {.lex_state = 145}, + [985] = {.lex_state = 145}, + [986] = {.lex_state = 145}, + [987] = {.lex_state = 145}, + [988] = {.lex_state = 145}, + [989] = {.lex_state = 145}, + [990] = {.lex_state = 145}, + [991] = {.lex_state = 145}, + [992] = {.lex_state = 145}, + [993] = {.lex_state = 145}, + [994] = {.lex_state = 145}, + [995] = {.lex_state = 145}, + [996] = {.lex_state = 145}, + [997] = {.lex_state = 145}, + [998] = {.lex_state = 145}, + [999] = {.lex_state = 145}, + [1000] = {.lex_state = 145}, + [1001] = {.lex_state = 145}, + [1002] = {.lex_state = 160}, + [1003] = {.lex_state = 156}, + [1004] = {.lex_state = 145}, + [1005] = {.lex_state = 157}, + [1006] = {.lex_state = 145}, + [1007] = {.lex_state = 157}, + [1008] = {.lex_state = 145}, + [1009] = {.lex_state = 145}, + [1010] = {.lex_state = 157}, + [1011] = {.lex_state = 159}, + [1012] = {.lex_state = 157}, + [1013] = {.lex_state = 157}, + [1014] = {.lex_state = 157}, + [1015] = {.lex_state = 159}, + [1016] = {.lex_state = 159}, + [1017] = {.lex_state = 159}, + [1018] = {.lex_state = 157}, + [1019] = {.lex_state = 161}, + [1020] = {.lex_state = 161}, + [1021] = {.lex_state = 161}, + [1022] = {.lex_state = 161}, [1023] = {.lex_state = 161}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 162}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 147}, - [1029] = {.lex_state = 162}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 147}, - [1032] = {.lex_state = 162}, - [1033] = {.lex_state = 162}, - [1034] = {.lex_state = 147, .external_lex_state = 1}, - [1035] = {.lex_state = 144}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 147}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 147}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 144}, - [1048] = {.lex_state = 144}, - [1049] = {.lex_state = 144}, - [1050] = {.lex_state = 144}, + [1024] = {.lex_state = 161}, + [1025] = {.lex_state = 145}, + [1026] = {.lex_state = 145}, + [1027] = {.lex_state = 145, .external_lex_state = 1}, + [1028] = {.lex_state = 145}, + [1029] = {.lex_state = 145, .external_lex_state = 1}, + [1030] = {.lex_state = 145, .external_lex_state = 1}, + [1031] = {.lex_state = 160}, + [1032] = {.lex_state = 157}, + [1033] = {.lex_state = 160}, + [1034] = {.lex_state = 145}, + [1035] = {.lex_state = 145, .external_lex_state = 1}, + [1036] = {.lex_state = 160}, + [1037] = {.lex_state = 145, .external_lex_state = 1}, + [1038] = {.lex_state = 145, .external_lex_state = 1}, + [1039] = {.lex_state = 145, .external_lex_state = 1}, + [1040] = {.lex_state = 160}, + [1041] = {.lex_state = 145, .external_lex_state = 1}, + [1042] = {.lex_state = 160}, + [1043] = {.lex_state = 145}, + [1044] = {.lex_state = 160}, + [1045] = {.lex_state = 145, .external_lex_state = 1}, + [1046] = {.lex_state = 160}, + [1047] = {.lex_state = 145, .external_lex_state = 1}, + [1048] = {.lex_state = 161}, + [1049] = {.lex_state = 145}, + [1050] = {.lex_state = 145}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 162}, - [1053] = {.lex_state = 144}, + [1052] = {.lex_state = 145, .external_lex_state = 1}, + [1053] = {.lex_state = 160}, [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 147}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 144}, - [1062] = {.lex_state = 147}, - [1063] = {.lex_state = 147}, - [1064] = {.lex_state = 0}, + [1055] = {.lex_state = 160}, + [1056] = {.lex_state = 145, .external_lex_state = 1}, + [1057] = {.lex_state = 160}, + [1058] = {.lex_state = 145, .external_lex_state = 1}, + [1059] = {.lex_state = 160}, + [1060] = {.lex_state = 160}, + [1061] = {.lex_state = 145}, + [1062] = {.lex_state = 159}, + [1063] = {.lex_state = 142}, + [1064] = {.lex_state = 145}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, + [1068] = {.lex_state = 157}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, + [1073] = {.lex_state = 157}, + [1074] = {.lex_state = 145}, + [1075] = {.lex_state = 159}, [1076] = {.lex_state = 0}, [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 147}, - [1080] = {.lex_state = 144}, - [1081] = {.lex_state = 147}, - [1082] = {.lex_state = 144}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 144}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 145}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 156}, + [1084] = {.lex_state = 157}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, + [1086] = {.lex_state = 160}, + [1087] = {.lex_state = 160}, + [1088] = {.lex_state = 159}, + [1089] = {.lex_state = 160}, + [1090] = {.lex_state = 142}, + [1091] = {.lex_state = 145}, [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 144}, - [1095] = {.lex_state = 144}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 147}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 162}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 171}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 145}, + [1096] = {.lex_state = 145}, + [1097] = {.lex_state = 160}, + [1098] = {.lex_state = 160}, + [1099] = {.lex_state = 145}, + [1100] = {.lex_state = 157}, + [1101] = {.lex_state = 159}, + [1102] = {.lex_state = 145}, + [1103] = {.lex_state = 159}, + [1104] = {.lex_state = 157}, + [1105] = {.lex_state = 160}, + [1106] = {.lex_state = 160}, [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 153}, + [1108] = {.lex_state = 160}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 158}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 159}, + [1113] = {.lex_state = 145}, + [1114] = {.lex_state = 145}, + [1115] = {.lex_state = 145}, + [1116] = {.lex_state = 159}, [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 144}, - [1121] = {.lex_state = 147}, + [1119] = {.lex_state = 160}, + [1120] = {.lex_state = 145}, + [1121] = {.lex_state = 145}, [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 144}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, + [1123] = {.lex_state = 145}, + [1124] = {.lex_state = 145}, + [1125] = {.lex_state = 160}, [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, + [1128] = {.lex_state = 145}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 144}, + [1130] = {.lex_state = 145, .external_lex_state = 1}, [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 171}, - [1134] = {.lex_state = 144}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, + [1132] = {.lex_state = 157}, + [1133] = {.lex_state = 160}, + [1134] = {.lex_state = 145}, + [1135] = {.lex_state = 145}, + [1136] = {.lex_state = 142}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 171}, + [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 144}, - [1142] = {.lex_state = 144}, - [1143] = {.lex_state = 171}, - [1144] = {.lex_state = 144}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 145}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 147}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 147}, - [1151] = {.lex_state = 162}, + [1150] = {.lex_state = 160}, + [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 162}, - [1154] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 142}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 147}, + [1156] = {.lex_state = 142}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 144}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 162}, - [1162] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 145}, + [1161] = {.lex_state = 142}, + [1162] = {.lex_state = 142}, [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 144}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, + [1167] = {.lex_state = 145}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, + [1172] = {.lex_state = 157}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, + [1174] = {.lex_state = 151}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 142}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 162}, - [1186] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 142}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 162}, + [1188] = {.lex_state = 145}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 144}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 142}, + [1192] = {.lex_state = 142}, [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, + [1194] = {.lex_state = 142}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 144}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 162}, - [1199] = {.lex_state = 162}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 142}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 142}, + [1201] = {.lex_state = 142}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 162}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 162}, + [1207] = {.lex_state = 142}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 171}, - [1210] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 142}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 144}, - [1213] = {.lex_state = 162}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 162}, - [1218] = {.lex_state = 0}, + [1217] = {.lex_state = 160}, + [1218] = {.lex_state = 142}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 162}, - [1221] = {.lex_state = 0}, + [1220] = {.lex_state = 145}, + [1221] = {.lex_state = 145}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 162}, - [1224] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 142}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 144}, + [1226] = {.lex_state = 160}, + [1227] = {.lex_state = 145}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 147}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 162}, + [1229] = {.lex_state = 145}, + [1230] = {.lex_state = 142}, + [1231] = {.lex_state = 142}, + [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, + [1236] = {.lex_state = 169}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 145}, [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 162}, + [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 147}, - [1243] = {.lex_state = 144}, - [1244] = {.lex_state = 171}, + [1242] = {.lex_state = 160}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 162}, + [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 162}, + [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 171}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 171}, + [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, + [1261] = {.lex_state = 142}, [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, + [1266] = {.lex_state = 160}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 162}, + [1270] = {.lex_state = 142}, [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 162}, + [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 162}, + [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 162}, + [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 147}, + [1279] = {.lex_state = 142}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 144}, - [1282] = {.lex_state = 171}, - [1283] = {.lex_state = 162}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 169}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, + [1287] = {.lex_state = 160}, [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 162}, + [1289] = {.lex_state = 145}, [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 162}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 0}, + [1291] = {.lex_state = 145}, + [1292] = {.lex_state = 142}, + [1293] = {.lex_state = 169}, [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, + [1295] = {.lex_state = 142}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, + [1298] = {.lex_state = 169}, [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 171}, + [1300] = {.lex_state = 145}, + [1301] = {.lex_state = 160}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 162}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 162}, + [1304] = {.lex_state = 160}, + [1305] = {.lex_state = 160}, + [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 162}, + [1308] = {.lex_state = 160}, + [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 144}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 160}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 162}, + [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 162}, - [1320] = {.lex_state = 147}, - [1321] = {.lex_state = 162}, - [1322] = {.lex_state = 144}, + [1318] = {.lex_state = 160}, + [1319] = {.lex_state = 169}, + [1320] = {.lex_state = 169}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 147}, - [1326] = {.lex_state = 144}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 160}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 144}, - [1332] = {.lex_state = 144}, + [1331] = {.lex_state = 0}, + [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 = 0}, - [1339] = {.lex_state = 0}, + [1339] = {.lex_state = 160}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, + [1341] = {.lex_state = 160}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 144}, + [1347] = {.lex_state = 0}, [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 144}, - [1353] = {.lex_state = 162}, + [1352] = {.lex_state = 145}, + [1353] = {.lex_state = 142}, [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, [1356] = {.lex_state = 0}, @@ -6698,81 +6706,204 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 144}, + [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, + [1365] = {.lex_state = 169}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 144}, + [1371] = {.lex_state = 169}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, + [1378] = {.lex_state = 142}, + [1379] = {.lex_state = 169}, + [1380] = {.lex_state = 142}, [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, + [1382] = {.lex_state = 160}, + [1383] = {.lex_state = 160}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, + [1387] = {.lex_state = 160}, + [1388] = {.lex_state = 160}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 144}, - [1392] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 160}, [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 144}, + [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, + [1400] = {.lex_state = 145}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 162}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 147}, - [1406] = {.lex_state = 147}, - [1407] = {.lex_state = 144}, - [1408] = {.lex_state = 147}, - [1409] = {.lex_state = 0}, + [1402] = {.lex_state = 160}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 160}, + [1405] = {.lex_state = 160}, + [1406] = {.lex_state = 160}, + [1407] = {.lex_state = 145}, + [1408] = {.lex_state = 142}, + [1409] = {.lex_state = 160}, [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, + [1411] = {.lex_state = 160}, + [1412] = {.lex_state = 169}, + [1413] = {.lex_state = 160}, + [1414] = {.lex_state = 160}, + [1415] = {.lex_state = 160}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 144}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, + [1422] = {.lex_state = 160}, [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, + [1424] = {.lex_state = 160}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 144}, - [1428] = {.lex_state = 0}, + [1426] = {.lex_state = 160}, + [1427] = {.lex_state = 142}, + [1428] = {.lex_state = 145}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, + [1431] = {.lex_state = 169}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 144}, - [1434] = {.lex_state = 144}, + [1433] = {.lex_state = 160}, + [1434] = {.lex_state = 142}, [1435] = {.lex_state = 0}, [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 142}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 142}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 142}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 142}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 142}, + [1470] = {.lex_state = 142}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 145}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 160}, + [1479] = {.lex_state = 142}, + [1480] = {.lex_state = 142}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 142}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 142}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 142}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 142}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 160}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 145}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 145}, + [1523] = {.lex_state = 142}, + [1524] = {.lex_state = 145}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 142}, + [1531] = {.lex_state = 142}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 142}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 0}, }; enum { @@ -6887,7 +7018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1402), + [sym_source_file] = STATE(1510), [sym__module_statement] = STATE(3), [sym_target_group] = STATE(3), [sym_attribute] = STATE(3), @@ -6897,37 +7028,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(3), [sym_function] = STATE(3), [aux_sym__statement_seq] = STATE(5), - [sym__statement] = STATE(461), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(73), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_tuple] = STATE(72), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(35), - [sym_case] = STATE(35), - [sym_let_assert] = STATE(461), - [sym_let] = STATE(461), - [sym_use] = STATE(461), - [sym_assert] = STATE(97), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(73), - [sym__maybe_tuple_expression] = STATE(1401), - [sym_tuple_access] = STATE(35), - [sym__maybe_record_expression] = STATE(1400), - [sym_field_access] = STATE(35), - [sym__maybe_function_expression] = STATE(1241), - [sym_function_call] = STATE(35), + [sym__statement] = STATE(533), + [sym__expression] = STATE(113), + [sym_binary_expression] = STATE(113), + [sym__expression_unit] = STATE(113), + [sym_record] = STATE(75), + [sym_todo] = STATE(113), + [sym_panic] = STATE(113), + [sym_tuple] = STATE(74), + [sym_list] = STATE(113), + [sym__expression_bit_string] = STATE(113), + [sym_anonymous_function] = STATE(73), + [sym_block] = STATE(36), + [sym_case] = STATE(36), + [sym_let_assert] = STATE(533), + [sym_let] = STATE(533), + [sym_use] = STATE(533), + [sym_assert] = STATE(113), + [sym_boolean_negation] = STATE(113), + [sym_integer_negation] = STATE(113), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1507), + [sym_tuple_access] = STATE(36), + [sym__maybe_record_expression] = STATE(1506), + [sym_field_access] = STATE(36), + [sym__maybe_function_expression] = STATE(1368), + [sym_function_call] = STATE(36), [sym_type_definition] = STATE(3), [sym_type_alias] = STATE(3), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(39), + [sym_string] = STATE(113), + [sym_integer] = STATE(113), + [sym_identifier] = STATE(40), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(3), @@ -6975,37 +7106,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(2), [sym_function] = STATE(2), [aux_sym__statement_seq] = STATE(5), - [sym__statement] = STATE(461), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(73), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_tuple] = STATE(72), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(35), - [sym_case] = STATE(35), - [sym_let_assert] = STATE(461), - [sym_let] = STATE(461), - [sym_use] = STATE(461), - [sym_assert] = STATE(97), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(73), - [sym__maybe_tuple_expression] = STATE(1401), - [sym_tuple_access] = STATE(35), - [sym__maybe_record_expression] = STATE(1400), - [sym_field_access] = STATE(35), - [sym__maybe_function_expression] = STATE(1241), - [sym_function_call] = STATE(35), + [sym__statement] = STATE(533), + [sym__expression] = STATE(113), + [sym_binary_expression] = STATE(113), + [sym__expression_unit] = STATE(113), + [sym_record] = STATE(75), + [sym_todo] = STATE(113), + [sym_panic] = STATE(113), + [sym_tuple] = STATE(74), + [sym_list] = STATE(113), + [sym__expression_bit_string] = STATE(113), + [sym_anonymous_function] = STATE(73), + [sym_block] = STATE(36), + [sym_case] = STATE(36), + [sym_let_assert] = STATE(533), + [sym_let] = STATE(533), + [sym_use] = STATE(533), + [sym_assert] = STATE(113), + [sym_boolean_negation] = STATE(113), + [sym_integer_negation] = STATE(113), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1507), + [sym_tuple_access] = STATE(36), + [sym__maybe_record_expression] = STATE(1506), + [sym_field_access] = STATE(36), + [sym__maybe_function_expression] = STATE(1368), + [sym_function_call] = STATE(36), [sym_type_definition] = STATE(2), [sym_type_alias] = STATE(2), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(39), + [sym_string] = STATE(113), + [sym_integer] = STATE(113), + [sym_identifier] = STATE(40), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(2), @@ -7053,37 +7184,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(2), [sym_function] = STATE(2), [aux_sym__statement_seq] = STATE(5), - [sym__statement] = STATE(461), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(73), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_tuple] = STATE(72), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(35), - [sym_case] = STATE(35), - [sym_let_assert] = STATE(461), - [sym_let] = STATE(461), - [sym_use] = STATE(461), - [sym_assert] = STATE(97), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(73), - [sym__maybe_tuple_expression] = STATE(1401), - [sym_tuple_access] = STATE(35), - [sym__maybe_record_expression] = STATE(1400), - [sym_field_access] = STATE(35), - [sym__maybe_function_expression] = STATE(1241), - [sym_function_call] = STATE(35), + [sym__statement] = STATE(533), + [sym__expression] = STATE(113), + [sym_binary_expression] = STATE(113), + [sym__expression_unit] = STATE(113), + [sym_record] = STATE(75), + [sym_todo] = STATE(113), + [sym_panic] = STATE(113), + [sym_tuple] = STATE(74), + [sym_list] = STATE(113), + [sym__expression_bit_string] = STATE(113), + [sym_anonymous_function] = STATE(73), + [sym_block] = STATE(36), + [sym_case] = STATE(36), + [sym_let_assert] = STATE(533), + [sym_let] = STATE(533), + [sym_use] = STATE(533), + [sym_assert] = STATE(113), + [sym_boolean_negation] = STATE(113), + [sym_integer_negation] = STATE(113), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1507), + [sym_tuple_access] = STATE(36), + [sym__maybe_record_expression] = STATE(1506), + [sym_field_access] = STATE(36), + [sym__maybe_function_expression] = STATE(1368), + [sym_function_call] = STATE(36), [sym_type_definition] = STATE(2), [sym_type_alias] = STATE(2), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(39), + [sym_string] = STATE(113), + [sym_integer] = STATE(113), + [sym_identifier] = STATE(40), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(2), @@ -7123,35 +7254,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [aux_sym__statement_seq] = STATE(4), - [sym__statement] = STATE(461), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(73), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_tuple] = STATE(72), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(35), - [sym_case] = STATE(35), - [sym_let_assert] = STATE(461), - [sym_let] = STATE(461), - [sym_use] = STATE(461), - [sym_assert] = STATE(97), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(73), - [sym__maybe_tuple_expression] = STATE(1401), - [sym_tuple_access] = STATE(35), - [sym__maybe_record_expression] = STATE(1400), - [sym_field_access] = STATE(35), - [sym__maybe_function_expression] = STATE(1241), - [sym_function_call] = STATE(35), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(39), + [sym__statement] = STATE(533), + [sym__expression] = STATE(113), + [sym_binary_expression] = STATE(113), + [sym__expression_unit] = STATE(113), + [sym_record] = STATE(75), + [sym_todo] = STATE(113), + [sym_panic] = STATE(113), + [sym_tuple] = STATE(74), + [sym_list] = STATE(113), + [sym__expression_bit_string] = STATE(113), + [sym_anonymous_function] = STATE(73), + [sym_block] = STATE(36), + [sym_case] = STATE(36), + [sym_let_assert] = STATE(533), + [sym_let] = STATE(533), + [sym_use] = STATE(533), + [sym_assert] = STATE(113), + [sym_boolean_negation] = STATE(113), + [sym_integer_negation] = STATE(113), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1507), + [sym_tuple_access] = STATE(36), + [sym__maybe_record_expression] = STATE(1506), + [sym_field_access] = STATE(36), + [sym__maybe_function_expression] = STATE(1368), + [sym_function_call] = STATE(36), + [sym_string] = STATE(113), + [sym_integer] = STATE(113), + [sym_identifier] = STATE(40), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [ts_builtin_sym_end] = ACTIONS(148), @@ -7190,35 +7321,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [aux_sym__statement_seq] = STATE(4), - [sym__statement] = STATE(461), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym__expression_unit] = STATE(97), - [sym_record] = STATE(73), - [sym_todo] = STATE(97), - [sym_panic] = STATE(97), - [sym_tuple] = STATE(72), - [sym_list] = STATE(97), - [sym__expression_bit_string] = STATE(97), - [sym_anonymous_function] = STATE(71), - [sym_block] = STATE(35), - [sym_case] = STATE(35), - [sym_let_assert] = STATE(461), - [sym_let] = STATE(461), - [sym_use] = STATE(461), - [sym_assert] = STATE(97), - [sym_boolean_negation] = STATE(97), - [sym_integer_negation] = STATE(97), - [sym_record_update] = STATE(73), - [sym__maybe_tuple_expression] = STATE(1401), - [sym_tuple_access] = STATE(35), - [sym__maybe_record_expression] = STATE(1400), - [sym_field_access] = STATE(35), - [sym__maybe_function_expression] = STATE(1241), - [sym_function_call] = STATE(35), - [sym_string] = STATE(97), - [sym_integer] = STATE(97), - [sym_identifier] = STATE(39), + [sym__statement] = STATE(533), + [sym__expression] = STATE(113), + [sym_binary_expression] = STATE(113), + [sym__expression_unit] = STATE(113), + [sym_record] = STATE(75), + [sym_todo] = STATE(113), + [sym_panic] = STATE(113), + [sym_tuple] = STATE(74), + [sym_list] = STATE(113), + [sym__expression_bit_string] = STATE(113), + [sym_anonymous_function] = STATE(73), + [sym_block] = STATE(36), + [sym_case] = STATE(36), + [sym_let_assert] = STATE(533), + [sym_let] = STATE(533), + [sym_use] = STATE(533), + [sym_assert] = STATE(113), + [sym_boolean_negation] = STATE(113), + [sym_integer_negation] = STATE(113), + [sym_record_update] = STATE(75), + [sym__maybe_tuple_expression] = STATE(1507), + [sym_tuple_access] = STATE(36), + [sym__maybe_record_expression] = STATE(1506), + [sym_field_access] = STATE(36), + [sym__maybe_function_expression] = STATE(1368), + [sym_function_call] = STATE(36), + [sym_string] = STATE(113), + [sym_integer] = STATE(113), + [sym_identifier] = STATE(40), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [ts_builtin_sym_end] = ACTIONS(209), @@ -7263,7 +7394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(274), 1, anon_sym_LPAREN, - STATE(70), 1, + STATE(79), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -7323,86 +7454,148 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [71] = 34, + [71] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(278), 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(276), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(278), 1, - anon_sym_RBRACE, - ACTIONS(280), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, 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, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [137] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_RBRACE, + ACTIONS(284), 1, + anon_sym_POUND, ACTIONS(286), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(288), 1, - anon_sym_fn, + anon_sym_LT_LT, ACTIONS(290), 1, - anon_sym_todo, + anon_sym_DASH, ACTIONS(292), 1, - anon_sym_panic, + anon_sym_fn, ACTIONS(294), 1, - anon_sym_case, + anon_sym_todo, ACTIONS(296), 1, - anon_sym_let, + anon_sym_panic, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(300), 1, - anon_sym_use, + anon_sym_let, ACTIONS(302), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(304), 1, - anon_sym_DQUOTE, + anon_sym_use, ACTIONS(306), 1, - sym_float, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(29), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7415,13 +7608,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [197] = 4, + [263] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(318), 25, + ACTIONS(322), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7447,7 +7640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(316), 29, + ACTIONS(320), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7477,75 +7670,289 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [263] = 4, + [329] = 34, ACTIONS(3), 1, sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(324), 1, + anon_sym_RBRACE, + STATE(34), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(322), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [455] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, anon_sym_DASH, + ACTIONS(292), 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(294), 1, anon_sym_todo, + ACTIONS(296), 1, anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, + ACTIONS(300), 1, anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, + ACTIONS(304), 1, anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(320), 29, - ts_builtin_sym_end, + ACTIONS(318), 1, + sym__upname, + ACTIONS(326), 1, + anon_sym_RBRACE, + STATE(56), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [581] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 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(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(328), 1, + anon_sym_RBRACE, + STATE(34), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [329] = 4, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [707] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 25, + ACTIONS(332), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7571,7 +7978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(324), 29, + ACTIONS(330), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7601,13 +8008,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [395] = 4, + [773] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 25, + ACTIONS(336), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7633,7 +8040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(328), 29, + ACTIONS(334), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7663,13 +8070,105 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [461] = 4, + [839] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(338), 1, + anon_sym_RBRACE, + STATE(34), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [965] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(334), 25, + ACTIONS(342), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7695,7 +8194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(332), 29, + ACTIONS(340), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -7725,13 +8224,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [527] = 4, + [1031] = 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, - ACTIONS(338), 25, + ACTIONS(346), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7757,12 +8260,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(336), 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, @@ -7787,86 +8288,86 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [593] = 34, + [1101] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(340), 1, + ACTIONS(352), 1, anon_sym_RBRACE, - STATE(18), 1, + STATE(15), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7879,86 +8380,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [719] = 34, + [1227] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(342), 1, + ACTIONS(354), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7971,150 +8472,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [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, - ACTIONS(346), 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(344), 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, - [915] = 34, + [1353] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(352), 1, + ACTIONS(356), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8127,86 +8564,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1041] = 34, + [1479] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(354), 1, + ACTIONS(358), 1, anon_sym_RBRACE, STATE(22), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8219,210 +8656,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1167] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(358), 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(356), 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, - [1233] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(362), 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(360), 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, - [1299] = 34, + [1605] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(364), 1, + ACTIONS(360), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8435,86 +8748,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1425] = 34, + [1731] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(148), 1, - anon_sym_RBRACE, - ACTIONS(366), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(369), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(372), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(375), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(378), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(381), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(384), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(387), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(390), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(393), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(396), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(399), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(402), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(405), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(408), 1, + ACTIONS(310), 1, sym_float, - ACTIONS(414), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(417), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(420), 1, + ACTIONS(318), 1, sym__upname, - STATE(22), 1, + ACTIONS(362), 1, + anon_sym_RBRACE, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(411), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8527,86 +8840,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1551] = 34, + [1857] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(423), 1, + ACTIONS(364), 1, anon_sym_RBRACE, - STATE(15), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8619,178 +8932,148 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1677] = 34, + [1983] = 4, 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, + 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, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 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(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_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(312), 1, sym__name, - ACTIONS(314), 1, - sym__upname, - ACTIONS(425), 1, - anon_sym_RBRACE, - STATE(22), 1, - aux_sym__statement_seq, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 2, - sym_record, - sym_record_update, - ACTIONS(308), 3, + ACTIONS(366), 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(698), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(294), 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, - [1803] = 34, + sym__upname, + [2049] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(427), 1, + ACTIONS(370), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8803,13 +9086,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [1929] = 4, + [2175] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 25, + ACTIONS(374), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8835,7 +9118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(429), 29, + ACTIONS(372), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8865,13 +9148,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1995] = 4, + [2241] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 25, + ACTIONS(378), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8897,7 +9180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(433), 29, + ACTIONS(376), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8927,13 +9210,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2061] = 4, + [2307] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(439), 25, + ACTIONS(382), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8959,7 +9242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(437), 29, + ACTIONS(380), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -8989,86 +9272,86 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2127] = 34, + [2373] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(441), 1, + ACTIONS(384), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9081,131 +9364,39 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2253] = 34, + [2499] = 4, 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, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(388), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 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(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_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(312), 1, sym__name, - ACTIONS(314), 1, - sym__upname, - ACTIONS(443), 1, - anon_sym_RBRACE, - STATE(22), 1, - aux_sym__statement_seq, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 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(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(294), 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, - [2379] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(447), 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(445), 29, + ACTIONS(386), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9235,86 +9426,86 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2445] = 34, + [2565] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(449), 1, + ACTIONS(390), 1, anon_sym_RBRACE, - STATE(48), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9327,86 +9518,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2571] = 34, + [2691] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(451), 1, + ACTIONS(392), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9419,86 +9610,178 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2697] = 34, + [2817] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(148), 1, + anon_sym_RBRACE, + ACTIONS(394), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(397), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(400), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(403), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(406), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(409), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(412), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(415), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(418), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(421), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(424), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(427), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(430), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(433), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, + ACTIONS(436), 1, sym_float, - ACTIONS(310), 1, + ACTIONS(442), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(445), 1, sym__name, + ACTIONS(448), 1, + sym__upname, + STATE(34), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(439), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [2943] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(310), 1, + sym_float, ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, sym__upname, - ACTIONS(453), 1, + ACTIONS(451), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(42), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9511,17 +9794,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [2823] = 6, + [3069] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, + ACTIONS(457), 1, anon_sym_LPAREN, - ACTIONS(461), 1, + ACTIONS(459), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 25, + ACTIONS(455), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9547,7 +9830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(455), 27, + ACTIONS(453), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9575,13 +9858,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2893] = 4, + [3139] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(466), 25, + ACTIONS(464), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9607,7 +9890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(464), 29, + ACTIONS(462), 29, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -9637,86 +9920,86 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2959] = 34, + [3205] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(468), 1, + ACTIONS(466), 1, anon_sym_RBRACE, - STATE(50), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9729,139 +10012,109 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3085] = 4, + [3331] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(472), 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(470), 29, - ts_builtin_sym_end, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3151] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(457), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(290), 1, anon_sym_DASH, + ACTIONS(292), 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(294), 1, anon_sym_todo, + ACTIONS(296), 1, anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, + ACTIONS(300), 1, anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, + ACTIONS(304), 1, anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(455), 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, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(468), 1, + anon_sym_RBRACE, + STATE(34), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [3221] = 4, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [3457] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(470), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 25, + ACTIONS(455), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9887,12 +10140,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(478), 29, + ACTIONS(453), 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, @@ -9917,86 +10168,86 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3287] = 34, + [3527] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(482), 1, + ACTIONS(474), 1, anon_sym_RBRACE, - STATE(21), 1, + STATE(43), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10009,86 +10260,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3413] = 34, + [3653] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(484), 1, + ACTIONS(476), 1, anon_sym_RBRACE, - STATE(25), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10101,86 +10352,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3539] = 34, + [3779] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(486), 1, + ACTIONS(478), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10193,86 +10444,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3665] = 34, + [3905] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(488), 1, + ACTIONS(480), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10285,86 +10536,148 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3791] = 34, + [4031] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 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(482), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(280), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, 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, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4097] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, ACTIONS(286), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(288), 1, - anon_sym_fn, + anon_sym_LT_LT, ACTIONS(290), 1, - anon_sym_todo, + anon_sym_DASH, ACTIONS(292), 1, - anon_sym_panic, + anon_sym_fn, ACTIONS(294), 1, - anon_sym_case, + anon_sym_todo, ACTIONS(296), 1, - anon_sym_let, + anon_sym_panic, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(300), 1, - anon_sym_use, + anon_sym_let, ACTIONS(302), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(304), 1, - anon_sym_DQUOTE, + anon_sym_use, ACTIONS(306), 1, - sym_float, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(490), 1, + ACTIONS(486), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10377,86 +10690,148 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [3917] = 34, + [4223] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(490), 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(488), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(280), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, 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, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4289] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, ACTIONS(286), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(288), 1, - anon_sym_fn, + anon_sym_LT_LT, ACTIONS(290), 1, - anon_sym_todo, + anon_sym_DASH, ACTIONS(292), 1, - anon_sym_panic, + anon_sym_fn, ACTIONS(294), 1, - anon_sym_case, + anon_sym_todo, ACTIONS(296), 1, - anon_sym_let, + anon_sym_panic, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(300), 1, - anon_sym_use, + anon_sym_let, ACTIONS(302), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(304), 1, - anon_sym_DQUOTE, + anon_sym_use, ACTIONS(306), 1, - sym_float, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, ACTIONS(492), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(33), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10469,86 +10844,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4043] = 34, + [4415] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, ACTIONS(494), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10561,86 +10936,148 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4169] = 34, + [4541] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(498), 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(496), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(280), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, 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, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4607] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, ACTIONS(286), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(288), 1, - anon_sym_fn, + anon_sym_LT_LT, ACTIONS(290), 1, - anon_sym_todo, + anon_sym_DASH, ACTIONS(292), 1, - anon_sym_panic, + anon_sym_fn, ACTIONS(294), 1, - anon_sym_case, + anon_sym_todo, ACTIONS(296), 1, - anon_sym_let, + anon_sym_panic, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(300), 1, - anon_sym_use, + anon_sym_let, ACTIONS(302), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(304), 1, - anon_sym_DQUOTE, + anon_sym_use, ACTIONS(306), 1, - sym_float, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(496), 1, + ACTIONS(500), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(39), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10653,86 +11090,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4295] = 34, + [4733] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(498), 1, + ACTIONS(502), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(54), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10745,86 +11182,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4421] = 34, + [4859] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(500), 1, + ACTIONS(504), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10837,148 +11274,86 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4547] = 4, + [4985] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(504), 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(502), 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, - [4613] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, ACTIONS(506), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10991,178 +11366,148 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4739] = 34, + [5111] = 4, 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, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(510), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 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(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_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(312), 1, sym__name, - ACTIONS(314), 1, - sym__upname, - ACTIONS(508), 1, - anon_sym_RBRACE, - STATE(22), 1, - aux_sym__statement_seq, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 2, - sym_record, - sym_record_update, - ACTIONS(308), 3, + ACTIONS(508), 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(698), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(294), 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, - [4865] = 34, + sym__upname, + [5177] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(510), 1, + ACTIONS(512), 1, anon_sym_RBRACE, - STATE(52), 1, + STATE(34), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11175,174 +11520,146 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [4991] = 33, + [5303] = 4, 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, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(516), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 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(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_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(312), 1, sym__name, - ACTIONS(314), 1, - sym__upname, - STATE(17), 1, - aux_sym__statement_seq, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 2, - sym_record, - sym_record_update, - ACTIONS(308), 3, + ACTIONS(514), 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(698), 4, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(294), 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, - [5114] = 33, + sym__upname, + [5369] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(24), 1, + STATE(12), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11355,13 +11672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5237] = 4, + [5492] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 25, + ACTIONS(520), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11387,7 +11704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(512), 28, + ACTIONS(518), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11416,84 +11733,84 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5302] = 33, + [5557] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(45), 1, + STATE(32), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11506,13 +11823,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5425] = 4, + [5680] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(518), 25, + ACTIONS(524), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11538,11 +11855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(516), 28, + ACTIONS(522), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11567,84 +11884,84 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5490] = 33, + [5745] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(49), 1, + STATE(23), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11657,84 +11974,84 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5613] = 33, + [5868] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(53), 1, + STATE(26), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11747,174 +12064,84 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5736] = 33, + [5991] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 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(44), 1, - aux_sym__statement_seq, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 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(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(294), 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, - [5859] = 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, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(46), 1, + STATE(53), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11927,13 +12154,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [5982] = 4, + [6114] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(522), 25, + ACTIONS(528), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11959,7 +12186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(520), 28, + ACTIONS(526), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -11988,84 +12215,84 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6047] = 33, + [6179] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(33), 1, + STATE(8), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -12078,84 +12305,84 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [6170] = 33, + [6302] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(30), 1, + STATE(44), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -12168,130 +12395,187 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [6293] = 4, + [6425] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(435), 20, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, anon_sym_DASH, + ACTIONS(292), 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(294), 1, anon_sym_todo, + ACTIONS(296), 1, anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, + ACTIONS(300), 1, anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, + ACTIONS(304), 1, anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(433), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_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, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + STATE(24), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6358] = 5, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [6548] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(528), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(526), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, anon_sym_DASH, + ACTIONS(292), 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(294), 1, anon_sym_todo, + ACTIONS(296), 1, anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, + ACTIONS(300), 1, anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, + ACTIONS(304), 1, anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(524), 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, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + STATE(10), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6425] = 4, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [6671] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -12352,84 +12636,108 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6490] = 4, + [6736] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(536), 25, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, anon_sym_DASH, + ACTIONS(292), 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(294), 1, anon_sym_todo, + ACTIONS(296), 1, anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, + ACTIONS(300), 1, anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, + ACTIONS(304), 1, anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(534), 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, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + STATE(49), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6555] = 5, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [6859] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(378), 20, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_EQ, anon_sym_DASH, anon_sym_fn, - anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12443,17 +12751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(455), 27, - ts_builtin_sym_end, + ACTIONS(376), 33, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12469,21 +12780,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6622] = 5, + [6924] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(538), 1, - anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 25, + ACTIONS(455), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12509,7 +12821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(455), 27, + ACTIONS(453), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12537,15 +12849,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6689] = 5, + [6991] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(540), 1, + ACTIONS(534), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 25, + ACTIONS(455), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12571,7 +12883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(455), 27, + ACTIONS(453), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -12599,13 +12911,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6756] = 4, + [7058] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(536), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 25, + ACTIONS(455), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12631,11 +12945,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(542), 28, + ACTIONS(453), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12660,206 +12973,84 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6821] = 4, + [7125] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(548), 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(546), 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, - [6886] = 4, - 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, - 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(550), 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, - [6951] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(34), 1, + STATE(30), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -12872,84 +13063,84 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7074] = 33, + [7248] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(47), 1, + STATE(38), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -12962,84 +13153,84 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7197] = 33, + [7371] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(296), 1, + ACTIONS(300), 1, anon_sym_let, - ACTIONS(298), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(300), 1, + ACTIONS(304), 1, anon_sym_use, - ACTIONS(302), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(306), 1, - sym_float, ACTIONS(310), 1, + sym_float, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(43), 1, + STATE(46), 1, aux_sym__statement_seq, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 4, + STATE(805), 4, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(294), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13052,13 +13243,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7320] = 4, + [7494] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(556), 25, + ACTIONS(540), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13084,10 +13275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(554), 27, + 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, @@ -13112,65 +13304,179 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7384] = 14, + [7559] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, - anon_sym_PIPE_GT, + ACTIONS(546), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(544), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(572), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 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(542), 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(580), 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(558), 12, - ts_builtin_sym_end, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [7626] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(310), 1, sym_float, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + STATE(20), 1, + aux_sym__statement_seq, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(560), 17, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(339), 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, + [7749] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(550), 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, @@ -13182,85 +13488,113 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7468] = 35, + ACTIONS(548), 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, + [7814] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(584), 1, - anon_sym_RPAREN, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(600), 1, - anon_sym_DOT_DOT, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(300), 1, + anon_sym_let, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(304), 1, + anon_sym_use, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(310), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(616), 1, - sym__discard_name, - ACTIONS(618), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - STATE(407), 1, + STATE(19), 1, + aux_sym__statement_seq, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1114), 1, - sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, - STATE(1422), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(805), 4, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(339), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13273,30 +13607,43 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [7594] = 8, + [7937] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(554), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 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(578), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(580), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(622), 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(552), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -13309,23 +13656,39 @@ 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(624), 21, + [8002] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(558), 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, @@ -13337,148 +13700,42 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7666] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(566), 1, + ACTIONS(556), 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, - ACTIONS(568), 1, anon_sym_AMP_AMP, - ACTIONS(576), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(562), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(578), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(572), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(574), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - 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_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(628), 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, - [7750] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(576), 1, anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(562), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(578), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(580), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(622), 20, - 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_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(624), 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, - [7824] = 4, + [8067] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(632), 25, + ACTIONS(563), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13504,7 +13761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(630), 27, + ACTIONS(560), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13532,13 +13789,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7888] = 4, + [8131] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(636), 25, + ACTIONS(568), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13564,7 +13821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(634), 27, + ACTIONS(566), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13592,39 +13849,39 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7952] = 11, + [8195] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(576), 1, + ACTIONS(582), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, + ACTIONS(578), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 4, + ACTIONS(580), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(622), 16, + ACTIONS(570), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13641,7 +13898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(624), 17, + ACTIONS(572), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -13659,112 +13916,284 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8030] = 14, + [8273] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(590), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(572), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 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(588), 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(580), 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(638), 12, - ts_builtin_sym_end, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [8337] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(594), 1, + anon_sym_RPAREN, + ACTIONS(596), 1, anon_sym_POUND, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(610), 1, + anon_sym_DOT_DOT, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, + ACTIONS(620), 1, sym_float, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1234), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(640), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [8463] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, anon_sym_fn, - anon_sym_external, + ACTIONS(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, sym__name, - [8114] = 12, + ACTIONS(630), 1, + sym__upname, + ACTIONS(632), 1, + anon_sym_RPAREN, + ACTIONS(634), 1, + anon_sym_DOT_DOT, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1185), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [8589] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(576), 1, + ACTIONS(582), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 4, + ACTIONS(580), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(622), 14, + ACTIONS(570), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13779,7 +14208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(624), 17, + ACTIONS(572), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -13797,39 +14226,27 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8194] = 4, + [8669] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(574), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(576), 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(642), 27, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(586), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(570), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13845,56 +14262,72 @@ 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, - [8258] = 13, + ACTIONS(572), 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, + [8741] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, + ACTIONS(582), 1, anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 4, + ACTIONS(580), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(622), 13, + ACTIONS(570), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -13908,7 +14341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(624), 17, + ACTIONS(572), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -13926,112 +14359,21 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8340] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, - anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, - anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, - anon_sym_case, - ACTIONS(604), 1, - anon_sym_assert, - ACTIONS(606), 1, - anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(610), 1, - sym_float, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(616), 1, - sym__discard_name, - ACTIONS(618), 1, - sym__name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(646), 1, - anon_sym_RPAREN, - ACTIONS(648), 1, - anon_sym_DOT_DOT, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1168), 1, - sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - STATE(1422), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(642), 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, - [8466] = 6, + [8823] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(622), 23, + ACTIONS(570), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14055,7 +14397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(624), 23, + ACTIONS(572), 23, anon_sym_if, anon_sym_import, anon_sym_type, @@ -14079,13 +14421,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8534] = 4, + [8891] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 25, + ACTIONS(642), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14111,7 +14453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(650), 27, + ACTIONS(640), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14139,156 +14481,180 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8598] = 35, + [8955] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(572), 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(570), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(586), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(588), 1, anon_sym_LBRACK, - ACTIONS(590), 1, anon_sym_LT_LT, - ACTIONS(592), 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, + [9019] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(646), 25, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(610), 1, - sym_float, - ACTIONS(614), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(616), 1, - sym__discard_name, - ACTIONS(618), 1, sym__name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(654), 1, - anon_sym_RPAREN, - ACTIONS(656), 1, - anon_sym_DOT_DOT, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1088), 1, - sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - STATE(1422), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, + ACTIONS(644), 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(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(642), 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, - [8724] = 14, + sym__upname, + [9083] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, + ACTIONS(582), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(574), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(658), 12, + ACTIONS(570), 20, 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_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(660), 17, + ACTIONS(572), 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, @@ -14300,87 +14666,65 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8808] = 4, + [9157] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(582), 1, + anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 25, - anon_sym_if, - anon_sym_import, + ACTIONS(574), 2, anon_sym_SLASH, - anon_sym_type, - anon_sym_const, + anon_sym_STAR, + ACTIONS(576), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, + anon_sym_PLUS, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 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(662), 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(580), 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(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(648), 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, - [8872] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(624), 25, + ACTIONS(650), 17, 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, @@ -14392,55 +14736,65 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(622), 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, + [9241] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(582), 1, + anon_sym_PIPE_GT, + ACTIONS(638), 1, anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(576), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(636), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(578), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(580), 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(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(654), 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, - [8936] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(668), 25, + ACTIONS(656), 17, 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, @@ -14452,41 +14806,83 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(666), 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, + [9325] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(582), 1, + anon_sym_PIPE_GT, + ACTIONS(638), 1, anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(576), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(636), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(578), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(580), 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(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(658), 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, - [9000] = 4, + ACTIONS(660), 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, + [9409] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 25, + ACTIONS(664), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14512,7 +14908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(670), 27, + ACTIONS(662), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14540,13 +14936,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9064] = 4, + [9473] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 25, + ACTIONS(668), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14572,7 +14968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(674), 27, + ACTIONS(666), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14600,13 +14996,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9128] = 4, + [9537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(680), 25, + ACTIONS(672), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14632,7 +15028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(678), 27, + ACTIONS(670), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14660,13 +15056,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9192] = 4, + [9601] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 25, + ACTIONS(676), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14692,7 +15088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(682), 27, + ACTIONS(674), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14720,46 +15116,46 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9256] = 14, + [9665] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, + ACTIONS(582), 1, anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 4, + ACTIONS(580), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(686), 12, + ACTIONS(678), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14772,7 +15168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(688), 17, + ACTIONS(680), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -14790,13 +15186,104 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9340] = 4, + [9749] = 35, ACTIONS(3), 1, sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + ACTIONS(682), 1, + anon_sym_RPAREN, + ACTIONS(684), 1, + anon_sym_DOT_DOT, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1216), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(692), 25, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [9875] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14822,7 +15309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(690), 27, + ACTIONS(686), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14850,13 +15337,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9404] = 4, + [9939] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(696), 25, + ACTIONS(692), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14882,7 +15369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(694), 27, + ACTIONS(690), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14910,13 +15397,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9468] = 4, + [10003] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(700), 25, + ACTIONS(696), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14942,7 +15429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(698), 27, + ACTIONS(694), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -14970,41 +15457,132 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9532] = 14, + [10067] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + ACTIONS(698), 1, + anon_sym_RPAREN, + ACTIONS(700), 1, + anon_sym_DOT_DOT, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1140), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [10193] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(582), 1, anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(574), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(564), 2, + ACTIONS(576), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, + ACTIONS(584), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(572), 4, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 4, + ACTIONS(580), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(580), 4, + ACTIONS(586), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, @@ -15040,7 +15618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9616] = 4, + [10277] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -15100,13 +15678,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9680] = 4, + [10341] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(713), 25, + ACTIONS(712), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -15160,85 +15738,215 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9744] = 35, + [10405] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(716), 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(714), 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, + [10469] = 14, ACTIONS(3), 1, sym_module_comment, ACTIONS(582), 1, + anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(576), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(580), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(586), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(718), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(586), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(588), 1, anon_sym_LBRACK, - ACTIONS(590), 1, anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(720), 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, + [10553] = 35, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(716), 1, + ACTIONS(722), 1, anon_sym_RPAREN, - ACTIONS(718), 1, + ACTIONS(724), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1160), 1, + STATE(1251), 1, sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15251,83 +15959,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [9870] = 14, + [10679] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(568), 1, - anon_sym_AMP_AMP, - ACTIONS(576), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(562), 2, + ACTIONS(728), 25, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(564), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(570), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(578), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(572), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(574), 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(726), 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(580), 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(720), 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(722), 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, - [9954] = 4, + [10743] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(726), 25, + ACTIONS(732), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -15353,7 +16051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(724), 27, + ACTIONS(730), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15381,13 +16079,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10018] = 4, + [10807] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 25, + ACTIONS(736), 25, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -15413,7 +16111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(728), 27, + ACTIONS(734), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -15441,83 +16139,153 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10082] = 34, + [10871] = 14, ACTIONS(3), 1, sym_module_comment, ACTIONS(582), 1, + anon_sym_PIPE_GT, + ACTIONS(638), 1, + anon_sym_AMP_AMP, + ACTIONS(652), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(574), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(576), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(584), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(636), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(578), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(580), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(586), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(738), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(586), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(588), 1, anon_sym_LBRACK, - ACTIONS(590), 1, anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(740), 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, + [10955] = 34, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(732), 1, + ACTIONS(742), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15530,83 +16298,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10205] = 34, + [11078] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(584), 1, - anon_sym_RPAREN, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - STATE(407), 1, + ACTIONS(698), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1114), 1, + STATE(1140), 1, sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15619,83 +16387,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10328] = 34, + [11201] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(734), 1, + ACTIONS(744), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15708,83 +16476,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10451] = 34, + [11324] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(736), 1, + ACTIONS(746), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15797,83 +16565,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10574] = 34, + [11447] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(738), 1, + ACTIONS(748), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15886,102 +16654,72 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [10697] = 34, + [11570] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(382), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(610), 1, - sym_float, - ACTIONS(614), 1, sym__decimal, - ACTIONS(616), 1, - sym__discard_name, - ACTIONS(618), 1, sym__name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(740), 1, + ACTIONS(380), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, - sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - STATE(1422), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 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(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(642), 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, - [10820] = 4, + sym__upname, + [11633] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 18, + ACTIONS(374), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16000,7 +16738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(328), 33, + ACTIONS(372), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -16034,83 +16772,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10883] = 34, + [11696] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(716), 1, + ACTIONS(750), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1160), 1, + STATE(1303), 1, sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16123,83 +16861,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11006] = 34, + [11819] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(742), 1, + ACTIONS(752), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16212,83 +16950,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11129] = 34, + [11942] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(646), 1, + ACTIONS(754), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1168), 1, + STATE(1303), 1, sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16301,83 +17039,83 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11252] = 34, + [12065] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(594), 1, + anon_sym_RPAREN, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(744), 1, - anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1234), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16390,142 +17128,172 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11375] = 4, + [12188] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(439), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, sym__name, - ACTIONS(437), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(630), 1, + sym__upname, + ACTIONS(756), 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(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1303), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [11438] = 34, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [12311] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(746), 1, + ACTIONS(758), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1303), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16538,13 +17306,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11561] = 4, + [12434] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 18, + ACTIONS(516), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16563,7 +17331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(429), 33, + ACTIONS(514), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -16597,83 +17365,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11624] = 34, + [12497] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(654), 1, + ACTIONS(760), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1088), 1, + STATE(1303), 1, sym_argument, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16686,76 +17454,191 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11747] = 4, + [12620] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(358), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, sym__name, - ACTIONS(356), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(630), 1, + sym__upname, + ACTIONS(722), 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, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1251), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [12743] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, + ACTIONS(620), 1, sym_float, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + ACTIONS(632), 1, + anon_sym_RPAREN, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1185), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [11810] = 6, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [12866] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(748), 1, - anon_sym_LPAREN, - STATE(156), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 18, + ACTIONS(278), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16774,14 +17657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(270), 30, + ACTIONS(276), 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, @@ -16805,81 +17691,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11876] = 33, + [12929] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(610), 1, + ACTIONS(620), 1, sym_float, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(616), 1, + ACTIONS(626), 1, sym__discard_name, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - STATE(407), 1, + ACTIONS(682), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1222), 1, - sym_hole, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1300), 1, + STATE(1216), 1, sym_argument, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1422), 1, + STATE(1534), 1, sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(642), 12, + STATE(728), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16892,13 +17780,17 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [11996] = 4, + [13052] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(762), 1, + anon_sym_LPAREN, + STATE(173), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 18, + ACTIONS(272), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16917,10 +17809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(470), 31, + ACTIONS(270), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT, @@ -16949,17 +17840,100 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12057] = 6, + [13118] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(620), 1, + sym_float, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1303), 1, + sym_argument, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1347), 1, + sym_hole, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1534), 1, + sym_label, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(728), 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, + [13238] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(461), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 18, + ACTIONS(322), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16978,11 +17952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(455), 29, + ACTIONS(320), 31, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17008,13 +17984,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12122] = 4, + [13299] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 18, + ACTIONS(568), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17033,7 +18009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(674), 31, + ACTIONS(566), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17065,13 +18041,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12183] = 4, + [13360] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(466), 18, + ACTIONS(490), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17090,7 +18066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(464), 31, + ACTIONS(488), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17122,13 +18098,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12244] = 4, + [13421] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(362), 18, + ACTIONS(388), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17147,7 +18123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(360), 31, + ACTIONS(386), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17179,13 +18155,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12305] = 4, + [13482] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 18, + ACTIONS(498), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17204,15 +18180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(662), 31, + ACTIONS(496), 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, @@ -17236,13 +18212,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12366] = 4, + [13543] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(504), 18, + ACTIONS(484), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17261,7 +18237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(502), 31, + ACTIONS(482), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17293,13 +18269,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12427] = 4, + [13604] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(322), 18, + ACTIONS(510), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17318,7 +18294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(320), 31, + ACTIONS(508), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17350,13 +18326,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12488] = 4, + [13665] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(318), 18, + ACTIONS(642), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17375,15 +18351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(316), 31, + ACTIONS(640), 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, @@ -17407,13 +18383,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12549] = 4, + [13726] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 18, + ACTIONS(336), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17432,7 +18408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(324), 31, + ACTIONS(334), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17464,13 +18440,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12610] = 4, + [13787] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(334), 18, + ACTIONS(332), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17489,7 +18465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(332), 31, + ACTIONS(330), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -17521,17 +18497,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12671] = 6, + [13848] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(750), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 18, + ACTIONS(464), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17550,11 +18522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(455), 29, + ACTIONS(462), 31, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17580,13 +18554,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12736] = 4, + [13909] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(459), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 18, + ACTIONS(455), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17605,13 +18583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(336), 31, + ACTIONS(453), 29, 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, @@ -17637,13 +18613,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12797] = 4, + [13974] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(764), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 18, + ACTIONS(455), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17662,13 +18642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(478), 31, + ACTIONS(453), 29, 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, @@ -17694,13 +18672,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12858] = 4, + [14039] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 18, + ACTIONS(342), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17719,9 +18697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(550), 30, + ACTIONS(340), 31, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT, @@ -17750,13 +18729,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12918] = 4, + [14100] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(518), 18, + ACTIONS(520), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17775,12 +18754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(516), 30, + ACTIONS(518), 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, @@ -17806,96 +18785,70 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12978] = 31, + [14160] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(534), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, sym__decimal, - ACTIONS(616), 1, - sym__discard_name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(754), 1, - sym_float, - ACTIONS(756), 1, sym__name, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1297), 1, - sym_hole, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, + ACTIONS(453), 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, - STATE(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(651), 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, - [13092] = 4, + sym__upname, + [14222] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 18, + ACTIONS(524), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17914,7 +18867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(542), 30, + ACTIONS(522), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17945,77 +18898,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13152] = 31, + [14282] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(626), 1, + sym__discard_name, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(758), 1, - anon_sym_RBRACK, - ACTIONS(760), 1, - anon_sym_DOT_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, sym_float, - STATE(407), 1, + ACTIONS(770), 1, + sym__name, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1386), 1, + sym_hole, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(701), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18028,133 +18981,160 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13266] = 4, + [14396] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(514), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(512), 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(772), 1, + anon_sym_RBRACK, + ACTIONS(774), 1, + anon_sym_DOT_DOT, + ACTIONS(776), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [13326] = 31, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(623), 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, + [14510] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(764), 1, + ACTIONS(778), 1, anon_sym_RBRACK, - ACTIONS(766), 1, + ACTIONS(780), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18167,77 +19147,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13440] = 31, + [14624] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(768), 1, + ACTIONS(782), 1, anon_sym_RBRACK, - ACTIONS(770), 1, + ACTIONS(784), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18250,13 +19230,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13554] = 4, + [14738] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(536), 18, + ACTIONS(558), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18275,7 +19255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(534), 30, + ACTIONS(556), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18306,77 +19286,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13614] = 31, + [14798] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(772), 1, + ACTIONS(786), 1, anon_sym_RBRACK, - ACTIONS(774), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18389,77 +19369,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13728] = 31, + [14912] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, - sym_float, ACTIONS(776), 1, + sym_float, + ACTIONS(790), 1, anon_sym_RBRACK, - ACTIONS(778), 1, + ACTIONS(792), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18472,13 +19452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [13842] = 4, + [15026] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 18, + ACTIONS(455), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18497,10 +19479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(530), 30, + ACTIONS(453), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_POUND, @@ -18528,77 +19509,216 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13902] = 31, + [15088] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(550), 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(548), 30, anon_sym_LBRACE, - ACTIONS(586), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(588), 1, anon_sym_LBRACK, - ACTIONS(590), 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, + [15148] = 31, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(780), 1, + ACTIONS(794), 1, anon_sym_RBRACK, - ACTIONS(782), 1, + ACTIONS(796), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(623), 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, + [15262] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, + sym_float, + ACTIONS(798), 1, + anon_sym_RBRACK, + ACTIONS(800), 1, + anon_sym_DOT_DOT, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18611,13 +19731,15 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14016] = 4, + [15376] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(536), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 18, + ACTIONS(455), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18636,12 +19758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(546), 30, + ACTIONS(453), 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, @@ -18667,15 +19788,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14076] = 5, + [15438] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 18, + ACTIONS(540), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18694,11 +19813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(455), 29, + ACTIONS(538), 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, @@ -18724,15 +19844,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14138] = 5, + [15498] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(538), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 18, + ACTIONS(554), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18751,11 +19869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(455), 29, + ACTIONS(552), 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, @@ -18781,77 +19900,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14200] = 31, + [15558] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(802), 1, anon_sym_RBRACK, - ACTIONS(786), 1, + ACTIONS(804), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18864,190 +19983,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14314] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(540), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(457), 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(455), 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, - [14376] = 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, - [14436] = 31, + [15672] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(788), 1, + ACTIONS(806), 1, anon_sym_RBRACK, - ACTIONS(790), 1, + ACTIONS(808), 1, anon_sym_DOT_DOT, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19060,13 +20066,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14550] = 4, + [15786] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(692), 18, + ACTIONS(532), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19085,9 +20091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(690), 29, + ACTIONS(530), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_POUND, @@ -19115,75 +20122,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14609] = 30, + [15846] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(792), 1, - anon_sym_RPAREN, - STATE(407), 1, + ACTIONS(810), 1, + anon_sym_RBRACK, + ACTIONS(812), 1, + anon_sym_DOT_DOT, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19196,13 +20205,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14720] = 4, + [15960] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(696), 18, + ACTIONS(528), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19221,11 +20230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(694), 29, + ACTIONS(526), 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, @@ -19251,13 +20261,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14779] = 4, + [16020] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 18, + ACTIONS(716), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19276,7 +20286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(682), 29, + ACTIONS(714), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19306,75 +20316,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14838] = 30, + [16079] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(794), 1, + ACTIONS(814), 1, + anon_sym_RBRACK, + ACTIONS(816), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1357), 1, - sym_case_subjects, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(632), 12, + STATE(629), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19387,156 +20397,130 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [14949] = 30, + [16190] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, sym__name, - ACTIONS(762), 1, + 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, sym_float, - ACTIONS(796), 1, - anon_sym_RPAREN, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 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, - [15060] = 30, + sym__upname, + [16249] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(798), 1, + ACTIONS(818), 1, anon_sym_RBRACK, - ACTIONS(800), 1, + ACTIONS(820), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(605), 12, + STATE(635), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19549,13 +20533,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15171] = 4, + [16360] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 18, + ACTIONS(736), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19574,7 +20558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(650), 29, + ACTIONS(734), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -19604,185 +20588,156 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15230] = 4, + [16419] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(680), 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(678), 29, + ACTIONS(592), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(596), 1, anon_sym_POUND, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 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, - [15289] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 18, - anon_sym_SLASH, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(698), 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(822), 1, + anon_sym_RPAREN, + ACTIONS(824), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [15348] = 30, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(675), 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, + [16530] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(802), 1, + ACTIONS(826), 1, anon_sym_RBRACK, - ACTIONS(804), 1, + ACTIONS(828), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(621), 12, + STATE(633), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19795,75 +20750,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15459] = 30, + [16641] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(806), 1, - anon_sym_RBRACK, - ACTIONS(808), 1, + ACTIONS(830), 1, + anon_sym_RPAREN, + ACTIONS(832), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(590), 12, + STATE(685), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19876,75 +20831,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15570] = 30, + [16752] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(810), 1, + ACTIONS(834), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19957,75 +20912,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15681] = 30, + [16863] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(836), 1, sym_float, - ACTIONS(812), 1, - anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1503), 1, + sym_case_subjects, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(690), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20038,240 +20993,237 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [15792] = 4, + [16974] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(708), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(706), 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(836), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1462), 1, + sym_case_subjects, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [15851] = 4, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(690), 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, + [17085] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(713), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(710), 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(838), 1, + anon_sym_RPAREN, + ACTIONS(840), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15910] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 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(728), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [15969] = 30, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(698), 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, + [17196] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(816), 1, + ACTIONS(776), 1, sym_float, - STATE(407), 1, + ACTIONS(842), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(638), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20284,130 +21236,156 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16080] = 4, + [17307] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(556), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(554), 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(836), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1514), 1, + sym_case_subjects, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [16139] = 30, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(690), 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, + [17418] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(794), 1, + ACTIONS(836), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1351), 1, + STATE(1445), 1, sym_case_subjects, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(632), 12, + STATE(690), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20420,130 +21398,156 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16250] = 4, + [17529] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(636), 18, - anon_sym_SLASH, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, + ACTIONS(604), 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(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(634), 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(844), 1, + anon_sym_RPAREN, + ACTIONS(846), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [16309] = 30, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(689), 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, + [17640] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(818), 1, + ACTIONS(848), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20556,13 +21560,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16420] = 4, + [17751] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 18, + ACTIONS(712), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20581,7 +21585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(670), 29, + ACTIONS(710), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20611,75 +21615,130 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16479] = 30, + [17810] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(728), 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(726), 29, anon_sym_LBRACE, - ACTIONS(586), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(588), 1, anon_sym_LBRACK, - ACTIONS(590), 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, + [17869] = 30, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(776), 1, sym_float, - ACTIONS(820), 1, + ACTIONS(850), 1, anon_sym_RPAREN, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20692,75 +21751,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16590] = 30, + [17980] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(822), 1, - anon_sym_RPAREN, - ACTIONS(824), 1, + ACTIONS(836), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1491), 1, + sym_case_subjects, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(634), 12, + STATE(690), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20773,75 +21832,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16701] = 30, + [18091] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(826), 1, - anon_sym_RPAREN, - ACTIONS(828), 1, + ACTIONS(852), 1, + anon_sym_RBRACK, + ACTIONS(854), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(639), 12, + STATE(642), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20854,13 +21913,13 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [16812] = 4, + [18202] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 18, + ACTIONS(732), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -20879,7 +21938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(642), 29, + ACTIONS(730), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -20909,94 +21968,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16871] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, - anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, - anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, - anon_sym_case, - ACTIONS(604), 1, - anon_sym_assert, - ACTIONS(606), 1, - anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(762), 1, - sym_float, - ACTIONS(830), 1, - anon_sym_RPAREN, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(413), 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, - [16982] = 4, + [18261] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(632), 18, + ACTIONS(708), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -21015,7 +21993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(630), 29, + ACTIONS(706), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21045,69 +22023,69 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17041] = 30, + [18320] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(832), 1, - anon_sym_RPAREN, - ACTIONS(834), 1, + ACTIONS(776), 1, sym_float, - STATE(407), 1, + ACTIONS(856), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, @@ -21126,75 +22104,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17152] = 30, + [18431] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(794), 1, + ACTIONS(776), 1, sym_float, - STATE(407), 1, + ACTIONS(858), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1386), 1, - sym_case_subjects, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(632), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21207,130 +22185,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17263] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(668), 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(666), 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, - [17322] = 30, + [18542] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(836), 1, - anon_sym_RBRACK, - ACTIONS(838), 1, + ACTIONS(776), 1, sym_float, - STATE(407), 1, + ACTIONS(860), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(600), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21343,75 +22266,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17433] = 30, + [18653] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, - sym_float, - ACTIONS(840), 1, + ACTIONS(862), 1, anon_sym_RPAREN, - STATE(407), 1, + ACTIONS(864), 1, + sym_float, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(682), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21424,94 +22347,68 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [17544] = 30, + [18764] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(664), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, sym__name, - ACTIONS(794), 1, + ACTIONS(662), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - STATE(1398), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(632), 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, - [17655] = 4, + sym__upname, + [18823] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(726), 18, + ACTIONS(692), 18, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -21530,7 +22427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(724), 29, + ACTIONS(690), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -21560,233 +22457,405 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [17714] = 31, + [18882] = 4, 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(288), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 18, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_fn, - ACTIONS(294), 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, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - ACTIONS(312), 1, sym__name, - ACTIONS(314), 1, - sym__upname, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(842), 1, + ACTIONS(694), 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, - 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_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(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 2, - sym_record, - sym_record_update, - ACTIONS(308), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1055), 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, - [17826] = 29, + sym__upname, + [18941] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(676), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, sym__name, - ACTIONS(854), 1, + ACTIONS(674), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19000] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, + ACTIONS(672), 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(670), 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, - STATE(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(501), 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, - [17934] = 29, + sym__upname, + [19059] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(563), 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(560), 29, anon_sym_LBRACE, - ACTIONS(858), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(862), 1, anon_sym_LT_LT, - ACTIONS(864), 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, + [19118] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(668), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(866), 1, anon_sym_fn, - ACTIONS(868), 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(870), 1, anon_sym_panic, - ACTIONS(872), 1, anon_sym_case, - ACTIONS(874), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(876), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(878), 1, + sym__decimal, + sym__name, + ACTIONS(666), 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(880), 1, sym_float, - ACTIONS(884), 1, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19177] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(646), 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, - ACTIONS(886), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(644), 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, + [19236] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, sym__upname, - STATE(332), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, + sym_float, + ACTIONS(866), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(350), 1, + STATE(443), 1, sym_tuple, - STATE(352), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(372), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21799,73 +22868,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18042] = 29, + [19347] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(890), 1, + ACTIONS(868), 1, + anon_sym_RBRACK, + ACTIONS(870), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(659), 12, + STATE(641), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21878,73 +22949,130 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18150] = 29, + [19458] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(590), 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(588), 29, anon_sym_LBRACE, - ACTIONS(21), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(27), 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, + [19517] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(894), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, sym_float, - STATE(39), 1, + ACTIONS(872), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(443), 1, sym_tuple, - STATE(1241), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(84), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21957,73 +23085,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18258] = 29, + [19628] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(886), 1, - sym__name, - ACTIONS(888), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(896), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, sym_float, - STATE(332), 1, + ACTIONS(874), 1, + anon_sym_RPAREN, + STATE(441), 1, sym_identifier, - STATE(350), 1, + STATE(443), 1, sym_tuple, - STATE(352), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(368), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22036,73 +23166,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18366] = 29, + [19739] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, - anon_sym_case, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(898), 1, + ACTIONS(876), 1, sym_float, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(291), 12, + STATE(336), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22115,73 +23245,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18474] = 29, + [19847] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(886), 1, - sym__name, - ACTIONS(888), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(900), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(878), 1, sym_float, - STATE(332), 1, + STATE(441), 1, sym_identifier, - STATE(350), 1, + STATE(443), 1, sym_tuple, - STATE(352), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(365), 12, + STATE(511), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22194,73 +23324,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18582] = 29, + [19955] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(904), 1, + sym_float, + ACTIONS(908), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(902), 1, - sym_float, - STATE(407), 1, + ACTIONS(912), 1, + sym__upname, + STATE(694), 1, sym_identifier, - STATE(438), 1, + STATE(714), 1, sym_tuple, - STATE(440), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(676), 12, + STATE(748), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22273,73 +23403,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18690] = 29, + [20063] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(904), 1, + ACTIONS(912), 1, + sym__upname, + ACTIONS(914), 1, sym_float, - STATE(407), 1, + STATE(694), 1, sym_identifier, - STATE(438), 1, + STATE(714), 1, sym_tuple, - STATE(440), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(660), 12, + STATE(758), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22352,73 +23482,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18798] = 29, + [20171] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(886), 1, - sym__name, - ACTIONS(888), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(906), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(916), 1, sym_float, - STATE(332), 1, + STATE(441), 1, sym_identifier, - STATE(350), 1, + STATE(443), 1, sym_tuple, - STATE(352), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(364), 12, + STATE(734), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22431,73 +23561,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [18906] = 29, + [20279] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(908), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(918), 1, sym_float, - STATE(39), 1, + STATE(441), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(443), 1, sym_tuple, - STATE(1241), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(105), 12, + STATE(730), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22510,73 +23640,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19014] = 29, + [20387] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(912), 1, sym__upname, - ACTIONS(910), 1, + ACTIONS(920), 1, sym_float, - STATE(332), 1, + STATE(694), 1, sym_identifier, - STATE(350), 1, + STATE(714), 1, sym_tuple, - STATE(352), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1345), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(354), 12, + STATE(737), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22589,73 +23719,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19122] = 29, + [20495] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(910), 1, sym__name, ACTIONS(912), 1, + sym__upname, + ACTIONS(922), 1, sym_float, - STATE(407), 1, + STATE(694), 1, sym_identifier, - STATE(438), 1, + STATE(714), 1, sym_tuple, - STATE(440), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(662), 12, + STATE(741), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22668,75 +23798,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19230] = 29, + [20603] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, - anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, - anon_sym_todo, - ACTIONS(870), 1, - anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, - anon_sym_assert, - ACTIONS(876), 1, - anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(914), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(924), 1, + anon_sym_GT_GT, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(332), 1, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(357), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -22747,73 +23879,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19338] = 29, + [20715] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(912), 1, sym__upname, - ACTIONS(916), 1, + ACTIONS(936), 1, sym_float, - STATE(145), 1, + STATE(694), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(714), 1, sym_tuple, - STATE(1286), 1, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1453), 1, sym__maybe_tuple_expression, + STATE(1512), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(295), 12, + STATE(779), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22826,77 +23958,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19446] = 31, + [20823] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(888), 1, + anon_sym_DASH, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(892), 1, + anon_sym_todo, + ACTIONS(894), 1, + anon_sym_panic, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(898), 1, + anon_sym_assert, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(912), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(938), 1, sym_float, - ACTIONS(918), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(694), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(714), 1, sym_tuple, - STATE(1126), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(765), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -22907,73 +24037,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19558] = 29, + [20931] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(920), 1, + ACTIONS(940), 1, sym_float, - STATE(332), 1, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(374), 12, + STATE(348), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22986,77 +24116,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19666] = 31, + [21039] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(770), 1, + sym__name, + ACTIONS(942), 1, sym_float, - ACTIONS(922), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1056), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(787), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -23067,73 +24195,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19778] = 29, + [21147] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(924), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(944), 1, sym_float, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(293), 12, + STATE(780), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23146,75 +24274,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19886] = 29, + [21255] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, - anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, - anon_sym_todo, - ACTIONS(870), 1, - anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, - anon_sym_assert, - ACTIONS(876), 1, - anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, + ACTIONS(608), 1, + anon_sym_panic, ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(332), 1, + ACTIONS(946), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1233), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(356), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -23225,73 +24355,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [19994] = 29, + [21367] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(586), 1, + ACTIONS(948), 1, + anon_sym_LBRACE, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(972), 1, + sym_float, + ACTIONS(976), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(762), 1, - sym_float, - ACTIONS(928), 1, - anon_sym_LBRACE, - STATE(407), 1, + ACTIONS(980), 1, + sym__upname, + STATE(372), 1, sym_identifier, - STATE(438), 1, + STATE(380), 1, sym_tuple, - STATE(440), 1, + STATE(381), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(398), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23304,73 +24434,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20102] = 29, + [21475] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(931), 1, + ACTIONS(982), 1, sym_float, - STATE(332), 1, + STATE(372), 1, sym_identifier, - STATE(350), 1, + STATE(380), 1, sym_tuple, - STATE(352), 1, + STATE(381), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1345), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(366), 12, + STATE(419), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23383,73 +24513,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20210] = 29, + [21583] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(933), 1, + ACTIONS(984), 1, sym_float, - STATE(332), 1, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(369), 12, + STATE(350), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23462,73 +24592,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20318] = 29, + [21691] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(935), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(986), 1, sym_float, - STATE(407), 1, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(679), 12, + STATE(349), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23541,77 +24671,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20426] = 31, + [21799] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, anon_sym_fn, ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(988), 1, sym_float, - ACTIONS(937), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(346), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -23622,77 +24750,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20538] = 31, + [21907] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(770), 1, + sym__name, + ACTIONS(990), 1, sym_float, - ACTIONS(939), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(752), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -23703,77 +24829,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20650] = 31, + [22015] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, anon_sym_fn, ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(992), 1, sym_float, - ACTIONS(941), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(327), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -23784,73 +24908,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20762] = 29, + [22123] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(943), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(994), 1, sym_float, - STATE(407), 1, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(683), 12, + STATE(326), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23863,73 +24987,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20870] = 29, + [22231] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, - anon_sym_case, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(945), 1, + ACTIONS(996), 1, sym_float, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(305), 12, + STATE(341), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23942,75 +25066,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [20978] = 29, + [22339] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, + anon_sym_LBRACE, ACTIONS(284), 1, - anon_sym_LT_LT, + anon_sym_POUND, ACTIONS(286), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, - anon_sym_todo, + anon_sym_LT_LT, ACTIONS(292), 1, - anon_sym_panic, - ACTIONS(294), 1, - anon_sym_case, + anon_sym_fn, ACTIONS(298), 1, - anon_sym_assert, - ACTIONS(302), 1, - anon_sym_BANG, - ACTIONS(304), 1, + anon_sym_case, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(947), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(145), 1, + ACTIONS(998), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1460), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1502), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(309), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -24021,73 +25147,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21086] = 29, + [22451] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(949), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1000), 1, sym_float, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(306), 12, + STATE(775), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24100,77 +25226,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21194] = 31, + [22559] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, anon_sym_fn, ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(1002), 1, sym_float, - ACTIONS(951), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1096), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(344), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -24181,77 +25305,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21306] = 31, + [22667] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(770), 1, + sym__name, + ACTIONS(1004), 1, sym_float, - ACTIONS(953), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(785), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -24262,73 +25384,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21418] = 29, + [22775] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(955), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1006), 1, sym_float, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(296), 12, + STATE(731), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24341,73 +25463,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21526] = 29, + [22883] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, - anon_sym_case, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(1008), 1, sym_float, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(297), 12, + STATE(335), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24420,73 +25542,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21634] = 29, + [22991] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(294), 1, - anon_sym_case, ACTIONS(298), 1, - anon_sym_assert, + anon_sym_case, ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(959), 1, + ACTIONS(1010), 1, sym_float, - STATE(145), 1, + STATE(156), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(159), 1, sym_tuple, - STATE(1286), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1457), 1, sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(298), 12, + STATE(331), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24499,73 +25621,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21742] = 29, + [23099] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(961), 1, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1012), 1, sym_float, - STATE(407), 1, + STATE(694), 1, sym_identifier, - STATE(438), 1, + STATE(714), 1, sym_tuple, - STATE(440), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(661), 12, + STATE(771), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24578,73 +25700,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21850] = 29, + [23207] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(912), 1, sym__upname, - ACTIONS(963), 1, + ACTIONS(1014), 1, sym_float, - STATE(145), 1, + STATE(694), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(714), 1, sym_tuple, - STATE(1286), 1, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1453), 1, sym__maybe_tuple_expression, + STATE(1512), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(299), 12, + STATE(773), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24657,152 +25779,129 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [21958] = 29, + [23315] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(1016), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(346), 18, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(594), 1, anon_sym_fn, - ACTIONS(596), 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(598), 1, anon_sym_panic, - ACTIONS(602), 1, anon_sym_case, - ACTIONS(604), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(606), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, sym__name, - ACTIONS(965), 1, + ACTIONS(344), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(407), 1, - sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, - sym_anonymous_function, - STATE(1266), 1, - sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(391), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(432), 2, - sym_record, - sym_record_update, - ACTIONS(612), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(663), 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, - [22066] = 29, + sym__upname, + [23377] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(1020), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(776), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24815,73 +25914,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22174] = 29, + [23485] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(958), 1, + anon_sym_fn, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(967), 1, + ACTIONS(1022), 1, sym_float, - STATE(39), 1, + STATE(372), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(380), 1, sym_tuple, - STATE(1241), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1400), 1, - sym__maybe_record_expression, - STATE(1401), 1, + STATE(1458), 1, sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(83), 12, + STATE(393), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24894,73 +25993,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22282] = 29, + [23593] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(958), 1, + anon_sym_fn, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(969), 1, + ACTIONS(1024), 1, sym_float, - STATE(39), 1, + STATE(372), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(380), 1, sym_tuple, - STATE(1241), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1400), 1, - sym__maybe_record_expression, - STATE(1401), 1, + STATE(1458), 1, sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(85), 12, + STATE(394), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24973,75 +26072,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22390] = 29, + [23701] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, - anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, - anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, - anon_sym_assert, - ACTIONS(606), 1, - anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(971), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(407), 1, + ACTIONS(1026), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(675), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -25052,73 +26153,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22498] = 29, + [23813] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(973), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1028), 1, sym_float, - STATE(39), 1, + STATE(441), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(443), 1, sym_tuple, - STATE(1241), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(88), 12, + STATE(733), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25131,73 +26232,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22606] = 29, + [23921] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(975), 1, + ACTIONS(1030), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 12, + STATE(736), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25210,75 +26311,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22714] = 29, + [24029] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, - anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, - anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, - anon_sym_assert, - ACTIONS(606), 1, - anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(977), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(407), 1, + ACTIONS(1032), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(658), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -25289,73 +26392,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22822] = 29, + [24141] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(979), 1, + ACTIONS(1034), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(469), 12, + STATE(755), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25368,7 +26471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [22930] = 29, + [24249] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25399,21 +26502,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(981), 1, + ACTIONS(1038), 1, sym_float, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25421,20 +26524,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(90), 12, + STATE(101), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25447,75 +26550,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23038] = 29, + [24357] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, - anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, - anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, - anon_sym_assert, - ACTIONS(606), 1, - anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(983), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(407), 1, + ACTIONS(1040), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1264), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(465), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -25526,7 +26631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23146] = 29, + [24469] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25557,21 +26662,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(985), 1, + ACTIONS(1042), 1, sym_float, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25579,20 +26684,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(92), 12, + STATE(93), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25605,73 +26710,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23254] = 29, + [24577] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(987), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1044), 1, sym_float, - STATE(39), 1, + STATE(441), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(443), 1, sym_tuple, - STATE(1241), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(94), 12, + STATE(760), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25684,73 +26789,152 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23362] = 29, + [24685] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1046), 1, + sym_float, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(333), 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, + [24793] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(989), 1, + ACTIONS(1048), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(674), 12, + STATE(749), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25763,7 +26947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23470] = 29, + [24901] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25794,21 +26978,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(991), 1, + ACTIONS(1050), 1, sym_float, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25816,14 +27000,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, @@ -25842,77 +27026,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23578] = 31, + [25009] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(956), 1, + anon_sym_DASH, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(960), 1, + anon_sym_todo, + ACTIONS(962), 1, + anon_sym_panic, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(966), 1, + anon_sym_assert, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(1052), 1, sym_float, - ACTIONS(993), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(372), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(380), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(416), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -25923,73 +27105,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23690] = 29, + [25117] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(995), 1, + ACTIONS(1054), 1, sym_float, - STATE(145), 1, + STATE(372), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(380), 1, sym_tuple, - STATE(1286), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1458), 1, sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(302), 12, + STATE(415), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26002,73 +27184,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23798] = 29, + [25225] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(997), 1, + ACTIONS(980), 1, + sym__upname, + ACTIONS(1056), 1, sym_float, - STATE(407), 1, + STATE(372), 1, sym_identifier, - STATE(438), 1, + STATE(380), 1, sym_tuple, - STATE(440), 1, + STATE(381), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(460), 12, + STATE(414), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26081,77 +27263,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [23906] = 31, + [25333] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(956), 1, + anon_sym_DASH, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(960), 1, + anon_sym_todo, + ACTIONS(962), 1, + anon_sym_panic, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(966), 1, + anon_sym_assert, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(1058), 1, sym_float, - ACTIONS(999), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(372), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(380), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(413), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -26162,73 +27342,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24018] = 29, + [25441] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(1001), 1, + ACTIONS(980), 1, + sym__upname, + ACTIONS(1060), 1, sym_float, - STATE(407), 1, + STATE(372), 1, sym_identifier, - STATE(438), 1, + STATE(380), 1, sym_tuple, - STATE(440), 1, + STATE(381), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(508), 12, + STATE(412), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26241,73 +27421,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24126] = 29, + [25549] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(958), 1, + anon_sym_fn, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(1003), 1, + ACTIONS(1062), 1, sym_float, - STATE(39), 1, + STATE(372), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(380), 1, sym_tuple, - STATE(1241), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1400), 1, - sym__maybe_record_expression, - STATE(1401), 1, + STATE(1458), 1, sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(81), 12, + STATE(391), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26320,77 +27500,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24234] = 31, + [25657] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(956), 1, + anon_sym_DASH, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(960), 1, + anon_sym_todo, + ACTIONS(962), 1, + anon_sym_panic, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(966), 1, + anon_sym_assert, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(1064), 1, sym_float, - ACTIONS(1005), 1, - anon_sym_GT_GT, - STATE(145), 1, + STATE(372), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(380), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(410), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -26401,73 +27579,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24346] = 29, + [25765] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1007), 1, + ACTIONS(1066), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(478), 12, + STATE(778), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26480,73 +27658,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24454] = 29, + [25873] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1009), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1068), 1, sym_float, - STATE(407), 1, + STATE(40), 1, sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, + STATE(73), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1506), 1, sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(479), 12, + STATE(88), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26559,73 +27737,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24562] = 29, + [25981] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(1011), 1, + ACTIONS(980), 1, + sym__upname, + ACTIONS(1070), 1, sym_float, - STATE(407), 1, + STATE(372), 1, sym_identifier, - STATE(438), 1, + STATE(380), 1, sym_tuple, - STATE(440), 1, + STATE(381), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1458), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1501), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(480), 12, + STATE(392), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26638,73 +27816,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24670] = 29, + [26089] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(948), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(950), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(952), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(954), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(956), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(958), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(960), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(962), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(964), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(966), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(968), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(970), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(976), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(978), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(980), 1, sym__upname, - ACTIONS(1013), 1, + ACTIONS(1072), 1, sym_float, - STATE(145), 1, + STATE(372), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(380), 1, sym_tuple, - STATE(1286), 1, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, sym__maybe_function_expression, - STATE(1355), 1, - sym__maybe_record_expression, - STATE(1373), 1, + STATE(1458), 1, sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(382), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(974), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(361), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(301), 12, + STATE(407), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26717,73 +27895,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24778] = 29, + [26197] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1015), 1, + ACTIONS(1074), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(678), 12, + STATE(784), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26796,73 +27974,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24886] = 29, + [26305] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1017), 1, + ACTIONS(776), 1, sym_float, - STATE(407), 1, + ACTIONS(1076), 1, + anon_sym_LBRACE, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(491), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26875,154 +28053,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [24994] = 31, - 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(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(598), 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, - ACTIONS(1019), 1, - anon_sym_GT_GT, - STATE(145), 1, - sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, - sym_tuple, - STATE(1137), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, - sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(132), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(165), 2, - sym_record, - sym_record_update, - ACTIONS(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(135), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1055), 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, - [25106] = 29, + [26413] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1021), 1, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1079), 1, sym_float, - STATE(145), 1, + STATE(40), 1, sym_identifier, - STATE(162), 1, + STATE(73), 1, sym_anonymous_function, - STATE(163), 1, + STATE(74), 1, sym_tuple, - STATE(1286), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(308), 12, + STATE(100), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27035,73 +28132,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25214] = 29, + [26521] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(296), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(302), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(306), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1023), 1, + ACTIONS(1081), 1, sym_float, - STATE(332), 1, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, + STATE(1457), 1, sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(361), 12, + STATE(337), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27114,75 +28211,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25322] = 29, + [26629] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(864), 1, - anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(868), 1, - anon_sym_todo, - ACTIONS(870), 1, - anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(874), 1, - anon_sym_assert, - ACTIONS(876), 1, - anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1025), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(332), 1, + ACTIONS(1083), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(350), 1, + STATE(159), 1, sym_tuple, - STATE(352), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(373), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -27193,127 +28292,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(447), 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(445), 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, + [26741] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1027), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1085), 1, sym_float, - STATE(407), 1, + STATE(40), 1, sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, + STATE(73), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1506), 1, sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(525), 12, + STATE(92), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27326,7 +28371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25596] = 29, + [26849] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -27357,21 +28402,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(1029), 1, + ACTIONS(1087), 1, sym_float, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -27379,20 +28424,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(109), 12, + STATE(94), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27405,73 +28450,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25704] = 29, + [26957] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1031), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1089), 1, sym_float, - STATE(407), 1, + STATE(40), 1, sym_identifier, - STATE(438), 1, - sym_tuple, - STATE(440), 1, + STATE(73), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1506), 1, sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(684), 12, + STATE(95), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27484,129 +28529,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25812] = 6, - ACTIONS(3), 1, - sym_module_comment, - 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, - 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, - [25874] = 29, + [27065] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, - anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(866), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(886), 1, - sym__name, - ACTIONS(888), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1037), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, sym_float, - STATE(332), 1, + ACTIONS(1091), 1, + anon_sym_LBRACE, + STATE(441), 1, sym_identifier, - STATE(350), 1, + STATE(443), 1, sym_tuple, - STATE(352), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(322), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(348), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(360), 12, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27619,7 +28608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [25982] = 29, + [27173] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -27650,21 +28639,21 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(1039), 1, + ACTIONS(1094), 1, sym_float, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -27672,20 +28661,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(89), 12, + STATE(97), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27698,73 +28687,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26090] = 29, + [27281] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(586), 1, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(762), 1, + ACTIONS(1096), 1, sym_float, - ACTIONS(1041), 1, - anon_sym_LBRACE, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 12, + STATE(509), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27777,75 +28766,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26198] = 29, + [27389] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(280), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(288), 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(292), 1, + anon_sym_fn, + ACTIONS(298), 1, anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(1044), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, sym_float, - STATE(39), 1, + ACTIONS(1098), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(159), 1, sym_tuple, - STATE(1241), 1, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1460), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1502), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(113), 12, - sym__expression, - sym_binary_expression, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -27856,73 +28847,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26306] = 29, + [27501] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1046), 1, + ACTIONS(1100), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(550), 12, + STATE(508), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27935,73 +28926,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26414] = 29, + [27609] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1048), 1, + ACTIONS(1102), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(668), 12, + STATE(491), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28014,73 +29005,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26522] = 29, + [27717] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(880), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(882), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(884), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(886), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(888), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(890), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(892), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(894), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(896), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(898), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(900), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(1050), 1, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1104), 1, sym_float, - STATE(407), 1, + STATE(694), 1, sym_identifier, - STATE(438), 1, + STATE(714), 1, sym_tuple, - STATE(440), 1, + STATE(716), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1377), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(669), 12, + STATE(788), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28093,73 +29084,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26630] = 29, + [27825] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1052), 1, + ACTIONS(1106), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(655), 12, + STATE(489), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28172,73 +29163,73 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26738] = 29, + [27933] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(582), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(588), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(590), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(594), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(598), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(602), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1054), 1, + ACTIONS(1108), 1, sym_float, - STATE(407), 1, + STATE(441), 1, sym_identifier, - STATE(438), 1, + STATE(443), 1, sym_tuple, - STATE(440), 1, + STATE(452), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(671), 12, + STATE(521), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -28251,129 +29242,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [26846] = 5, + [28041] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1056), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(526), 18, - anon_sym_SLASH, + ACTIONS(880), 1, + anon_sym_LBRACE, + ACTIONS(882), 1, + anon_sym_POUND, + ACTIONS(884), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_LT_LT, + ACTIONS(888), 1, anon_sym_DASH, + ACTIONS(890), 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(892), 1, anon_sym_todo, + ACTIONS(894), 1, anon_sym_panic, + ACTIONS(896), 1, anon_sym_case, - anon_sym_let, + ACTIONS(898), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(900), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(524), 26, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26905] = 30, - 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(288), 1, - anon_sym_fn, - ACTIONS(294), 1, - anon_sym_case, - ACTIONS(304), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(910), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(912), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(1110), 1, sym_float, - STATE(145), 1, + STATE(694), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(714), 1, sym_tuple, - STATE(1239), 1, - sym_expression_bit_string_segment, - STATE(1286), 1, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, sym__maybe_function_expression, - STATE(1349), 1, + STATE(1453), 1, sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1512), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(638), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(713), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(699), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1055), 10, + STATE(770), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -28384,135 +29321,154 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27014] = 14, + [28149] = 29, 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, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, 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(704), 10, + ACTIONS(604), 1, anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(702), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, + ACTIONS(1112), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27090] = 29, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(520), 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, + [28257] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(288), 1, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(294), 1, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(598), 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, + ACTIONS(770), 1, + sym__name, + ACTIONS(1114), 1, sym_float, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(194), 10, + STATE(719), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -28523,486 +29479,237 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27196] = 14, + [28365] = 29, 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, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, 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(688), 10, + ACTIONS(604), 1, anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(686), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, + ACTIONS(1116), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27272] = 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, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, 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(660), 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(658), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27348] = 14, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(519), 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, + [28473] = 31, 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(628), 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(626), 11, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27424] = 12, - ACTIONS(3), 1, - sym_module_comment, - 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(624), 10, + ACTIONS(292), 1, anon_sym_fn, - anon_sym_todo, - anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(622), 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, + ACTIONS(318), 1, sym__upname, - [27496] = 13, - ACTIONS(3), 1, - sym_module_comment, - 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, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, 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(624), 10, - anon_sym_fn, + ACTIONS(928), 1, anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, + ACTIONS(930), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(932), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(622), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, + ACTIONS(934), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27570] = 6, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(1118), 1, + anon_sym_GT_GT, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1166), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, 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(624), 16, - anon_sym_DASH, - anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(622), 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(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27630] = 4, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [28585] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(624), 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(622), 26, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 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(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, sym__upname, - [27686] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(928), 1, anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, - anon_sym_case, - ACTIONS(604), 1, + ACTIONS(930), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(932), 1, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1080), 1, + ACTIONS(934), 1, sym_float, - ACTIONS(1084), 1, - sym__decimal, - STATE(407), 1, + ACTIONS(1120), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(1082), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(492), 10, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -29013,197 +29720,77 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [27792] = 14, + [28697] = 31, 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(640), 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(638), 11, + ACTIONS(280), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(284), 1, anon_sym_POUND, + ACTIONS(286), 1, anon_sym_LBRACK, + ACTIONS(288), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27868] = 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(560), 10, + ACTIONS(292), 1, anon_sym_fn, - anon_sym_todo, - anon_sym_panic, + ACTIONS(298), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(558), 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, + ACTIONS(318), 1, sym__upname, - [27944] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(586), 1, - anon_sym_POUND, - ACTIONS(588), 1, - anon_sym_LBRACK, - ACTIONS(590), 1, - anon_sym_LT_LT, - ACTIONS(592), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, anon_sym_DASH, - ACTIONS(594), 1, - anon_sym_fn, - ACTIONS(596), 1, + ACTIONS(928), 1, anon_sym_todo, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(602), 1, - anon_sym_case, - ACTIONS(604), 1, + ACTIONS(930), 1, anon_sym_assert, - ACTIONS(606), 1, + ACTIONS(932), 1, anon_sym_BANG, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1086), 1, + ACTIONS(934), 1, sym_float, - STATE(407), 1, + ACTIONS(1122), 1, + anon_sym_GT_GT, + STATE(156), 1, sym_identifier, - STATE(438), 1, + STATE(159), 1, sym_tuple, - STATE(440), 1, + STATE(168), 1, sym_anonymous_function, - STATE(1266), 1, + STATE(1195), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, sym__maybe_function_expression, - STATE(1377), 1, - sym__maybe_tuple_expression, - STATE(1384), 1, + STATE(1460), 1, sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(142), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(432), 2, + STATE(172), 2, sym_record, sym_record_update, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(413), 5, + STATE(155), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(487), 10, + STATE(1165), 10, sym__expression_unit, sym_todo, sym_panic, @@ -29214,73 +29801,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28050] = 29, + [28809] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(866), 1, - anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(886), 1, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1088), 1, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1124), 1, sym_float, - ACTIONS(1092), 1, - sym__decimal, - STATE(332), 1, + STATE(40), 1, sym_identifier, - STATE(350), 1, - sym_tuple, - STATE(352), 1, + STATE(73), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1506), 1, sym__maybe_record_expression, + STATE(1507), 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(348), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(1090), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(384), 10, + STATE(107), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29291,122 +29880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28156] = 8, - ACTIONS(3), 1, - sym_module_comment, - 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(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(624), 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, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(622), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28220] = 11, - ACTIONS(3), 1, - sym_module_comment, - 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(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(624), 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(622), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28290] = 29, + [28917] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -29431,27 +29905,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(892), 1, + ACTIONS(1036), 1, anon_sym_fn, - ACTIONS(1094), 1, + ACTIONS(1126), 1, sym_float, - ACTIONS(1098), 1, - sym__decimal, - STATE(39), 1, + STATE(40), 1, sym_identifier, - STATE(71), 1, + STATE(73), 1, sym_anonymous_function, - STATE(72), 1, + STATE(74), 1, sym_tuple, - STATE(1241), 1, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1506), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1507), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -29459,20 +29933,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(1096), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(115), 10, + STATE(102), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29483,192 +29959,154 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28396] = 14, + [29025] = 29, 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(722), 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(720), 11, + ACTIONS(592), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(596), 1, anon_sym_POUND, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28472] = 9, - ACTIONS(3), 1, - sym_module_comment, - 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, + ACTIONS(602), 1, 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(624), 14, + ACTIONS(604), 1, anon_sym_fn, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, + ACTIONS(606), 1, anon_sym_todo, + ACTIONS(608), 1, anon_sym_panic, + ACTIONS(612), 1, anon_sym_case, - anon_sym_let, + ACTIONS(614), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(616), 1, anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(622), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, + ACTIONS(1128), 1, sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28538] = 29, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(757), 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, + [29133] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(23), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(25), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(27), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(892), 1, - anon_sym_fn, - ACTIONS(1100), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1130), 1, sym_float, - STATE(39), 1, + STATE(441), 1, sym_identifier, - STATE(71), 1, - sym_anonymous_function, - STATE(72), 1, + STATE(443), 1, sym_tuple, - STATE(1241), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1400), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1401), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(73), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(35), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(91), 10, + STATE(492), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29679,73 +30117,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28644] = 29, + [29241] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1078), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(776), 1, sym_float, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(194), 10, + STATE(623), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29756,73 +30196,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28750] = 29, + [29349] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(294), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, - sym__upname, - ACTIONS(598), 1, - anon_sym_panic, - ACTIONS(844), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(846), 1, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(848), 1, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(850), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(1102), 1, - sym_float, - ACTIONS(1106), 1, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, - STATE(145), 1, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1132), 1, + sym_float, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1349), 1, - sym__maybe_tuple_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(1104), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(184), 10, + STATE(766), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29833,73 +30275,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28856] = 29, + [29457] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(596), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(600), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(602), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(604), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(606), 1, anon_sym_todo, - ACTIONS(292), 1, + ACTIONS(608), 1, anon_sym_panic, - ACTIONS(294), 1, + ACTIONS(612), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(614), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(616), 1, anon_sym_BANG, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, sym__upname, - ACTIONS(1102), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1134), 1, sym_float, - ACTIONS(1106), 1, - sym__decimal, - STATE(145), 1, + STATE(441), 1, sym_identifier, - STATE(162), 1, - sym_anonymous_function, - STATE(163), 1, + STATE(443), 1, sym_tuple, - STATE(1286), 1, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, sym__maybe_function_expression, - STATE(1355), 1, + STATE(1489), 1, sym__maybe_record_expression, - STATE(1373), 1, + STATE(1539), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(132), 2, + STATE(423), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(165), 2, + STATE(446), 2, sym_record, sym_record_update, - ACTIONS(1104), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(135), 5, + STATE(437), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(184), 10, + STATE(514), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29910,73 +30354,75 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [28962] = 29, + [29565] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(858), 1, + ACTIONS(21), 1, anon_sym_POUND, - ACTIONS(860), 1, + ACTIONS(23), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(25), 1, anon_sym_LT_LT, - ACTIONS(864), 1, + ACTIONS(27), 1, anon_sym_DASH, - ACTIONS(866), 1, - anon_sym_fn, - ACTIONS(868), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(870), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(872), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(874), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(876), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(878), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(886), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(888), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1108), 1, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1136), 1, sym_float, - STATE(332), 1, + STATE(40), 1, sym_identifier, - STATE(350), 1, - sym_tuple, - STATE(352), 1, + STATE(73), 1, sym_anonymous_function, - STATE(1308), 1, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, sym__maybe_function_expression, - STATE(1345), 1, - sym__maybe_tuple_expression, - STATE(1396), 1, + STATE(1506), 1, sym__maybe_record_expression, + STATE(1507), 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(348), 2, + STATE(75), 2, sym_record, sym_record_update, - ACTIONS(882), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(333), 5, + STATE(36), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(381), 10, + STATE(122), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, @@ -29987,39 +30433,4325 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_negation, sym_string, sym_integer, - [29068] = 4, + [29673] = 31, ACTIONS(3), 1, sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, + sym_float, + ACTIONS(1138), 1, + anon_sym_GT_GT, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1203), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(439), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [29785] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1140), 1, + sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(777), 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, + [29893] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1142), 1, + sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(761), 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, + [30001] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, + sym_float, + ACTIONS(1144), 1, + anon_sym_GT_GT, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [30113] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(880), 1, + anon_sym_LBRACE, + ACTIONS(882), 1, + anon_sym_POUND, + ACTIONS(884), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_LT_LT, + ACTIONS(888), 1, + anon_sym_DASH, + ACTIONS(890), 1, + anon_sym_fn, + ACTIONS(892), 1, + anon_sym_todo, + ACTIONS(894), 1, + anon_sym_panic, + ACTIONS(896), 1, + anon_sym_case, + ACTIONS(898), 1, + anon_sym_assert, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1146), 1, + sym_float, + STATE(694), 1, + sym_identifier, + STATE(714), 1, + sym_tuple, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, + sym__maybe_function_expression, + STATE(1453), 1, + sym__maybe_tuple_expression, + STATE(1512), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(638), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(713), 2, + sym_record, + sym_record_update, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(699), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(769), 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, + [30221] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1148), 1, + sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(502), 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, + [30329] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(368), 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(366), 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, + [30387] = 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, + 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(1036), 1, + anon_sym_fn, + ACTIONS(1150), 1, + sym_float, + STATE(40), 1, + sym_identifier, + STATE(73), 1, + sym_anonymous_function, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, + sym__maybe_function_expression, + STATE(1506), 1, + sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(75), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(36), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(117), 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, + [30495] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1152), 1, + sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(768), 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, + [30603] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, + sym_float, + ACTIONS(1154), 1, + anon_sym_GT_GT, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [30715] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, + sym_float, + ACTIONS(1156), 1, + anon_sym_GT_GT, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [30827] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(934), 1, + sym_float, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1389), 1, + sym_expression_bit_string_segment, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1165), 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, + [30936] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1158), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(544), 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(542), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30995] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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(570), 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, + [31069] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(572), 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(570), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31125] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1178), 1, + sym_float, + ACTIONS(1182), 1, + sym__decimal, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(1180), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(214), 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, + [31231] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(948), 1, + anon_sym_LBRACE, + ACTIONS(950), 1, + anon_sym_POUND, + ACTIONS(952), 1, + anon_sym_LBRACK, + ACTIONS(954), 1, + anon_sym_LT_LT, + ACTIONS(956), 1, + anon_sym_DASH, + ACTIONS(958), 1, + anon_sym_fn, + ACTIONS(960), 1, + anon_sym_todo, + ACTIONS(962), 1, + anon_sym_panic, + ACTIONS(964), 1, + anon_sym_case, + ACTIONS(966), 1, + anon_sym_assert, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(978), 1, + sym__name, + ACTIONS(980), 1, + sym__upname, + ACTIONS(1184), 1, + sym_float, + ACTIONS(1188), 1, + sym__decimal, + STATE(372), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, + sym__maybe_function_expression, + STATE(1458), 1, + sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(382), 2, + sym_record, + sym_record_update, + ACTIONS(1186), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(361), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(403), 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, + [31337] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(948), 1, + anon_sym_LBRACE, + ACTIONS(950), 1, + anon_sym_POUND, + ACTIONS(952), 1, + anon_sym_LBRACK, + ACTIONS(954), 1, + anon_sym_LT_LT, + ACTIONS(956), 1, + anon_sym_DASH, + ACTIONS(958), 1, + anon_sym_fn, + ACTIONS(960), 1, + anon_sym_todo, + ACTIONS(962), 1, + anon_sym_panic, + ACTIONS(964), 1, + anon_sym_case, + ACTIONS(966), 1, + anon_sym_assert, + ACTIONS(968), 1, + anon_sym_BANG, + ACTIONS(970), 1, + anon_sym_DQUOTE, + ACTIONS(976), 1, + sym__decimal, + ACTIONS(978), 1, + sym__name, + ACTIONS(980), 1, + sym__upname, + ACTIONS(1190), 1, + sym_float, + STATE(372), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(381), 1, + sym_anonymous_function, + STATE(1375), 1, + sym__maybe_function_expression, + STATE(1458), 1, + sym__maybe_tuple_expression, + STATE(1501), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(382), 2, + sym_record, + sym_record_update, + ACTIONS(974), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(361), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(399), 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, + [31443] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(570), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31507] = 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, + 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(59), 1, + sym__name, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1036), 1, + anon_sym_fn, + ACTIONS(1192), 1, + sym_float, + ACTIONS(1196), 1, + sym__decimal, + STATE(40), 1, + sym_identifier, + STATE(73), 1, + sym_anonymous_function, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, + sym__maybe_function_expression, + STATE(1506), 1, + sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(75), 2, + sym_record, + sym_record_update, + ACTIONS(1194), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(36), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(104), 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, + [31613] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(720), 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(718), 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, + [31689] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(880), 1, + anon_sym_LBRACE, + ACTIONS(882), 1, + anon_sym_POUND, + ACTIONS(884), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_LT_LT, + ACTIONS(888), 1, + anon_sym_DASH, + ACTIONS(890), 1, + anon_sym_fn, + ACTIONS(892), 1, + anon_sym_todo, + ACTIONS(894), 1, + anon_sym_panic, + ACTIONS(896), 1, + anon_sym_case, + ACTIONS(898), 1, + anon_sym_assert, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1200), 1, + sym_float, + STATE(694), 1, + sym_identifier, + STATE(714), 1, + sym_tuple, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, + sym__maybe_function_expression, + STATE(1453), 1, + sym__maybe_tuple_expression, + STATE(1512), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(638), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(713), 2, + sym_record, + sym_record_update, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(699), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(751), 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, + [31795] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(570), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31861] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 16, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(570), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31921] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(740), 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(738), 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, + [31997] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(290), 1, + anon_sym_DASH, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(294), 1, + anon_sym_todo, + ACTIONS(296), 1, + anon_sym_panic, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(302), 1, + anon_sym_assert, + ACTIONS(306), 1, + anon_sym_BANG, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1202), 1, + sym_float, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1457), 1, + sym__maybe_tuple_expression, + STATE(1460), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(218), 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, + [32103] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(704), 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(702), 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, + [32179] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1204), 1, + sym_float, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(487), 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, + [32285] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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(570), 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, + [32357] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(1202), 1, + sym_float, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(218), 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, + [32463] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(880), 1, + anon_sym_LBRACE, + ACTIONS(882), 1, + anon_sym_POUND, + ACTIONS(884), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_LT_LT, + ACTIONS(888), 1, + anon_sym_DASH, + ACTIONS(890), 1, + anon_sym_fn, + ACTIONS(892), 1, + anon_sym_todo, + ACTIONS(894), 1, + anon_sym_panic, + ACTIONS(896), 1, + anon_sym_case, + ACTIONS(898), 1, + anon_sym_assert, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1206), 1, + sym_float, + ACTIONS(1210), 1, + sym__decimal, + STATE(694), 1, + sym_identifier, + STATE(714), 1, + sym_tuple, + STATE(716), 1, + sym_anonymous_function, + STATE(1416), 1, + sym__maybe_function_expression, + STATE(1453), 1, + sym__maybe_tuple_expression, + STATE(1512), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(638), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(713), 2, + sym_record, + sym_record_update, + ACTIONS(1208), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(699), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(744), 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, + [32569] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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(570), 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [32639] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(280), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + anon_sym_POUND, + ACTIONS(286), 1, + anon_sym_LBRACK, + ACTIONS(288), 1, + anon_sym_LT_LT, + ACTIONS(292), 1, + anon_sym_fn, + ACTIONS(298), 1, + anon_sym_case, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(316), 1, + sym__name, + ACTIONS(318), 1, + sym__upname, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(926), 1, + anon_sym_DASH, + ACTIONS(928), 1, + anon_sym_todo, + ACTIONS(930), 1, + anon_sym_assert, + ACTIONS(932), 1, + anon_sym_BANG, + ACTIONS(1178), 1, + sym_float, + ACTIONS(1182), 1, + sym__decimal, + STATE(156), 1, + sym_identifier, + STATE(159), 1, + sym_tuple, + STATE(168), 1, + sym_anonymous_function, + STATE(1420), 1, + sym__maybe_function_expression, + STATE(1460), 1, + sym__maybe_record_expression, + STATE(1502), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(142), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(172), 2, + sym_record, + sym_record_update, + ACTIONS(1180), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(155), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(214), 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, + [32745] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(660), 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(658), 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, + [32821] = 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, + 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(1036), 1, + anon_sym_fn, + ACTIONS(1212), 1, + sym_float, + STATE(40), 1, + sym_identifier, + STATE(73), 1, + sym_anonymous_function, + STATE(74), 1, + sym_tuple, + STATE(1368), 1, + sym__maybe_function_expression, + STATE(1506), 1, + sym__maybe_record_expression, + STATE(1507), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(75), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(36), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(89), 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, + [32927] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(680), 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(678), 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, + [33003] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(650), 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(648), 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, + [33079] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1164), 1, + anon_sym_AMP_AMP, + ACTIONS(1172), 1, + anon_sym_PIPE_GT, + ACTIONS(1198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1160), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1162), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1166), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1174), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1168), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1170), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1176), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(656), 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(654), 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, + [33155] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(596), 1, + anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LT_LT, + ACTIONS(602), 1, + anon_sym_DASH, + ACTIONS(604), 1, + anon_sym_fn, + ACTIONS(606), 1, + anon_sym_todo, + ACTIONS(608), 1, + anon_sym_panic, + ACTIONS(612), 1, + anon_sym_case, + ACTIONS(614), 1, + anon_sym_assert, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1218), 1, + sym__decimal, + STATE(441), 1, + sym_identifier, + STATE(443), 1, + sym_tuple, + STATE(452), 1, + sym_anonymous_function, + STATE(1333), 1, + sym__maybe_function_expression, + STATE(1489), 1, + sym__maybe_record_expression, + STATE(1539), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(423), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(446), 2, + sym_record, + sym_record_update, + ACTIONS(1216), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(437), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(485), 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, + [33261] = 4, + ACTIONS(3), 1, + sym_module_comment, + 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, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(372), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33316] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(378), 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(376), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33371] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(382), 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(380), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33426] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(516), 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(514), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33481] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(278), 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(276), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33534] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(642), 9, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(640), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33587] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(568), 9, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(566), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [33640] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1220), 1, + anon_sym_LPAREN, + STATE(387), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(272), 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(270), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33695] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(322), 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(320), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33745] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(459), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 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, + [33799] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(382), 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(380), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33849] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(378), 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(376), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33899] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(374), 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(372), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33949] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(278), 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(276), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33999] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1224), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(346), 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(344), 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, + [34053] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(332), 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(330), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34103] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(336), 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(334), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34153] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(464), 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(462), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34203] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 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(482), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34253] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(388), 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(386), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34303] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(1226), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 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, + [34357] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(516), 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(514), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34407] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(342), 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(340), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34457] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(368), 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(366), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34507] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(510), 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(508), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34557] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(498), 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(496), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34607] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(490), 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(488), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34657] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(520), 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(518), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34706] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(534), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 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, + [34757] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 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, + [34808] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(536), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 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, + [34859] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(558), 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(556), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34908] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(532), 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(530), 26, + anon_sym_RBRACE, + 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, + [34957] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(554), 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, - ACTIONS(437), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(552), 26, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30035,19 +34767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29123] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35006] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 10, - anon_sym_DOT, + ACTIONS(528), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30055,22 +34788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(429), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(526), 26, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30086,19 +34812,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29178] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35055] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(358), 10, + ACTIONS(540), 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(538), 26, + anon_sym_RBRACE, anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35104] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(550), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30106,22 +34878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(356), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(548), 26, anon_sym_RBRACE, - anon_sym_AT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30137,19 +34902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29233] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35153] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 10, - anon_sym_DOT, + ACTIONS(524), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30157,22 +34923,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(433), 33, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(522), 26, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, + 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, + [35202] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1230), 1, anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(544), 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(542), 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, @@ -30188,40 +34993,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29288] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35253] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 9, + ACTIONS(1232), 2, anon_sym_SLASH, - anon_sym_EQ, + anon_sym_STAR, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 9, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(570), 21, + 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, + [35305] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(650), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(648), 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, + [35373] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1254), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1252), 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, + [35441] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, anon_sym_STAR, - ACTIONS(662), 32, - anon_sym_LBRACE, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(720), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(718), 10, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35509] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(732), 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(730), 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, @@ -30237,17 +35245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29341] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35557] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 9, - anon_sym_DOT, + ACTIONS(568), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30256,21 +35266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(328), 32, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(566), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30286,18 +35289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29394] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35605] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 9, + ACTIONS(642), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -30305,21 +35310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(674), 32, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(640), 25, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_fn, - anon_sym_external, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30335,20 +35333,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29447] = 6, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35653] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1258), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1256), 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, + [35721] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1110), 1, - anon_sym_LPAREN, - STATE(343), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 11, + ACTIONS(590), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30360,9 +35411,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(270), 26, + ACTIONS(588), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30387,13 +35437,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29502] = 4, + [35769] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 11, + ACTIONS(676), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30405,10 +35455,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(336), 27, + ACTIONS(674), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30433,13 +35481,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29552] = 4, + [35817] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(322), 11, + ACTIONS(672), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30451,10 +35499,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(320), 27, + ACTIONS(670), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30479,13 +35525,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29602] = 4, + [35865] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(318), 11, + ACTIONS(563), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30497,10 +35543,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(316), 27, + ACTIONS(560), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30525,13 +35569,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29652] = 4, + [35913] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(447), 11, + ACTIONS(668), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30543,10 +35587,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(445), 27, + ACTIONS(666), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30571,13 +35613,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29702] = 4, + [35961] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 11, + ACTIONS(646), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30589,10 +35631,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(470), 27, + ACTIONS(644), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30617,13 +35657,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29752] = 4, + [36009] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(358), 11, + ACTIONS(728), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30635,10 +35675,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(356), 27, + ACTIONS(726), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30663,13 +35701,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29802] = 4, + [36057] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(466), 11, + ACTIONS(712), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30681,10 +35719,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(464), 27, + ACTIONS(710), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30709,13 +35745,67 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29852] = 4, + [36105] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(656), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(654), 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, + [36173] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(334), 11, + ACTIONS(664), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30727,10 +35817,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(332), 27, + ACTIONS(662), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30755,13 +35843,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29902] = 4, + [36221] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(439), 11, + ACTIONS(708), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30773,10 +35861,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(437), 27, + ACTIONS(706), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30801,17 +35887,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29952] = 6, + [36269] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 11, + ACTIONS(572), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30823,7 +35905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(455), 25, + ACTIONS(570), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30849,17 +35931,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30006] = 6, + [36317] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(461), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 11, + ACTIONS(736), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30871,7 +35949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(455), 25, + ACTIONS(734), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30897,76 +35975,194 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30060] = 6, + [36365] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1116), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_as, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(346), 11, + ACTIONS(1232), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 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(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(344), 25, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 11, 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, + [36431] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + ACTIONS(570), 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, + [36495] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1248), 1, anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1250), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(572), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 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, - [30114] = 4, + [36557] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(504), 11, + ACTIONS(1232), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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(502), 27, + ACTIONS(570), 18, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30978,41 +36174,42 @@ 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, - [30164] = 4, + [36615] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 11, + ACTIONS(1232), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 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(433), 27, + ACTIONS(570), 19, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31025,25 +36222,19 @@ 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, - [30214] = 4, + [36671] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 11, + ACTIONS(688), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31055,10 +36246,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(429), 27, + ACTIONS(686), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31083,13 +36272,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30264] = 4, + [36719] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 11, + ACTIONS(696), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31101,10 +36290,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(478), 27, + ACTIONS(694), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31129,13 +36316,67 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30314] = 4, + [36767] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1240), 1, + anon_sym_AMP_AMP, + ACTIONS(1248), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1250), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(680), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1234), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1244), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1246), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(678), 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, + [36835] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 11, + ACTIONS(716), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31147,10 +36388,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(328), 27, + ACTIONS(714), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31175,13 +36414,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30364] = 4, + [36883] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 11, + ACTIONS(692), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31193,10 +36432,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(324), 27, + ACTIONS(690), 25, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31221,13 +36458,62 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30414] = 4, + [36931] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1264), 1, + anon_sym_SLASH, + STATE(422), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1260), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1262), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36981] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + STATE(448), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(362), 11, + ACTIONS(272), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31236,16 +36522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(360), 27, + ACTIONS(270), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31261,19 +36545,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37031] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1273), 1, + anon_sym_SLASH, + STATE(425), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1269), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1271), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37081] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1273), 1, + anon_sym_SLASH, + STATE(422), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1275), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [30464] = 4, + ACTIONS(1277), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37131] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 11, + ACTIONS(490), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31282,15 +36650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(512), 26, + ACTIONS(488), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31306,19 +36674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30513] = 4, + anon_sym_DOT_DOT, + [37176] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(536), 11, + ACTIONS(368), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31327,15 +36691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(534), 26, + ACTIONS(366), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31351,19 +36715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30562] = 4, + anon_sym_DOT_DOT, + [37221] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 11, + ACTIONS(322), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31372,15 +36732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(550), 26, + ACTIONS(320), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31396,19 +36756,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37266] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1283), 1, + anon_sym_LPAREN, + STATE(470), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1279), 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, - [30611] = 4, + ACTIONS(1281), 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, + [37315] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 11, + ACTIONS(484), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31417,15 +36816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(530), 26, + ACTIONS(482), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31441,19 +36840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30660] = 4, + anon_sym_DOT_DOT, + [37360] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 11, + ACTIONS(498), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31462,15 +36857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(542), 26, + ACTIONS(496), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31486,21 +36881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30709] = 5, + anon_sym_DOT_DOT, + [37405] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1120), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(526), 11, + ACTIONS(336), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31509,14 +36898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(524), 25, + ACTIONS(334), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31532,21 +36922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30760] = 5, + anon_sym_DOT_DOT, + [37450] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(540), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 11, + ACTIONS(332), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31555,14 +36939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(455), 25, + ACTIONS(330), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31578,19 +36963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30811] = 4, + anon_sym_DOT_DOT, + [37495] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 11, + ACTIONS(510), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31599,15 +36980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(546), 26, + ACTIONS(508), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31623,21 +37004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30860] = 5, + anon_sym_DOT_DOT, + [37540] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(538), 1, - anon_sym_DOT, + ACTIONS(1285), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 11, + ACTIONS(346), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31646,14 +37024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(455), 25, + ACTIONS(344), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31669,19 +37047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30911] = 4, + anon_sym_DOT_DOT, + [37589] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(522), 11, + ACTIONS(464), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31690,15 +37064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(520), 26, + ACTIONS(462), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31714,21 +37088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30960] = 5, + anon_sym_DOT_DOT, + [37634] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, + ACTIONS(457), 1, anon_sym_LPAREN, + ACTIONS(1289), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 11, + ACTIONS(455), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31737,14 +37108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(455), 25, + ACTIONS(453), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31760,19 +37131,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37683] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1260), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31011] = 4, + ACTIONS(1262), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37728] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(518), 11, + ACTIONS(342), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31781,15 +37189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(516), 26, + ACTIONS(340), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31805,71 +37213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31060] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - 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(624), 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(622), 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, - [31124] = 4, + anon_sym_DOT_DOT, + [37773] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 11, + ACTIONS(388), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31878,14 +37230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(670), 25, + ACTIONS(386), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31901,47 +37254,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31172] = 9, + anon_sym_DOT_DOT, + [37818] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(1292), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(455), 8, 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(624), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(622), 18, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(453), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -31950,70 +37290,22 @@ 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, - [31230] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1132), 1, anon_sym_PIPE_GT, - 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(1134), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(624), 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(622), 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, - [31292] = 4, + anon_sym_DOT_DOT, + [37867] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 11, + ACTIONS(554), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32022,14 +37314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(662), 25, + ACTIONS(552), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32045,19 +37337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31340] = 4, + anon_sym_DOT_DOT, + [37911] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1296), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(726), 11, + ACTIONS(455), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32066,14 +37355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(724), 25, + ACTIONS(453), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32089,127 +37378,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31388] = 14, + anon_sym_DOT_DOT, + [37957] = 6, 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(1302), 1, + anon_sym_LPAREN, + STATE(578), 1, + sym_constant_record_arguments, 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(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, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1138), 10, - anon_sym_RBRACE, + ACTIONS(1298), 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, - [31456] = 14, + ACTIONS(1300), 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, + [38005] = 6, 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(1308), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_type_arguments, 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(704), 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(702), 10, - anon_sym_RBRACE, + ACTIONS(1304), 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, - [31524] = 4, + ACTIONS(1306), 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, + [38053] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1310), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(636), 11, + ACTIONS(455), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32218,14 +37480,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(634), 25, + ACTIONS(453), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32241,19 +37503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31572] = 4, + anon_sym_DOT_DOT, + [38099] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 11, + ACTIONS(528), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32262,14 +37520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(674), 25, + ACTIONS(526), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32285,94 +37543,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31620] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1132), 1, - anon_sym_PIPE_GT, - 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(624), 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(622), 11, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31686] = 6, + anon_sym_DOT_DOT, + [38143] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(540), 9, + anon_sym_DOT, 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(624), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(622), 21, + anon_sym_STAR, + ACTIONS(538), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32384,73 +37579,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [31738] = 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(1148), 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(1146), 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, - [31806] = 4, + anon_sym_DOT_DOT, + [38187] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1312), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(556), 11, + ACTIONS(544), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32459,14 +37601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(554), 25, + ACTIONS(542), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32482,19 +37624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31854] = 4, + anon_sym_DOT_DOT, + [38233] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(624), 11, + ACTIONS(524), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32503,14 +37641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(622), 25, + ACTIONS(522), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32526,45 +37664,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [31902] = 8, + anon_sym_DOT_DOT, + [38277] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1122), 2, + ACTIONS(550), 8, 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(624), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(622), 19, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(548), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32574,19 +37698,22 @@ 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, - [31958] = 4, + anon_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, + [38321] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 11, + ACTIONS(455), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32595,14 +37722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(682), 25, + ACTIONS(453), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32618,19 +37745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32006] = 4, + anon_sym_DOT_DOT, + [38367] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(692), 11, + ACTIONS(520), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32639,14 +37762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(690), 25, + ACTIONS(518), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32662,181 +37785,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, + [38411] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1314), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32054] = 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, + ACTIONS(1316), 17, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, 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(688), 3, + 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__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(686), 10, + [38455] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1318), 1, anon_sym_RBRACE, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1330), 1, sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + STATE(1456), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(515), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32122] = 14, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [38539] = 24, 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, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, 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(640), 3, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, sym__decimal, + ACTIONS(1336), 1, sym__discard_name, + ACTIONS(1338), 1, 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(638), 10, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1342), 1, anon_sym_RBRACE, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + STATE(1526), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(515), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [38623] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1344), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32190] = 14, + ACTIONS(1346), 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, + [38667] = 24, 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, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, 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, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, sym__decimal, + ACTIONS(1336), 1, sym__discard_name, + ACTIONS(1338), 1, 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, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1348), 1, anon_sym_RBRACE, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + STATE(1471), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(515), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [38751] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1330), 1, sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1350), 1, + anon_sym_RBRACE, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + STATE(1442), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(515), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32258] = 4, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [38835] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 11, + ACTIONS(532), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32845,14 +38121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(650), 25, + ACTIONS(530), 24, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32868,19 +38145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [32306] = 4, + anon_sym_DOT_DOT, + [38879] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 11, + ACTIONS(558), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32889,14 +38162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(666), 25, + ACTIONS(556), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + 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, @@ -32912,379 +38185,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, + [38923] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1330), 1, sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1352), 1, + anon_sym_RBRACE, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + STATE(1529), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(515), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32354] = 4, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [39007] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1358), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(680), 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(678), 25, - anon_sym_RBRACE, + ACTIONS(1354), 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_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32402] = 4, + ACTIONS(1356), 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, + [39055] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(700), 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(698), 25, - anon_sym_RBRACE, + ACTIONS(1362), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32450] = 4, + ACTIONS(1364), 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, + [39098] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(696), 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(694), 25, - anon_sym_RBRACE, + ACTIONS(1366), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32498] = 4, + ACTIONS(1368), 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, + [39141] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1374), 1, + anon_sym_size, + ACTIONS(1380), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(708), 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(706), 25, - anon_sym_RBRACE, + ACTIONS(1370), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1291), 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(1376), 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, + [39198] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1382), 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_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32546] = 4, + ACTIONS(1384), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [39241] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1374), 1, + anon_sym_size, + ACTIONS(1380), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 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, + ACTIONS(1386), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1291), 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(1376), 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, + [39298] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, - sym__discard_name, + ACTIONS(628), 1, sym__name, - ACTIONS(642), 25, - anon_sym_RBRACE, + ACTIONS(630), 1, + sym__upname, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1388), 1, + anon_sym_RPAREN, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1392), 1, + anon_sym_DOT_DOT, + ACTIONS(1394), 1, sym_float, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1137), 1, + sym__pattern, + STATE(1173), 1, + sym_record_pattern_argument, + STATE(1436), 1, + sym_label, + STATE(1452), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32594] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [39381] = 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, + ACTIONS(1396), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32642] = 4, + ACTIONS(1398), 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, + [39424] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1402), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1400), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1238), 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(1376), 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, + [39481] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(713), 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(710), 25, + ACTIONS(1404), 1, anon_sym_RBRACE, + ACTIONS(1406), 1, anon_sym_POUND, + ACTIONS(1409), 1, anon_sym_LBRACK, + ACTIONS(1412), 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(1415), 1, + anon_sym_DASH, + ACTIONS(1418), 1, anon_sym_DQUOTE, + ACTIONS(1421), 1, sym_float, + ACTIONS(1427), 1, + sym__decimal, + ACTIONS(1430), 1, + sym__discard_name, + ACTIONS(1433), 1, + sym__name, + ACTIONS(1436), 1, + sym__upname, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(472), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1424), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [32690] = 4, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [39562] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(730), 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(728), 25, - anon_sym_RBRACE, + ACTIONS(1439), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_BANG, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32738] = 6, + ACTIONS(1441), 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, + [39605] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1154), 1, - anon_sym_SLASH, - STATE(386), 1, - aux_sym_module_repeat1, + ACTIONS(1447), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1150), 14, + ACTIONS(1443), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -33295,10 +38760,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1152), 18, + ACTIONS(1445), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -33314,21 +38778,63 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32788] = 6, + [39650] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1451), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1449), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1167), 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(1376), 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, + [39707] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1160), 1, - anon_sym_SLASH, - STATE(386), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 14, + ACTIONS(1453), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -33339,10 +38845,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1158), 18, + ACTIONS(1455), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -33358,21 +38863,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32838] = 6, + [39750] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1154), 1, - anon_sym_SLASH, - STATE(385), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1163), 14, + ACTIONS(1457), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, + anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -33383,10 +38884,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1165), 18, + ACTIONS(1459), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -33402,21 +38902,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32888] = 6, + [39793] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1171), 1, - anon_sym_LPAREN, - STATE(414), 1, - sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1167), 14, + ACTIONS(1461), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -33427,9 +38922,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1169), 17, + ACTIONS(1463), 18, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -33445,17 +38941,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32937] = 4, + [39836] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 14, + ACTIONS(1465), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -33466,11 +38961,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1158), 19, + ACTIONS(1467), 18, anon_sym_if, anon_sym_import, anon_sym_as, - anon_sym_SLASH, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -33486,158 +38980,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32982] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(447), 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(445), 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, - [33027] = 6, + [39879] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1173), 1, - anon_sym_LPAREN, - STATE(455), 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, + ACTIONS(1469), 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, - [33076] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1175), 1, - anon_sym_RBRACE, - ACTIONS(1177), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1179), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1187), 1, sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, - STATE(1359), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(437), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, sym__hex, sym__octal, sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [33160] = 4, + sym__upname, + ACTIONS(1471), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [39922] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(466), 9, - anon_sym_DOT, + ACTIONS(676), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33646,9 +39034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(464), 23, + ACTIONS(674), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33670,14 +39058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33204] = 4, + [39965] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(322), 9, - anon_sym_DOT, + ACTIONS(672), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33686,9 +39073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(320), 23, + ACTIONS(670), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33710,14 +39097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33248] = 4, + [40008] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 9, - anon_sym_DOT, + ACTIONS(563), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33726,9 +39112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(324), 23, + ACTIONS(560), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33750,117 +39136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33292] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1199), 1, - anon_sym_RBRACE, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, - STATE(1428), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(437), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [33376] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1201), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1203), 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, - [33420] = 6, + [40051] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1209), 1, - anon_sym_DOT, - ACTIONS(1211), 1, + ACTIONS(1477), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1205), 13, + ACTIONS(1473), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -33874,7 +39158,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1207), 17, + ACTIONS(1475), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -33892,74 +39176,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33468] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1213), 1, - anon_sym_RBRACE, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, - STATE(1334), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(437), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [33552] = 4, + [40096] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 9, - anon_sym_DOT, + ACTIONS(668), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33968,9 +39191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(336), 23, + ACTIONS(666), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -33992,17 +39215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33596] = 6, + [40139] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(346), 8, + ACTIONS(646), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34011,8 +39230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(344), 22, + ACTIONS(644), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34034,14 +39254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33644] = 4, + [40182] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 9, - anon_sym_DOT, + ACTIONS(590), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34050,9 +39269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(470), 23, + ACTIONS(588), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34074,74 +39293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33688] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1219), 1, - anon_sym_RBRACE, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, - STATE(1360), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(437), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [33772] = 4, + [40225] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(362), 9, - anon_sym_DOT, + ACTIONS(736), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34150,9 +39308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(360), 23, + ACTIONS(734), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34174,56 +39332,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33816] = 6, + [40268] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1225), 1, - anon_sym_LPAREN, - STATE(541), 1, - sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1221), 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(1223), 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, - [33864] = 4, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(572), 6, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(570), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DOT_DOT, + [40315] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(334), 9, - anon_sym_DOT, + ACTIONS(688), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34232,9 +39388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(332), 23, + ACTIONS(686), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34256,17 +39412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33908] = 6, + [40358] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(1227), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 8, + ACTIONS(572), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34275,8 +39427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(455), 22, + ACTIONS(570), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34298,14 +39451,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33956] = 4, + [40401] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 9, - anon_sym_DOT, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(678), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [40462] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(716), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34314,9 +39514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(478), 23, + ACTIONS(714), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34338,14 +39538,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34000] = 4, + [40505] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(376), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(318), 9, - anon_sym_DOT, + ACTIONS(1499), 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(1501), 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, + [40550] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(732), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34354,9 +39593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(316), 23, + ACTIONS(730), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34378,14 +39617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34044] = 4, + [40593] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(504), 9, - anon_sym_DOT, + ACTIONS(664), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34394,9 +39632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(502), 23, + ACTIONS(662), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34418,19 +39656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34088] = 6, + [40636] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1235), 1, - anon_sym_LPAREN, - STATE(521), 1, - sym_type_arguments, + ACTIONS(1507), 1, + anon_sym_LBRACE, + ACTIONS(1509), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1231), 13, + ACTIONS(1503), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -34442,7 +39679,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1233), 17, + ACTIONS(1505), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34460,17 +39697,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34136] = 4, + [40683] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1511), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, @@ -34482,7 +39718,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1239), 17, + ACTIONS(1513), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34500,55 +39736,54 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34180] = 6, + [40726] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(1241), 1, - anon_sym_DOT, + ACTIONS(1519), 1, + anon_sym_LBRACE, + ACTIONS(1521), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 8, - anon_sym_SLASH, + ACTIONS(1515), 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(1517), 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(455), 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, - [34228] = 4, + 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, + [40773] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 14, + ACTIONS(1523), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -34563,7 +39798,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1246), 17, + ACTIONS(1525), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34581,57 +39816,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34271] = 23, + [40816] = 24, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1248), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1253), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1256), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1259), 1, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1265), 1, + ACTIONS(1392), 1, + anon_sym_DOT_DOT, + ACTIONS(1394), 1, sym_float, - ACTIONS(1271), 1, - sym__decimal, - ACTIONS(1274), 1, - sym__discard_name, - ACTIONS(1277), 1, - sym__name, - ACTIONS(1280), 1, - sym__upname, - STATE(833), 1, + ACTIONS(1527), 1, + anon_sym_RPAREN, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(966), 1, sym_identifier, - STATE(913), 1, + STATE(1003), 1, sym_string, - STATE(963), 1, + STATE(1137), 1, sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, + STATE(1173), 1, + sym_record_pattern_argument, + STATE(1436), 1, + sym_label, + STATE(1517), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(415), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1268), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(936), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -34639,17 +39875,66 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [34352] = 5, + [40899] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(433), 1, - anon_sym_DOT, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1283), 13, - ts_builtin_sym_end, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(718), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [40960] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1533), 1, anon_sym_LBRACE, + ACTIONS(1535), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1529), 12, + ts_builtin_sym_end, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -34661,7 +39946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1285), 17, + ACTIONS(1531), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34679,24 +39964,352 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34397] = 4, + [41007] = 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, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(706), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [41050] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 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(694), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [41093] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(692), 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(690), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [41136] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1402), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1537), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1238), 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(1376), 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, + [41193] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(648), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [41254] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(654), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [41315] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(628), 1, + sym__name, + ACTIONS(630), 1, + sym__upname, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1392), 1, + anon_sym_DOT_DOT, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1539), 1, + anon_sym_RPAREN, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1072), 1, + sym_record_pattern_argument, + STATE(1137), 1, + sym__pattern, + STATE(1436), 1, + sym_label, + STATE(1444), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [41398] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(544), 9, - anon_sym_DOT, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(542), 22, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(570), 17, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34711,20 +40324,14 @@ 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, - [34440] = 4, + [41449] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(532), 8, + ACTIONS(712), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34733,9 +40340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(530), 23, + ACTIONS(710), 23, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34757,107 +40364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34483] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1291), 1, - anon_sym_size, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1287), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1079), 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(1293), 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, - [34540] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1303), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1299), 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(1301), 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, - [34585] = 5, + [41492] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1309), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1305), 13, + ACTIONS(1541), 14, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -34865,7 +40385,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1307), 17, + ACTIONS(1543), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -34883,24 +40403,36 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34630] = 4, + [41535] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(552), 9, - anon_sym_DOT, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(550), 22, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(570), 16, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -34914,105 +40446,58 @@ 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, - [34673] = 4, + [41588] = 23, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1311), 14, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_EQ, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1313), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(1326), 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, - [34716] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(608), 1, + ACTIONS(1328), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, sym__decimal, - ACTIONS(618), 1, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, sym__name, - ACTIONS(620), 1, + ACTIONS(1340), 1, sym__upname, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1315), 1, - anon_sym_RPAREN, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1319), 1, - anon_sym_DOT_DOT, - ACTIONS(1321), 1, - sym_float, - STATE(833), 1, + ACTIONS(1545), 1, + anon_sym_RBRACE, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(980), 1, sym_identifier, - STATE(898), 1, + STATE(1013), 1, sym_string, - STATE(1085), 1, + STATE(1073), 1, sym__pattern, - STATE(1100), 1, - sym_record_pattern_argument, - STATE(1339), 1, - sym_label, - STATE(1348), 1, - sym_pattern_spread, + STATE(1132), 1, + sym_case_clause_pattern, + STATE(1174), 1, + sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(472), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(1032), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -35020,61 +40505,22 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [34799] = 6, + [41669] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1327), 1, + ACTIONS(1551), 1, anon_sym_LBRACE, - ACTIONS(1329), 1, + ACTIONS(1553), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1323), 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(1325), 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, - [34846] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1331), 14, + ACTIONS(1547), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -35082,7 +40528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1333), 17, + ACTIONS(1549), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35100,77 +40546,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34889] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(518), 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(516), 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, - [34932] = 11, + [41716] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(1372), 1, anon_sym_DASH, - ACTIONS(1297), 1, + ACTIONS(1380), 1, anon_sym_unit, - ACTIONS(1337), 1, + ACTIONS(1451), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1335), 2, + ACTIONS(1555), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1295), 3, + ACTIONS(1378), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1146), 5, + STATE(1167), 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(1293), 14, + ACTIONS(1376), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -35185,14 +40592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34989] = 4, + [41773] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(522), 9, - anon_sym_DOT, + ACTIONS(728), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35201,8 +40607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(520), 22, + ACTIONS(726), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -35224,25 +40631,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35032] = 5, + [41816] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1339), 1, - anon_sym_as, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(526), 8, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(524), 22, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 12, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -35252,36 +40675,45 @@ 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_DOT_DOT, - [35077] = 4, + [41871] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(548), 9, - anon_sym_DOT, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(546), 22, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 10, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -35289,67 +40721,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_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, - [35120] = 5, + [41928] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1341), 1, - anon_sym_DOT, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 8, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(455), 22, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 9, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, anon_sym_DOT_DOT, - [35165] = 4, + [41987] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1343), 13, + ACTIONS(1557), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -35363,49 +40789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1345), 18, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_type, - anon_sym_const, - anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35208] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1351), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1347), 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(1349), 17, + ACTIONS(1559), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35423,20 +40807,19 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35255] = 4, + [42029] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1355), 14, + ACTIONS(1561), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -35444,7 +40827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1357), 17, + ACTIONS(1563), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35462,319 +40845,168 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35298] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(618), 1, - sym__name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1319), 1, - anon_sym_DOT_DOT, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1359), 1, - anon_sym_RPAREN, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(1085), 1, - sym__pattern, - STATE(1100), 1, - sym_record_pattern_argument, - STATE(1339), 1, - sym_label, - STATE(1356), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [35381] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1361), 1, - anon_sym_RBRACE, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(991), 1, - sym_case_clause_pattern, - STATE(1109), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(415), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [35462] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1363), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(457), 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(455), 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, - [35507] = 11, + [42071] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1337), 1, - anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1365), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(612), 3, + ACTIONS(1565), 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(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1146), 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(1293), 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, - [35564] = 5, + 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, + [42113] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(459), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(457), 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(455), 22, + ACTIONS(1569), 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, - [35609] = 24, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(608), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(614), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1571), 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, - ACTIONS(618), 1, sym__name, - ACTIONS(620), 1, - sym__upname, - ACTIONS(1177), 1, + [42155] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1573), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1179), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1319), 1, - anon_sym_DOT_DOT, - ACTIONS(1321), 1, + anon_sym_BANG, + anon_sym_DQUOTE, sym_float, - ACTIONS(1367), 1, - anon_sym_RPAREN, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(962), 1, - sym_record_pattern_argument, - STATE(1085), 1, - sym__pattern, - STATE(1338), 1, - sym_pattern_spread, - STATE(1339), 1, - sym_label, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1575), 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, + [42197] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, + 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, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [35692] = 4, + sym__upname, + ACTIONS(1579), 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, + [42239] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1369), 14, + ACTIONS(1581), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35785,7 +41017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1371), 17, + ACTIONS(1583), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35803,17 +41035,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35735] = 4, + [42281] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1373), 14, + ACTIONS(1585), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35824,7 +41055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1375), 17, + ACTIONS(1587), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35842,17 +41073,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35778] = 4, + [42323] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1377), 14, + ACTIONS(1589), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, - anon_sym_EQ, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35863,7 +41093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1379), 17, + ACTIONS(1591), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35881,18 +41111,15 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35821] = 6, + [42365] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1385), 1, - anon_sym_LBRACE, - ACTIONS(1387), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1381), 12, + ACTIONS(1593), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -35904,7 +41131,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1383), 17, + ACTIONS(1595), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -35922,13 +41149,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35868] = 4, + [42407] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1389), 13, + ACTIONS(1597), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -35942,10 +41169,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1391), 18, + ACTIONS(1599), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -35961,20 +41187,19 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35911] = 4, + [42449] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1393), 14, + ACTIONS(1601), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -35982,7 +41207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1395), 17, + ACTIONS(1603), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36000,20 +41225,72 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35954] = 4, + [42491] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1613), 1, + anon_sym_DASH, + ACTIONS(1615), 1, + sym_float, + STATE(844), 1, + sym_identifier, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(858), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [42563] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1397), 14, + ACTIONS(1617), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH_GT, anon_sym_BANG, anon_sym_DQUOTE, sym_float, @@ -36021,7 +41298,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1399), 17, + ACTIONS(1619), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36039,13 +41316,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35997] = 4, + [42605] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1401), 13, + ACTIONS(1621), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36059,10 +41336,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1403), 18, + ACTIONS(1623), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -36078,38 +41354,37 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36040] = 11, + [42647] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(1372), 1, anon_sym_DASH, - ACTIONS(1291), 1, - anon_sym_size, - ACTIONS(1297), 1, + ACTIONS(1380), 1, anon_sym_unit, + ACTIONS(1451), 1, + anon_sym_size, + STATE(1384), 1, + sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1405), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1295), 3, + ACTIONS(1378), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1079), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1124), 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(1293), 14, + ACTIONS(1376), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36124,59 +41399,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36097] = 11, + [42703] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1613), 1, anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1409), 1, - anon_sym_size, + ACTIONS(1625), 1, + sym_float, + STATE(844), 1, + sym_identifier, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(612), 3, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1081), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(898), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1293), 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, - [36154] = 4, + [42775] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1411), 13, + ACTIONS(1627), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36190,10 +41472,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1413), 18, + ACTIONS(1629), 17, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_DASH, @@ -36209,142 +41490,197 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36197] = 11, + [42817] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1613), 1, anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1409), 1, - anon_sym_size, + ACTIONS(1631), 1, + sym_float, + STATE(844), 1, + sym_identifier, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1415), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(612), 3, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1081), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(899), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1293), 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, - [36254] = 4, + [42889] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(514), 9, - anon_sym_DOT, - anon_sym_SLASH, + ACTIONS(1633), 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(1635), 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(512), 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, + [42931] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1605), 1, 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, - [36297] = 4, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1613), 1, + anon_sym_DASH, + ACTIONS(1637), 1, + sym_float, + STATE(844), 1, + sym_identifier, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(901), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [43003] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(536), 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(534), 22, + ACTIONS(1639), 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, - [36340] = 6, + 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(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, + [43045] = 4, 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, + ACTIONS(1643), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -36356,7 +41692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1419), 17, + ACTIONS(1645), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36374,13 +41710,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36387] = 4, + [43087] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1425), 13, + ACTIONS(1647), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36394,7 +41730,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1427), 17, + ACTIONS(1649), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36412,13 +41748,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36429] = 4, + [43129] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1402), 1, + anon_sym_size, + STATE(1313), 1, + sym_pattern_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1095), 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(1376), 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, + [43185] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1429), 13, + ACTIONS(1651), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36432,7 +41813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1431), 17, + ACTIONS(1653), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36450,16 +41831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36471] = 5, + [43227] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1437), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1655), 13, ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -36471,7 +41851,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1435), 17, + ACTIONS(1657), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36489,13 +41869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36515] = 4, + [43269] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(624), 8, + ACTIONS(368), 9, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -36504,13 +41884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(622), 22, - anon_sym_LBRACE, + anon_sym_PIPE, + ACTIONS(366), 21, + anon_sym_if, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_as, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36526,14 +41907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - [36557] = 4, + [43311] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1439), 13, + ACTIONS(1659), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36547,7 +41927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1441), 17, + ACTIONS(1661), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36565,13 +41945,111 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36599] = 4, + [43353] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1374), 1, + anon_sym_size, + ACTIONS(1380), 1, + anon_sym_unit, + STATE(1430), 1, + sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1443), 13, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1128), 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(1376), 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, + [43409] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(616), 1, + anon_sym_BANG, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1613), 1, + anon_sym_DASH, + ACTIONS(1663), 1, + sym_float, + STATE(844), 1, + sym_identifier, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(938), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [43481] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1665), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36585,7 +42063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1445), 17, + ACTIONS(1667), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36603,13 +42081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36641] = 4, + [43523] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1447), 13, + ACTIONS(1669), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36623,7 +42101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1449), 17, + ACTIONS(1671), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36641,13 +42119,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36683] = 4, + [43565] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1451), 13, + ACTIONS(1503), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36661,7 +42139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1453), 17, + ACTIONS(1505), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36679,105 +42157,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36725] = 13, + [43607] = 4, 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(638), 7, + ACTIONS(1673), 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_DOT_DOT, - [36785] = 11, + 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(1675), 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, + [43649] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1409), 1, - anon_sym_size, - STATE(1314), 1, - sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(612), 3, + ACTIONS(1677), 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(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(989), 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(1293), 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, - [36841] = 4, + sym__upname, + ACTIONS(1679), 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, + [43691] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1475), 13, + ACTIONS(1681), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36791,7 +42253,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1477), 17, + ACTIONS(1683), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36809,13 +42271,172 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36883] = 4, + [43733] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1615), 1, + sym_float, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + STATE(894), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(858), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [43805] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1685), 1, + sym_float, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + STATE(894), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(907), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [43877] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1687), 1, + sym_float, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + STATE(894), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(905), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [43949] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1479), 13, + ACTIONS(1689), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36829,7 +42450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1481), 17, + ACTIONS(1691), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36847,60 +42468,66 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36925] = 13, + [43991] = 19, 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(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1693), 1, + sym_float, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + STATE(894), 1, + sym_identifier, 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(720), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [36985] = 4, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(903), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [44063] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1483), 13, + ACTIONS(1695), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36914,7 +42541,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1485), 17, + ACTIONS(1697), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -36932,51 +42559,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37027] = 4, + [44105] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(652), 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(650), 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, - [37069] = 4, + ACTIONS(1699), 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(1701), 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, + [44147] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1487), 13, + ACTIONS(1703), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -36990,7 +42617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1489), 17, + ACTIONS(1705), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37008,53 +42635,69 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37111] = 4, + [44189] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(900), 1, + anon_sym_BANG, + ACTIONS(902), 1, + anon_sym_DQUOTE, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(910), 1, + sym__name, + ACTIONS(912), 1, + sym__upname, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1605), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1707), 1, + sym_float, + STATE(857), 1, + sym__case_clause_tuple_access, + STATE(879), 1, + sym__case_clause_guard_binary_expression, + STATE(894), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(668), 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(666), 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, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(919), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [44261] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1713), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1491), 13, + ACTIONS(1709), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -37066,7 +42709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1493), 17, + ACTIONS(1711), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37084,15 +42727,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37195] = 4, + [44305] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1719), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1495), 13, + ACTIONS(1715), 12, ts_builtin_sym_end, - anon_sym_LBRACE, anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, @@ -37104,7 +42748,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1497), 17, + ACTIONS(1717), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37122,13 +42766,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37237] = 4, + [44349] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1499), 13, + ACTIONS(1721), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37142,7 +42786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1501), 17, + ACTIONS(1723), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37160,13 +42804,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37279] = 4, + [44391] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1503), 13, + ACTIONS(1725), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37180,7 +42824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1505), 17, + ACTIONS(1727), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37198,148 +42842,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37321] = 12, - ACTIONS(3), 1, - sym_module_comment, - 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(622), 8, - 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_DOT_DOT, - [37379] = 11, - ACTIONS(3), 1, - sym_module_comment, - 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(622), 9, - 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_DOT_DOT, - [37435] = 10, - ACTIONS(3), 1, - sym_module_comment, - 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(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(622), 11, - 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_DOT_DOT, - [37489] = 4, + [44433] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1507), 13, + ACTIONS(1729), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37353,7 +42862,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1509), 17, + ACTIONS(1731), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37371,13 +42880,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37531] = 4, + [44475] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1511), 13, + ACTIONS(1733), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37391,7 +42900,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1513), 17, + ACTIONS(1735), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37409,13 +42918,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37573] = 4, + [44517] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1515), 13, + ACTIONS(1737), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37429,7 +42938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1517), 17, + ACTIONS(1739), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37447,13 +42956,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37615] = 4, + [44559] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1519), 13, + ACTIONS(1741), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37467,7 +42976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1521), 17, + ACTIONS(1743), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37485,52 +42994,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37657] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(328), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(435), 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(433), 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, - [37701] = 4, + [44601] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1523), 13, + ACTIONS(1745), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37544,7 +43014,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1525), 17, + ACTIONS(1747), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37562,89 +43032,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37743] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 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(642), 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, - [37785] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(632), 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(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, - [37827] = 4, + [44643] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1527), 13, + ACTIONS(1749), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37658,7 +43052,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1529), 17, + ACTIONS(1751), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37676,13 +43070,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37869] = 4, + [44685] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1531), 13, + ACTIONS(1753), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37696,7 +43090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1533), 17, + ACTIONS(1755), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37714,94 +43108,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37911] = 9, - ACTIONS(3), 1, - sym_module_comment, - 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(1471), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(624), 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(622), 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, - [37963] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(730), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(728), 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, - [38005] = 4, + [44727] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1535), 13, + ACTIONS(1757), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37815,7 +43128,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1537), 17, + ACTIONS(1759), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37833,13 +43146,16 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38047] = 4, + [44769] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(276), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(713), 8, + ACTIONS(378), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37848,13 +43164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(710), 22, - anon_sym_LBRACE, + ACTIONS(376), 20, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, + anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37871,13 +43185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38089] = 4, + [44813] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1539), 13, + ACTIONS(1761), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -37891,7 +43205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1541), 17, + ACTIONS(1763), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -37909,89 +43223,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38131] = 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, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(706), 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, - [38173] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(696), 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(694), 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, - [38215] = 4, + [44855] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1543), 13, + ACTIONS(1765), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38005,7 +43243,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1545), 17, + ACTIONS(1767), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38023,13 +43261,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38257] = 4, + [44897] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1547), 13, + ACTIONS(1769), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38043,7 +43281,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1549), 17, + ACTIONS(1771), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38061,13 +43299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38299] = 4, + [44939] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1551), 13, + ACTIONS(1773), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38081,7 +43319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1553), 17, + ACTIONS(1775), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38099,55 +43337,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38341] = 8, - 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(624), 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(622), 16, - 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, - [38391] = 4, + [44981] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1555), 13, + ACTIONS(1777), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38161,7 +43357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1557), 17, + ACTIONS(1779), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38179,13 +43375,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38433] = 4, + [45023] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1559), 13, + ACTIONS(1781), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38199,7 +43395,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1561), 17, + ACTIONS(1783), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38217,13 +43413,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38475] = 4, + [45065] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1563), 13, + ACTIONS(1785), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38237,7 +43433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1565), 17, + ACTIONS(1787), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38255,13 +43451,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38517] = 4, + [45107] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1567), 13, + ACTIONS(1789), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38275,7 +43471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1569), 17, + ACTIONS(1791), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38293,13 +43489,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38559] = 4, + [45149] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1571), 13, + ACTIONS(1793), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38313,7 +43509,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1573), 17, + ACTIONS(1795), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38331,13 +43527,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38601] = 4, + [45191] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1575), 13, + ACTIONS(1797), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38351,7 +43547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1577), 17, + ACTIONS(1799), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38369,53 +43565,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38643] = 6, + [45233] = 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(624), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(622), 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, - [38689] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1579), 13, + ACTIONS(1801), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38429,7 +43585,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1581), 17, + ACTIONS(1803), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38447,51 +43603,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38731] = 4, + [45275] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(556), 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(554), 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, - [38773] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1583), 13, + ACTIONS(1805), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38505,7 +43623,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1585), 17, + ACTIONS(1807), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38523,13 +43641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38815] = 4, + [45317] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1587), 13, + ACTIONS(1809), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38543,7 +43661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1589), 17, + ACTIONS(1811), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38561,13 +43679,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38857] = 4, + [45359] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1591), 13, + ACTIONS(1813), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38581,7 +43699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1593), 17, + ACTIONS(1815), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38599,13 +43717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38899] = 4, + [45401] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1595), 13, + ACTIONS(1817), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38619,7 +43737,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1597), 17, + ACTIONS(1819), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38637,13 +43755,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38941] = 4, + [45443] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1599), 13, + ACTIONS(1821), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38657,7 +43775,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1601), 17, + ACTIONS(1823), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38675,13 +43793,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38983] = 4, + [45485] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1603), 13, + ACTIONS(1825), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38695,7 +43813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1605), 17, + ACTIONS(1827), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38713,51 +43831,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39025] = 4, + [45527] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - 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, - [39067] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1607), 13, + ACTIONS(1829), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38771,7 +43851,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1609), 17, + ACTIONS(1831), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38789,13 +43869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39109] = 4, + [45569] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1611), 13, + ACTIONS(1833), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38809,7 +43889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1613), 17, + ACTIONS(1835), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38827,13 +43907,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39151] = 4, + [45611] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1615), 13, + ACTIONS(1837), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38847,7 +43927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1617), 17, + ACTIONS(1839), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38865,13 +43945,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39193] = 4, + [45653] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1619), 13, + ACTIONS(1841), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38885,7 +43965,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1621), 17, + ACTIONS(1843), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38903,51 +43983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39235] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(726), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(724), 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, - [39277] = 4, + [45695] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1623), 13, + ACTIONS(1845), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38961,7 +44003,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1625), 17, + ACTIONS(1847), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -38979,13 +44021,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39319] = 4, + [45737] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1347), 13, + ACTIONS(1849), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_AT, @@ -38999,7 +44041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1349), 17, + ACTIONS(1851), 17, anon_sym_if, anon_sym_import, anon_sym_type, @@ -39017,84 +44059,406 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39361] = 13, + [45779] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1853), 1, + anon_sym_if, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1018), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1855), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [45854] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1857), 1, + anon_sym_RBRACK, + ACTIONS(1859), 1, + anon_sym_DOT_DOT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1018), 1, + sym__pattern, + STATE(1455), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [45931] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1451), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1167), 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(1376), 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, + [45984] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1861), 1, + anon_sym_LT_DASH, + ACTIONS(1863), 1, + sym_float, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1090), 1, + sym__pattern, + STATE(1201), 1, + sym_use_assignment, + STATE(1466), 1, + sym_use_assignments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1083), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46061] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1859), 1, + anon_sym_DOT_DOT, + ACTIONS(1865), 1, + anon_sym_RBRACK, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1077), 1, + sym__pattern, + STATE(1527), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46138] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1867), 1, + anon_sym_if, + ACTIONS(1869), 1, + anon_sym_DASH_GT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1172), 1, + sym_case_clause_pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46215] = 21, 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(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, + sym_float, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1871), 1, + anon_sym_if, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1018), 1, + sym__pattern, 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(686), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - [39421] = 11, + ACTIONS(1873), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46290] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(1372), 1, anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1337), 1, + ACTIONS(1374), 1, anon_sym_size, - STATE(1235), 1, - sym_expression_bit_string_segment_options, + ACTIONS(1380), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1295), 3, + ACTIONS(1378), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1028), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1291), 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(1293), 14, + ACTIONS(1376), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -39109,66 +44473,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [39477] = 4, + [46343] = 22, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_float, + ACTIONS(1875), 1, + anon_sym_LT_DASH, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1090), 1, + sym__pattern, + STATE(1201), 1, + sym_use_assignment, + STATE(1469), 1, + sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(680), 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(678), 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, - [39519] = 4, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1083), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46420] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(653), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(692), 8, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(1300), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(690), 22, - anon_sym_LBRACE, + ACTIONS(1298), 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, @@ -39177,905 +44565,1161 @@ 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, - [39561] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [46465] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(1380), 1, + anon_sym_unit, + ACTIONS(1402), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1627), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1378), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1238), 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(1376), 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, + [46518] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + ACTIONS(1859), 1, + anon_sym_DOT_DOT, + ACTIONS(1879), 1, + anon_sym_RBRACK, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1018), 1, + sym__pattern, + STATE(1548), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1629), 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, - [39603] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46595] = 22, 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, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1330), 1, 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, - 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, + ACTIONS(1334), 1, sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, sym__name, - [39645] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1881), 1, + anon_sym_if, + ACTIONS(1883), 1, + anon_sym_DASH_GT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1073), 1, + sym__pattern, + STATE(1172), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1635), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1032), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46672] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1863), 1, sym_float, + ACTIONS(1885), 1, + anon_sym_LT_DASH, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1090), 1, + sym__pattern, + STATE(1427), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1637), 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, - [39687] = 4, + STATE(1083), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46746] = 21, 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, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + ACTIONS(1887), 1, + anon_sym_GT_GT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1246), 1, + sym__pattern, + STATE(1310), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - 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, - [39729] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46820] = 21, 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, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(1328), 1, anon_sym_DQUOTE, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1863), 1, sym_float, + ACTIONS(1889), 1, + anon_sym_LT_DASH, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1090), 1, + sym__pattern, + STATE(1427), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, + STATE(1083), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46894] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, sym__upname, - ACTIONS(1645), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1891), 1, anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [39771] = 4, + STATE(522), 1, + sym__assignment, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1192), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [46968] = 21, ACTIONS(3), 1, sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, + anon_sym_POUND, + ACTIONS(1322), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_LT_LT, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1893), 1, + anon_sym_GT_GT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1245), 1, + sym_pattern_bit_string_segment, + STATE(1246), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1647), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47042] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + ACTIONS(1895), 1, + anon_sym_GT_GT, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1246), 1, + sym__pattern, + STATE(1310), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1649), 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, - [39813] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47116] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(672), 8, + ACTIONS(1479), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 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(670), 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, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(1481), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1897), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_DOT_DOT, - [39855] = 4, + [47174] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1651), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(618), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1653), 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, + ACTIONS(624), 1, sym__decimal, + ACTIONS(628), 1, sym__name, - [39897] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1655), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(630), 1, + sym__upname, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1137), 1, + sym__pattern, + STATE(1173), 1, + sym_record_pattern_argument, + STATE(1436), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, 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, - [39939] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47248] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1659), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1661), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, + ACTIONS(1394), 1, + sym_float, + ACTIONS(1899), 1, anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [39981] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(803), 1, + sym__assignment, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1207), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1663), 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, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1665), 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, - [40023] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47322] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1667), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + ACTIONS(1901), 1, + anon_sym_RPAREN, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1018), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1669), 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, - [40065] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47393] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1671), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + ACTIONS(1903), 1, + anon_sym_RPAREN, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1175), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1673), 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, - [40107] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47464] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1675), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + STATE(98), 1, + sym__assignment, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1192), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1677), 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, - [40149] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47535] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(700), 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(698), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(1495), 1, anon_sym_PIPE_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(1905), 1, + anon_sym_COMMA, + ACTIONS(1907), 1, + anon_sym_RBRACK, + ACTIONS(1909), 1, anon_sym_DOT_DOT, - [40191] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1679), 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(1681), 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, - [40233] = 4, + STATE(1127), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [47598] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1683), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1807), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1805), 23, + anon_sym_RBRACE, 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(1685), 17, - anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym__decimal, - sym__name, - [40275] = 4, + [47637] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1687), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, + ACTIONS(1322), 1, anon_sym_LBRACK, + ACTIONS(1324), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1394), 1, sym_float, + STATE(579), 1, + sym__assignment, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, + sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1192), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(828), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1689), 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, - [40317] = 4, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [47708] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1691), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1795), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1793), 23, + anon_sym_RBRACE, 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(1693), 17, - anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym__decimal, - sym__name, - [40359] = 4, + [47747] = 16, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1911), 1, + anon_sym_COMMA, + ACTIONS(1913), 1, + anon_sym_RBRACK, + ACTIONS(1915), 1, + anon_sym_DOT_DOT, + STATE(1118), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1695), 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(1697), 17, - anon_sym_if, - anon_sym_import, - anon_sym_type, - anon_sym_const, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, 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, - [40401] = 4, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [47810] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1699), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1751), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1749), 23, + anon_sym_RBRACE, 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(1701), 17, - anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym__decimal, - sym__name, - [40443] = 13, + [47849] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, + ACTIONS(1917), 1, + anon_sym_COMMA, + ACTIONS(1919), 1, + anon_sym_RBRACK, + ACTIONS(1921), 1, + anon_sym_DOT_DOT, + STATE(1131), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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(702), 7, - anon_sym_LBRACE, + [47912] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1847), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1845), 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_DOT_DOT, - [40503] = 5, + 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, + [47951] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1707), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1703), 12, - ts_builtin_sym_end, + ACTIONS(1791), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1789), 23, + anon_sym_RBRACE, 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(1705), 17, - anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym__decimal, - sym__name, - [40547] = 4, + [47990] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1923), 1, + anon_sym_LPAREN, + STATE(726), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(684), 8, + ACTIONS(272), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -40084,13 +45728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(682), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT_GT, + ACTIONS(270), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -40106,215 +45746,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - [40589] = 4, + [48033] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1709), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1783), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1781), 23, + anon_sym_RBRACE, 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_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_import, anon_sym_type, anon_sym_const, - anon_sym_DASH, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym__decimal, - sym__name, - [40631] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1291), 1, - anon_sym_size, - ACTIONS(1297), 1, - anon_sym_unit, - STATE(1317), 1, - sym_pattern_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - 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(1293), 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, - [40687] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1713), 1, - anon_sym_if, - ACTIONS(1715), 1, - anon_sym_DASH_GT, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(1111), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [40764] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1717), 1, - anon_sym_if, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(924), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1719), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [40839] = 6, + [48072] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1721), 1, - anon_sym_LPAREN, - STATE(610), 1, - sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1223), 4, + ACTIONS(1747), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1221), 23, + ACTIONS(1745), 23, anon_sym_RBRACE, anon_sym_AT, anon_sym_COMMA, @@ -40338,512 +45816,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [40884] = 21, + [48111] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1723), 1, - anon_sym_if, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(924), 1, - sym__pattern, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_RBRACK, + ACTIONS(1929), 1, + anon_sym_DOT_DOT, + STATE(1107), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1725), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [40959] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1727), 1, - anon_sym_if, - ACTIONS(1729), 1, - anon_sym_DASH_GT, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(963), 1, - sym__pattern, - STATE(1111), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(936), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41036] = 22, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [48174] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1731), 1, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1933), 1, anon_sym_RBRACK, - ACTIONS(1733), 1, + ACTIONS(1935), 1, anon_sym_DOT_DOT, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(924), 1, - sym__pattern, - STATE(1385), 1, - sym_list_pattern_tail, + STATE(1117), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41113] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1337), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1146), 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(1293), 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, - [41166] = 22, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [48237] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1733), 1, - anon_sym_DOT_DOT, - ACTIONS(1735), 1, - anon_sym_RBRACK, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(924), 1, - sym__pattern, - STATE(1346), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41243] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1733), 1, - anon_sym_DOT_DOT, - ACTIONS(1737), 1, + ACTIONS(1767), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1765), 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, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(984), 1, - sym__pattern, - STATE(1381), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41320] = 22, + 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, + [48276] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1739), 1, - anon_sym_LT_DASH, - ACTIONS(1741), 1, - sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(1002), 1, - sym__pattern, - STATE(1084), 1, - sym_use_assignment, - STATE(1397), 1, - sym_use_assignments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(979), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [41397] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1291), 1, - anon_sym_size, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1079), 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(1293), 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, - [41450] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(1297), 1, - anon_sym_unit, - ACTIONS(1409), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1295), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1081), 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(1293), 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, - [41503] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1743), 1, - anon_sym_LT_DASH, - STATE(833), 1, + STATE(404), 1, + sym__assignment, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(966), 1, sym_identifier, - STATE(913), 1, + STATE(1003), 1, sym_string, - STATE(1002), 1, + STATE(1230), 1, sym__pattern, - STATE(1084), 1, - sym_use_assignment, - STATE(1332), 1, - sym_use_assignments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(979), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40851,102 +45996,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41580] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1183), 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(1755), 1, - sym_float, - ACTIONS(1759), 1, - sym__decimal, - ACTIONS(1761), 1, - sym__name, - ACTIONS(1763), 1, - sym__upname, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(767), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1757), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(802), 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, - [41648] = 21, + [48347] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(1328), 1, anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(1334), 1, sym__decimal, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1195), 1, + ACTIONS(1338), 1, sym__name, - ACTIONS(1197), 1, + ACTIONS(1340), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1863), 1, sym_float, - ACTIONS(1765), 1, - anon_sym_LT_DASH, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(980), 1, sym_identifier, - STATE(913), 1, + STATE(1013), 1, sym_string, - STATE(1002), 1, + STATE(1090), 1, sym__pattern, - STATE(1312), 1, + STATE(1427), 1, sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - STATE(979), 7, + STATE(1083), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40954,52 +46047,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41722] = 21, + [48418] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1767), 1, - anon_sym_assert, - STATE(505), 1, + STATE(215), 1, sym__assignment, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1082), 1, + STATE(1261), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41007,52 +46098,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41796] = 21, + [48489] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1769), 1, - anon_sym_GT_GT, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1132), 1, + STATE(1246), 1, sym__pattern, - STATE(1318), 1, + STATE(1310), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41060,52 +46149,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41870] = 21, + [48560] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1771), 1, - anon_sym_assert, - STATE(700), 1, + STATE(215), 1, sym__assignment, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1141), 1, + STATE(1207), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41113,52 +46200,85 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [41944] = 21, + [48631] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1843), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1841), 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, + [48670] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1326), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1330), 1, sym_float, - ACTIONS(1773), 1, - anon_sym_GT_GT, - STATE(833), 1, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(980), 1, sym_identifier, - STATE(898), 1, + STATE(1013), 1, sym_string, - STATE(1132), 1, + STATE(1073), 1, sym__pattern, - STATE(1135), 1, - sym_pattern_bit_string_segment, + STATE(1172), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(1032), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41166,52 +46286,85 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42018] = 21, + [48741] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1787), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1785), 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, + [48780] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(618), 1, - sym__name, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1177), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - STATE(833), 1, + STATE(739), 1, + sym__assignment, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1085), 1, + STATE(1194), 1, sym__pattern, - STATE(1100), 1, - sym_record_pattern_argument, - STATE(1339), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41219,197 +46372,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42092] = 13, + [48851] = 4, 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, + ACTIONS(1755), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1753), 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, - ACTIONS(1473), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1775), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [42150] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1183), 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(1777), 1, - sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(767), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1757), 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, - [42218] = 18, + sym_visibility_modifier, + sym_opacity_modifier, + [48890] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1183), 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(1779), 1, - sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(767), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1757), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(804), 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, - [42286] = 21, + ACTIONS(1851), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1849), 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, + [48929] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1781), 1, - anon_sym_GT_GT, - STATE(833), 1, + ACTIONS(1937), 1, + anon_sym_RPAREN, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1132), 1, + STATE(1018), 1, sym__pattern, - STATE(1318), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41417,102 +46493,50 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42360] = 18, + [49000] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1183), 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, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(1759), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1761), 1, - sym__name, - ACTIONS(1763), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1783), 1, - sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(767), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1757), 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, - sym_integer, - [42428] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1741), 1, + ACTIONS(1394), 1, sym_float, - ACTIONS(1785), 1, - anon_sym_LT_DASH, - STATE(833), 1, + STATE(486), 1, + sym__assignment, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(966), 1, sym_identifier, - STATE(913), 1, + STATE(1003), 1, sym_string, - STATE(1002), 1, + STATE(1261), 1, sym__pattern, - STATE(1312), 1, - sym_use_assignment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(979), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41520,331 +46544,549 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [42502] = 18, + [49071] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1183), 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(1787), 1, - sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(767), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1757), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(805), 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, - [42570] = 18, + ACTIONS(1839), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1837), 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, + [49110] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1563), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1561), 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, + [49149] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1819), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1817), 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, + [49188] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1835), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1833), 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, + [49227] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1771), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1769), 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, + [49266] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1827), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1825), 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, + [49305] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1777), 1, - sym_float, - ACTIONS(1789), 1, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, anon_sym_DASH, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(782), 1, + ACTIONS(1394), 1, + sym_float, + STATE(807), 1, + sym__assignment, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1207), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 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, + STATE(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [42638] = 18, + sym_discard, + [49376] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1789), 1, - anon_sym_DASH, - ACTIONS(1791), 1, - sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(782), 1, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(1941), 1, + sym_float, + STATE(1054), 1, sym_identifier, + STATE(1309), 1, + sym_attribute_value, + STATE(1520), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(795), 10, + STATE(1358), 8, 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, - [42706] = 18, + [49442] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1789), 1, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1793), 1, + ACTIONS(1394), 1, sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(782), 1, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, sym_identifier, + STATE(1003), 1, + sym_string, + STATE(1176), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(797), 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(981), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [42774] = 18, + sym_discard, + [49510] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(464), 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(462), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [49548] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1789), 1, - anon_sym_DASH, - ACTIONS(1795), 1, + ACTIONS(1943), 1, + anon_sym_RPAREN, + ACTIONS(1945), 1, sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(782), 1, + STATE(1054), 1, sym_identifier, + STATE(1357), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(796), 10, + STATE(1324), 8, 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, - [42842] = 18, + [49614] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(490), 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(488), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [49652] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(1747), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1789), 1, - anon_sym_DASH, - ACTIONS(1797), 1, + ACTIONS(1941), 1, sym_float, - STATE(739), 1, - sym__case_clause_tuple_access, - STATE(764), 1, - sym__case_clause_guard_binary_expression, - STATE(782), 1, + ACTIONS(1947), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, + STATE(1309), 1, + sym_attribute_value, + STATE(1520), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(793), 10, + STATE(1358), 8, 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, - [42910] = 4, + [49718] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1949), 1, + anon_sym_LPAREN, + ACTIONS(1951), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1565), 4, + ACTIONS(346), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1563), 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_PLUS, + anon_sym_STAR, + ACTIONS(344), 16, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41853,33 +47095,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [42949] = 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, + [49760] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1597), 4, + ACTIONS(382), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1595), 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_PLUS, + anon_sym_STAR, + ACTIONS(380), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -41888,268 +47129,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [42988] = 20, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [49798] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1945), 1, sym_float, - STATE(86), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(1953), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1082), 1, - sym__pattern, + STATE(1357), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1324), 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, - [43059] = 16, + [49864] = 4, 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(1799), 1, - anon_sym_COMMA, - ACTIONS(1801), 1, - anon_sym_RBRACK, - ACTIONS(1803), 1, - anon_sym_DOT_DOT, - STATE(1015), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(498), 8, 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_PLUS, + anon_sym_STAR, + ACTIONS(496), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [43122] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1741), 1, - sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, - STATE(1002), 1, - sym__pattern, - STATE(1312), 1, - sym_use_assignment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(979), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [43193] = 20, + [49902] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1945), 1, sym_float, - STATE(545), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(1955), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1082), 1, - sym__pattern, + STATE(1141), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1324), 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, - [43264] = 4, + [49968] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1957), 1, + anon_sym_COMMA, + ACTIONS(1959), 1, + anon_sym_RPAREN, + STATE(1183), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1689), 4, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1687), 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, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43303] = 4, + [50028] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1633), 4, + ACTIONS(336), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1631), 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_PLUS, + anon_sym_STAR, + ACTIONS(334), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42158,52 +47338,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43342] = 20, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [50066] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1183), 1, + ACTIONS(1326), 1, anon_sym_DASH, - ACTIONS(1185), 1, + ACTIONS(1328), 1, anon_sym_DQUOTE, - ACTIONS(1187), 1, + ACTIONS(1330), 1, sym_float, - ACTIONS(1191), 1, + ACTIONS(1334), 1, sym__decimal, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1195), 1, + ACTIONS(1338), 1, sym__name, - ACTIONS(1197), 1, + ACTIONS(1340), 1, sym__upname, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(980), 1, sym_identifier, - STATE(913), 1, + STATE(1013), 1, sym_string, - STATE(963), 1, + STATE(1018), 1, sym__pattern, - STATE(1111), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - STATE(936), 7, + STATE(1032), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42211,31 +47394,107 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [43413] = 4, + [50134] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1681), 4, + ACTIONS(484), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1679), 23, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(482), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [50172] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(318), 1, + sym__upname, + ACTIONS(628), 1, + sym__name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1945), 1, + sym_float, + ACTIONS(1961), 1, 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, + STATE(1054), 1, + sym_identifier, + STATE(1357), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1324), 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, + [50238] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(388), 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(386), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42244,68 +47503,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43452] = 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, + [50276] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(322), 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(320), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [50314] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1963), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(1157), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1641), 4, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 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, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43491] = 4, + [50374] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1625), 4, + ACTIONS(332), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1623), 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_PLUS, + anon_sym_STAR, + ACTIONS(330), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42314,33 +47616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43530] = 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, + [50412] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1629), 4, + ACTIONS(342), 8, + anon_sym_SLASH, + anon_sym_DASH, 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_PLUS, + anon_sym_STAR, + ACTIONS(340), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42349,99 +47650,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43569] = 16, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [50450] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1805), 1, + ACTIONS(1967), 1, anon_sym_COMMA, - ACTIONS(1807), 1, - anon_sym_RBRACK, - ACTIONS(1809), 1, - anon_sym_DOT_DOT, - STATE(1009), 1, + ACTIONS(1969), 1, + anon_sym_RPAREN, + STATE(1243), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [50510] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(278), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(276), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [43632] = 20, + [50548] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, + sym__name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1941), 1, + sym_float, + ACTIONS(1971), 1, + anon_sym_RPAREN, + STATE(1054), 1, + sym_identifier, + STATE(1309), 1, + sym_attribute_value, + STATE(1520), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1358), 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, + [50614] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, + anon_sym_DQUOTE, + ACTIONS(624), 1, + sym__decimal, + ACTIONS(630), 1, + sym__upname, + ACTIONS(770), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1394), 1, sym_float, - STATE(196), 1, - sym__assignment, - STATE(833), 1, + STATE(911), 1, sym__pattern_binary_expression, - STATE(872), 1, + STATE(966), 1, sym_identifier, - STATE(898), 1, + STATE(1003), 1, sym_string, - STATE(1123), 1, + STATE(1018), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, + STATE(981), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42449,117 +47833,163 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [43703] = 4, + [50682] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1973), 1, + anon_sym_COMMA, + ACTIONS(1975), 1, + anon_sym_RPAREN, + STATE(1250), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1637), 4, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 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, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [50742] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1977), 1, + anon_sym_LBRACE, + ACTIONS(1979), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43742] = 20, + [50802] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1945), 1, sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(1981), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1132), 1, - sym__pattern, - STATE(1318), 1, - sym_pattern_bit_string_segment, + STATE(1282), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1324), 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, - [43813] = 4, + [50868] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1617), 4, + ACTIONS(516), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1615), 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_PLUS, + anon_sym_STAR, + ACTIONS(514), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42568,131 +47998,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43852] = 16, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [50906] = 18, 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(1024), 1, - aux_sym_tuple_repeat1, + ACTIONS(308), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(318), 1, + sym__upname, + ACTIONS(628), 1, + sym__name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(1941), 1, + sym_float, + ACTIONS(1983), 1, + anon_sym_RPAREN, + STATE(1054), 1, + sym_identifier, + STATE(1309), 1, + sym_attribute_value, + STATE(1520), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(613), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1358), 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, + [50972] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(1985), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(455), 8, 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_PLUS, + anon_sym_STAR, + ACTIONS(453), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [43915] = 20, + [51014] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1945), 1, sym_float, - STATE(382), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(1989), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1094), 1, - sym__pattern, + STATE(1357), 1, + sym_constant_record_argument, + STATE(1541), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1324), 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, - [43986] = 4, + [51080] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1613), 4, + ACTIONS(510), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1611), 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_PLUS, + anon_sym_STAR, + ACTIONS(508), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42701,33 +48164,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44025] = 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, + [51118] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1677), 4, + ACTIONS(374), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1675), 23, - anon_sym_RBRACE, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(372), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51156] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(1991), 1, anon_sym_COMMA, + ACTIONS(1993), 1, 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, + STATE(1214), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [51216] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(459), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 16, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42736,33 +48279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44064] = 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, + [51258] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1609), 4, + ACTIONS(378), 8, + anon_sym_SLASH, + anon_sym_DASH, 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_PLUS, + anon_sym_STAR, + ACTIONS(376), 18, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42771,256 +48313,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44103] = 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, + [51296] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1673), 4, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1995), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 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, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44142] = 20, + [51351] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1997), 1, + anon_sym_GT_GT, + ACTIONS(1999), 1, sym_float, - STATE(701), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1141), 1, - sym__pattern, + STATE(1208), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + 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, sym_integer, - sym_discard, - [44213] = 4, - 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [44252] = 20, + [51414] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1999), 1, sym_float, - ACTIONS(1817), 1, - anon_sym_RPAREN, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(2001), 1, + anon_sym_GT_GT, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(924), 1, - sym__pattern, + STATE(1429), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + 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, sym_integer, - sym_discard, - [44323] = 20, + [51477] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1941), 1, sym_float, - STATE(196), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1141), 1, - sym__pattern, + STATE(1237), 1, + sym_attribute_value, + STATE(1520), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1358), 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, - [44394] = 4, + [51540] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1657), 4, + ACTIONS(524), 8, + anon_sym_SLASH, + anon_sym_DASH, 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_PLUS, + anon_sym_STAR, + ACTIONS(522), 17, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -43029,84 +48526,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44433] = 20, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51577] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - STATE(488), 1, - sym__assignment, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(1123), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44504] = 4, + ACTIONS(550), 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(548), 17, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51614] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1605), 4, + ACTIONS(528), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1603), 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_PLUS, + anon_sym_STAR, + ACTIONS(526), 17, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -43115,33 +48592,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44543] = 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, + [51651] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1601), 4, + ACTIONS(532), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1599), 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_PLUS, + anon_sym_STAR, + ACTIONS(530), 17, + anon_sym_LPAREN, anon_sym_DASH_GT, - anon_sym_external, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -43150,293 +48625,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [44582] = 20, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51688] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1999), 1, sym_float, - ACTIONS(1819), 1, - anon_sym_RPAREN, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(2003), 1, + anon_sym_GT_GT, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1099), 1, - sym__pattern, + STATE(1429), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + 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, sym_integer, - sym_discard, - [44653] = 20, + [51751] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(924), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44724] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(558), 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(556), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - ACTIONS(1823), 1, - anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RBRACK, - ACTIONS(1827), 1, - anon_sym_DOT_DOT, - STATE(1027), 1, - aux_sym_tuple_repeat1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51788] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(520), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1463), 2, + anon_sym_STAR, + ACTIONS(518), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + anon_sym_LT_DOT, + anon_sym_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(1465), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51825] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2005), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(544), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(542), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [44787] = 19, + [51864] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, - sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, - STATE(924), 1, - sym__pattern, + ACTIONS(536), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [44855] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(455), 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(453), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - ACTIONS(1829), 1, - anon_sym_COMMA, - ACTIONS(1831), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_tuple_repeat1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [51903] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(534), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(455), 8, 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_PLUS, + anon_sym_STAR, + ACTIONS(453), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [44915] = 19, + [51942] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, + ACTIONS(1328), 1, anon_sym_DQUOTE, - ACTIONS(1187), 1, - sym_float, - ACTIONS(1191), 1, + ACTIONS(1334), 1, sym__decimal, - ACTIONS(1193), 1, + ACTIONS(1336), 1, sym__discard_name, - ACTIONS(1195), 1, + ACTIONS(1338), 1, sym__name, - ACTIONS(1197), 1, + ACTIONS(1340), 1, sym__upname, - STATE(833), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(2007), 1, + sym_float, + STATE(911), 1, sym__pattern_binary_expression, - STATE(908), 1, + STATE(980), 1, sym_identifier, - STATE(913), 1, + STATE(1013), 1, sym_string, - STATE(924), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - STATE(936), 7, + STATE(929), 7, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -43444,95 +48893,124 @@ static const uint16_t ts_small_parse_table[] = { sym_list_pattern, sym_integer, sym_discard, - [44983] = 19, + [52007] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 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(453), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [52046] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1177), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1321), 1, + ACTIONS(1999), 1, sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, + ACTIONS(2009), 1, + anon_sym_GT_GT, + STATE(1054), 1, sym_identifier, - STATE(898), 1, - sym_string, - STATE(1097), 1, - sym__pattern, + STATE(1429), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(893), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + 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, sym_integer, - sym_discard, - [45051] = 18, + [52109] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, + sym__decimal, + ACTIONS(318), 1, sym__upname, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(1835), 1, + ACTIONS(1941), 1, sym_float, - STATE(957), 1, + STATE(1054), 1, sym_identifier, - STATE(1295), 1, + STATE(1146), 1, sym_attribute_value, - STATE(1432), 1, + STATE(1520), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1208), 8, + STATE(1358), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43541,94 +49019,133 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45117] = 18, + [52172] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2011), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52227] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(618), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1835), 1, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(2007), 1, sym_float, - ACTIONS(1837), 1, - anon_sym_RPAREN, - STATE(957), 1, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(966), 1, sym_identifier, - STATE(1295), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, + STATE(1003), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - 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, + STATE(929), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [45183] = 18, + sym_discard, + [52292] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, + sym__decimal, + ACTIONS(318), 1, sym__upname, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1839), 1, - anon_sym_RPAREN, - ACTIONS(1841), 1, + ACTIONS(1941), 1, sym_float, - STATE(957), 1, + STATE(1054), 1, sym_identifier, - STATE(1247), 1, - sym_constant_record_argument, - STATE(1323), 1, + STATE(1309), 1, + sym_attribute_value, + STATE(1520), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1358), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43637,46 +49154,77 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45249] = 18, + [52355] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(554), 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(552), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [52392] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, + sym__decimal, + ACTIONS(318), 1, sym__upname, - ACTIONS(618), 1, + ACTIONS(628), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1841), 1, + ACTIONS(1945), 1, sym_float, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(957), 1, + STATE(1054), 1, sym_identifier, - STATE(1247), 1, + STATE(1357), 1, sym_constant_record_argument, - STATE(1323), 1, + STATE(1541), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1324), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43685,94 +49233,91 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45315] = 18, + [52455] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, - sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1320), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1322), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1324), 1, anon_sym_LT_LT, - ACTIONS(1835), 1, + ACTIONS(1326), 1, + anon_sym_DASH, + ACTIONS(1328), 1, + anon_sym_DQUOTE, + ACTIONS(1334), 1, + sym__decimal, + ACTIONS(1336), 1, + sym__discard_name, + ACTIONS(1338), 1, + sym__name, + ACTIONS(1340), 1, + sym__upname, + ACTIONS(2007), 1, sym_float, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(957), 1, + STATE(911), 1, + sym__pattern_binary_expression, + STATE(980), 1, sym_identifier, - STATE(1295), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, + STATE(1013), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(828), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(1332), 3, sym__hex, sym__octal, sym__binary, - 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, + STATE(929), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - [45381] = 18, + sym_discard, + [52520] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1841), 1, + ACTIONS(1999), 1, sym_float, - ACTIONS(1847), 1, - anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2013), 1, + anon_sym_GT_GT, + STATE(1054), 1, sym_identifier, - STATE(1247), 1, - sym_constant_record_argument, - STATE(1323), 1, - sym_label, + STATE(1429), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1206), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43781,91 +49326,77 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45447] = 15, + [52583] = 4, 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(1849), 1, - anon_sym_LBRACE, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1128), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(540), 8, 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_PLUS, + anon_sym_STAR, + ACTIONS(538), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [45507] = 18, + [52620] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1835), 1, + ACTIONS(1999), 1, sym_float, - ACTIONS(1853), 1, - anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2015), 1, + anon_sym_GT_GT, + STATE(1054), 1, sym_identifier, - STATE(1295), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, + STATE(1257), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1208), 8, + STATE(1206), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43874,91 +49405,84 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45573] = 15, + [52683] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, - anon_sym_RPAREN, - STATE(1086), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(2017), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [45633] = 18, + [52738] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1841), 1, - sym_float, - ACTIONS(1859), 1, + ACTIONS(2019), 1, anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2021), 1, + sym_float, + STATE(1054), 1, sym_identifier, - STATE(1247), 1, - sym_constant_record_argument, - STATE(1323), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43967,94 +49491,124 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45699] = 18, + [52798] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, - sym__name, - ACTIONS(1317), 1, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(2023), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1841), 1, - sym_float, - ACTIONS(1861), 1, - anon_sym_RPAREN, - STATE(957), 1, - sym_identifier, - STATE(1170), 1, - sym_constant_record_argument, - STATE(1323), 1, - sym_label, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52852] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(2025), 1, + anon_sym_RBRACK, 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(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, - [45765] = 18, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52906] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1841), 1, + ACTIONS(2021), 1, sym_float, - ACTIONS(1863), 1, - anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2027), 1, + anon_sym_RBRACK, + STATE(1054), 1, sym_identifier, - STATE(1117), 1, - sym_constant_record_argument, - STATE(1323), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44063,180 +49617,124 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45831] = 15, + [52966] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1865), 1, - anon_sym_COMMA, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_tuple_repeat1, + ACTIONS(2029), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [45891] = 15, + [53020] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1869), 1, - anon_sym_COMMA, - ACTIONS(1871), 1, - anon_sym_RPAREN, - STATE(1112), 1, - aux_sym_tuple_repeat1, + ACTIONS(2031), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [45951] = 17, + [53074] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(312), 1, - sym__name, ACTIONS(314), 1, - sym__upname, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1873), 1, - anon_sym_GT_GT, - ACTIONS(1875), 1, - sym_float, - STATE(957), 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(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1070), 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, - [46014] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, sym__decimal, - ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1835), 1, + ACTIONS(2021), 1, sym_float, - STATE(957), 1, + ACTIONS(2033), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(1193), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1208), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44245,133 +49743,181 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46077] = 13, + [53134] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, + ACTIONS(2035), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1877), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + [53188] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2039), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [46132] = 18, + ACTIONS(572), 6, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(570), 12, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + [53228] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, - anon_sym_DQUOTE, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, - sym__name, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1317), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(642), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1879), 1, - sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(872), 1, - sym_identifier, - STATE(898), 1, - sym_string, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(640), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53264] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(827), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [46197] = 17, + ACTIONS(646), 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(644), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53300] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1875), 1, + ACTIONS(2041), 1, + anon_sym_RBRACK, + ACTIONS(2043), 1, sym_float, - ACTIONS(1881), 1, - anon_sym_GT_GT, - STATE(957), 1, + STATE(1054), 1, sym_identifier, - STATE(1069), 1, - sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1070), 8, + STATE(1205), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44380,90 +49926,74 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46260] = 17, + [53360] = 4, 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(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1875), 1, - sym_float, - ACTIONS(1883), 1, - anon_sym_GT_GT, - STATE(957), 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(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1070), 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, - [46323] = 17, + ACTIONS(572), 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(570), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53396] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1875), 1, + ACTIONS(2021), 1, sym_float, - ACTIONS(1885), 1, - anon_sym_GT_GT, - STATE(957), 1, + ACTIONS(2045), 1, + anon_sym_RBRACK, + STATE(1054), 1, sym_identifier, - STATE(1183), 1, - sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1070), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44472,183 +50002,138 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46386] = 17, + [53456] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, - sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1835), 1, - sym_float, - STATE(957), 1, - sym_identifier, - STATE(1295), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, 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(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, - [46449] = 17, + ACTIONS(736), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(734), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53492] = 4, 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(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1875), 1, - sym_float, - ACTIONS(1887), 1, - anon_sym_GT_GT, - STATE(957), 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(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1070), 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, - [46512] = 18, + ACTIONS(668), 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(666), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53528] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, - sym__name, - ACTIONS(1197), 1, - sym__upname, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1879), 1, - sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, - sym_identifier, - STATE(913), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1189), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(827), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [46577] = 17, + ACTIONS(563), 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(560), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53564] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, + sym__decimal, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1841), 1, + ACTIONS(2021), 1, sym_float, - STATE(957), 1, + ACTIONS(2047), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, - STATE(1247), 1, - sym_constant_record_argument, - STATE(1323), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1284), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44657,306 +50142,271 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46640] = 13, + [53624] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(672), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(670), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [53660] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2057), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(2037), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(2049), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(2051), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(2059), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1889), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1465), 4, + ACTIONS(570), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(2055), 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, - [46695] = 17, + [53710] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(314), 1, - sym__upname, - ACTIONS(618), 1, - sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1835), 1, - sym_float, - STATE(957), 1, - sym_identifier, - STATE(1171), 1, - sym_attribute_value, - STATE(1432), 1, - sym_label, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(2061), 1, + anon_sym_RBRACK, 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(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, - [46758] = 17, - 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(1317), 1, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1875), 1, - sym_float, - ACTIONS(1891), 1, - anon_sym_GT_GT, - STATE(957), 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(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1070), 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, - [46821] = 18, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [53764] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DASH, - ACTIONS(1185), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(1193), 1, - sym__discard_name, - ACTIONS(1195), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1197), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1879), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, + anon_sym_POUND, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LT_LT, + ACTIONS(2063), 1, + anon_sym_RPAREN, + ACTIONS(2065), 1, sym_float, - STATE(833), 1, - sym__pattern_binary_expression, - STATE(908), 1, + STATE(1054), 1, sym_identifier, - STATE(913), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(722), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1189), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(827), 7, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1177), 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, - [46886] = 13, + [53824] = 4, 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, + ACTIONS(590), 8, 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(1893), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1465), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(588), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [46941] = 13, + [53860] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1895), 1, + ACTIONS(2067), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [46995] = 16, + [53914] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1897), 1, - anon_sym_RBRACK, - ACTIONS(1899), 1, + ACTIONS(1999), 1, sym_float, - STATE(957), 1, + STATE(1054), 1, sym_identifier, + STATE(1429), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1206), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44965,288 +50415,342 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47055] = 13, + [53974] = 4, 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(1901), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(676), 8, 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_PLUS, + anon_sym_STAR, + ACTIONS(674), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [47109] = 13, + [54010] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1903), 1, + ACTIONS(2069), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54064] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(686), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [47163] = 13, + [54100] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1905), 1, - anon_sym_RBRACK, + ACTIONS(2071), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47217] = 13, + [54154] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, - anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(2057), 1, anon_sym_PIPE_GT, - ACTIONS(1907), 1, - anon_sym_RBRACK, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(570), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(2037), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(2049), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(2051), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(2059), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2055), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54206] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(728), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(726), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [47271] = 13, + [54242] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1909), 1, - anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47325] = 13, + [54296] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1911), 1, - anon_sym_RBRACK, + ACTIONS(2077), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47379] = 16, + [54350] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, + ACTIONS(2021), 1, sym_float, - ACTIONS(1913), 1, - anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2079), 1, + anon_sym_RBRACK, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45255,42 +50759,74 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47439] = 16, + [54410] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 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(710), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [54446] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, + ACTIONS(2021), 1, sym_float, - ACTIONS(1915), 1, - anon_sym_RPAREN, - STATE(957), 1, + ACTIONS(2081), 1, + anon_sym_RBRACK, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45299,42 +50835,124 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47499] = 16, + [54506] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(654), 1, + anon_sym_DASH_GT, + ACTIONS(2057), 1, + anon_sym_PIPE_GT, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2051), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2055), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54560] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(2085), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54614] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, + ACTIONS(2021), 1, sym_float, - ACTIONS(1917), 1, - anon_sym_RBRACK, - STATE(957), 1, + ACTIONS(2087), 1, + anon_sym_RPAREN, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45343,42 +50961,199 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47559] = 16, + [54674] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(1485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1487), 1, + anon_sym_AMP_AMP, + ACTIONS(1495), 1, + anon_sym_PIPE_GT, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1497), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1493), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54728] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2057), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2055), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(570), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54776] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(678), 1, + anon_sym_DASH_GT, + ACTIONS(2057), 1, + anon_sym_PIPE_GT, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2051), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2055), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [54830] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2057), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(570), 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, + [54876] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, + ACTIONS(2091), 1, + anon_sym_RBRACK, + ACTIONS(2093), 1, sym_float, - ACTIONS(1919), 1, - anon_sym_RPAREN, - STATE(957), 1, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1256), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -45387,760 +51162,648 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47619] = 13, + [54936] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(572), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(570), 10, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + [54980] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(568), 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(566), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55016] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1921), 1, + ACTIONS(2095), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47673] = 13, + [55070] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1923), 1, + ACTIONS(2097), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47727] = 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(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1925), 1, - anon_sym_RBRACK, - ACTIONS(1927), 1, - sym_float, - STATE(957), 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(1071), 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, - [47787] = 13, + [55124] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1929), 1, - anon_sym_RBRACK, + ACTIONS(2099), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [47841] = 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(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1875), 1, - sym_float, - STATE(957), 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(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1070), 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, - [47901] = 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(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1931), 1, - anon_sym_RBRACK, - ACTIONS(1933), 1, - sym_float, - STATE(957), 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(1182), 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, - [47961] = 13, + [55178] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1935), 1, + ACTIONS(2101), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 4, + [55232] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(648), 1, + anon_sym_DASH_GT, + ACTIONS(2057), 1, + anon_sym_PIPE_GT, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2049), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2051), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2039), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - [48015] = 13, + ACTIONS(2053), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2055), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [55286] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1937), 1, + ACTIONS(2103), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [48069] = 13, + [55340] = 4, 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(1939), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(692), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1457), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1463), 2, + anon_sym_STAR, + ACTIONS(690), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + anon_sym_LT_DOT, + anon_sym_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(1465), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55376] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(694), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1473), 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, - [48123] = 16, + [55412] = 4, 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(1317), 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, - sym_float, - ACTIONS(1941), 1, - anon_sym_RBRACK, - STATE(957), 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(1087), 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, - [48183] = 13, + ACTIONS(716), 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(714), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55448] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1943), 1, + ACTIONS(2105), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [48237] = 13, + [55502] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1945), 1, - anon_sym_RPAREN, + ACTIONS(2107), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [48291] = 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(1317), 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, - sym_float, - ACTIONS(1947), 1, - anon_sym_RPAREN, - STATE(957), 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(1087), 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, - [48351] = 16, + [55556] = 4, 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(1317), 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, - sym_float, - ACTIONS(1949), 1, - anon_sym_RBRACK, - STATE(957), 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(1087), 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, - [48411] = 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(1317), 1, + ACTIONS(708), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(1747), 1, - anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_LBRACK, - ACTIONS(1751), 1, - anon_sym_LT_LT, - ACTIONS(1951), 1, - anon_sym_RPAREN, - ACTIONS(1953), 1, - sym_float, - STATE(957), 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(1036), 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, - [48471] = 13, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(706), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55592] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1459), 1, + ACTIONS(1485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1461), 1, + ACTIONS(1487), 1, anon_sym_AMP_AMP, - ACTIONS(1469), 1, + ACTIONS(1495), 1, anon_sym_PIPE_GT, - ACTIONS(1955), 1, - anon_sym_COMMA, + ACTIONS(2109), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(1479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(1483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(1489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(1497), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(1481), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1491), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(1493), 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, - [48525] = 13, + [55646] = 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(718), 1, + anon_sym_DASH_GT, + ACTIONS(2057), 1, anon_sym_PIPE_GT, - ACTIONS(1957), 1, - anon_sym_RBRACK, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, + ACTIONS(2083), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1455), 2, + ACTIONS(2037), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1457), 2, + ACTIONS(2049), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1463), 2, + ACTIONS(2051), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 2, + ACTIONS(2059), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1465), 4, + ACTIONS(2039), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2053), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1467), 4, + ACTIONS(2055), 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, - [48579] = 16, + [55700] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1959), 1, + ACTIONS(2111), 1, anon_sym_RPAREN, - ACTIONS(1961), 1, + ACTIONS(2113), 1, sym_float, - STATE(957), 1, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1104), 8, + STATE(1276), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46149,40 +51812,104 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48639] = 15, + [55760] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(732), 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(730), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55796] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(664), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(662), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [55832] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1899), 1, + ACTIONS(2115), 1, sym_float, - STATE(957), 1, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(1087), 8, + STATE(1322), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46191,7 +51918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48696] = 15, + [55889] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(51), 1, @@ -46202,29 +51929,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1963), 1, + ACTIONS(2117), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(2119), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(2121), 1, anon_sym_LT_LT, - ACTIONS(1969), 1, + ACTIONS(2123), 1, anon_sym_DASH, - ACTIONS(1971), 1, + ACTIONS(2125), 1, sym_float, - STATE(420), 1, + STATE(474), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(444), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(511), 8, + STATE(575), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46233,7 +51960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48753] = 15, + [55946] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(51), 1, @@ -46244,29 +51971,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1963), 1, + ACTIONS(2117), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(2119), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(2121), 1, anon_sym_LT_LT, - ACTIONS(1969), 1, + ACTIONS(2123), 1, anon_sym_DASH, - ACTIONS(1973), 1, + ACTIONS(2127), 1, sym_float, - STATE(420), 1, + STATE(474), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(444), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(533), 8, + STATE(548), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46275,40 +52002,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48810] = 15, + [56003] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1975), 1, + ACTIONS(2129), 1, sym_float, - STATE(957), 1, + STATE(965), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(1288), 8, + STATE(977), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46317,40 +52044,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48867] = 15, + [56060] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(2117), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(2119), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(2121), 1, anon_sym_LT_LT, - ACTIONS(1977), 1, + ACTIONS(2123), 1, + anon_sym_DASH, + ACTIONS(2131), 1, sym_float, - STATE(865), 1, + STATE(474), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(444), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(889), 8, + STATE(535), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46359,40 +52086,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48924] = 15, + [56117] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1979), 1, + ACTIONS(2021), 1, sym_float, - STATE(865), 1, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(879), 8, + STATE(1184), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46401,40 +52128,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [48981] = 15, + [56174] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(756), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1317), 1, - anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(2117), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(2119), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(2121), 1, anon_sym_LT_LT, - ACTIONS(1981), 1, + ACTIONS(2123), 1, + anon_sym_DASH, + ACTIONS(2133), 1, sym_float, - STATE(865), 1, + STATE(474), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(444), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(902), 8, + STATE(565), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46443,40 +52170,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49038] = 15, + [56231] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1963), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1969), 1, - anon_sym_DASH, - ACTIONS(1983), 1, + ACTIONS(2135), 1, sym_float, - STATE(420), 1, + STATE(965), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(499), 8, + STATE(986), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46485,40 +52212,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49095] = 15, + [56288] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(620), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(1317), 1, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1985), 1, + ACTIONS(2137), 1, sym_float, - STATE(865), 1, + STATE(965), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(906), 8, + STATE(982), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46527,40 +52254,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49152] = 15, + [56345] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(1963), 1, + ACTIONS(1390), 1, + anon_sym_DASH, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1967), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1969), 1, - anon_sym_DASH, - ACTIONS(1987), 1, + ACTIONS(2139), 1, sym_float, - STATE(420), 1, + STATE(1054), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - STATE(484), 8, + STATE(1354), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46569,40 +52296,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49209] = 15, + [56402] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(618), 1, anon_sym_DQUOTE, - ACTIONS(310), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(312), 1, - sym__name, - ACTIONS(314), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(1317), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(1390), 1, anon_sym_DASH, - ACTIONS(1747), 1, + ACTIONS(1607), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1751), 1, + ACTIONS(1611), 1, anon_sym_LT_LT, - ACTIONS(1989), 1, + ACTIONS(2141), 1, sym_float, - STATE(957), 1, + STATE(965), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(557), 2, + STATE(613), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(308), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - STATE(1197), 8, + STATE(996), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -46611,15 +52338,45 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [49266] = 4, + [56459] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1559), 10, + anon_sym_DASH, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym__decimal, + sym__name, + ACTIONS(1557), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [56493] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(368), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 21, + ACTIONS(366), 21, anon_sym_RBRACE, anon_sym_AT, anon_sym_LPAREN, @@ -46641,13 +52398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [49300] = 4, + [56527] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1441), 10, + ACTIONS(1603), 10, anon_sym_DASH, anon_sym_fn, anon_sym_todo, @@ -46658,7 +52415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1439), 12, + ACTIONS(1601), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46671,13 +52428,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49334] = 3, + [56561] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1571), 22, + ACTIONS(1677), 22, anon_sym_if, anon_sym_RBRACE, anon_sym_AT, @@ -46700,43 +52457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [49366] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1569), 10, - anon_sym_DASH, - anon_sym_fn, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym__decimal, - sym__name, - ACTIONS(1567), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [49400] = 4, + [56593] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1685), 10, + ACTIONS(1759), 10, anon_sym_DASH, anon_sym_fn, anon_sym_todo, @@ -46747,7 +52474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1683), 12, + ACTIONS(1757), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -46760,31 +52487,31 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [49434] = 12, + [56627] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1991), 1, + ACTIONS(2143), 1, anon_sym_RBRACE, - ACTIONS(1993), 1, + ACTIONS(2145), 1, anon_sym_AT, - ACTIONS(1996), 1, + ACTIONS(2147), 1, anon_sym_import, - ACTIONS(1999), 1, + ACTIONS(2149), 1, anon_sym_type, - ACTIONS(2002), 1, + ACTIONS(2151), 1, anon_sym_const, - ACTIONS(2005), 1, + ACTIONS(2153), 1, anon_sym_fn, - ACTIONS(2008), 1, + ACTIONS(2155), 1, anon_sym_external, - ACTIONS(2011), 1, + ACTIONS(2157), 1, sym_visibility_modifier, - ACTIONS(2014), 1, + ACTIONS(2159), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 10, + STATE(810), 10, sym__module_statement, sym_attribute, sym_import, @@ -46795,31 +52522,31 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49481] = 12, + [56674] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2017), 1, + ACTIONS(2161), 1, anon_sym_RBRACE, - ACTIONS(2019), 1, + ACTIONS(2163), 1, anon_sym_AT, - ACTIONS(2021), 1, + ACTIONS(2166), 1, anon_sym_import, - ACTIONS(2023), 1, + ACTIONS(2169), 1, anon_sym_type, - ACTIONS(2025), 1, + ACTIONS(2172), 1, anon_sym_const, - ACTIONS(2027), 1, + ACTIONS(2175), 1, anon_sym_fn, - ACTIONS(2029), 1, + ACTIONS(2178), 1, anon_sym_external, - ACTIONS(2031), 1, + ACTIONS(2181), 1, sym_visibility_modifier, - ACTIONS(2033), 1, + ACTIONS(2184), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(704), 10, + STATE(809), 10, sym__module_statement, sym_attribute, sym_import, @@ -46830,31 +52557,31 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49528] = 12, + [56721] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2019), 1, + ACTIONS(2145), 1, anon_sym_AT, - ACTIONS(2021), 1, + ACTIONS(2147), 1, anon_sym_import, - ACTIONS(2023), 1, + ACTIONS(2149), 1, anon_sym_type, - ACTIONS(2025), 1, + ACTIONS(2151), 1, anon_sym_const, - ACTIONS(2027), 1, + ACTIONS(2153), 1, anon_sym_fn, - ACTIONS(2029), 1, + ACTIONS(2155), 1, anon_sym_external, - ACTIONS(2031), 1, + ACTIONS(2157), 1, sym_visibility_modifier, - ACTIONS(2033), 1, + ACTIONS(2159), 1, sym_opacity_modifier, - ACTIONS(2035), 1, + ACTIONS(2187), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 10, + STATE(809), 10, sym__module_statement, sym_attribute, sym_import, @@ -46865,682 +52592,457 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [49575] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(447), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(445), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_as, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_LT_GT, - [49605] = 13, + [56768] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2037), 1, + ACTIONS(2189), 1, anon_sym_RPAREN, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2045), 1, + ACTIONS(2197), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1139), 1, + STATE(1302), 1, sym_data_constructor_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, - STATE(1399), 1, + STATE(1521), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1251), 6, + STATE(1359), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49652] = 13, + [56815] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2045), 1, + ACTIONS(2197), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2049), 1, + ACTIONS(2201), 1, anon_sym_RPAREN, - STATE(1292), 1, + STATE(1302), 1, sym_data_constructor_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, - STATE(1399), 1, + STATE(1521), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1251), 6, + STATE(1359), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49699] = 13, + [56862] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2045), 1, + ACTIONS(2197), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2051), 1, + ACTIONS(2203), 1, anon_sym_RPAREN, - STATE(1292), 1, + STATE(1144), 1, sym_data_constructor_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, - STATE(1399), 1, + STATE(1521), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1251), 6, + STATE(1359), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49746] = 12, + [56909] = 5, 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(2053), 1, - anon_sym_RPAREN, - ACTIONS(2055), 1, - sym__name, - STATE(1181), 1, - sym_type_argument, - STATE(1378), 1, - sym_identifier, + ACTIONS(2205), 1, + anon_sym_LPAREN, + STATE(875), 1, + sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [49790] = 12, - 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, - ACTIONS(2057), 1, + ACTIONS(1304), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1256), 1, - sym_type_argument, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [49834] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2039), 1, - anon_sym_POUND, - ACTIONS(2041), 1, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - ACTIONS(2043), 1, - sym__discard_name, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2055), 1, - sym__name, - ACTIONS(2059), 1, - anon_sym_RPAREN, - STATE(1275), 1, - sym_identifier, - STATE(1299), 1, - sym_external_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1195), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [49878] = 12, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [56939] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, - sym__name, - ACTIONS(2061), 1, + ACTIONS(2207), 1, anon_sym_RPAREN, - STATE(1256), 1, + ACTIONS(2209), 1, + sym__name, + STATE(1336), 1, sym_type_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1216), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49922] = 12, + [56983] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2063), 1, + ACTIONS(2211), 1, anon_sym_RPAREN, - STATE(1059), 1, + STATE(1269), 1, sym_external_function_parameter, - STATE(1275), 1, + STATE(1334), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1195), 6, + STATE(1335), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49966] = 12, + [57027] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2045), 1, + ACTIONS(2197), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1292), 1, + STATE(1302), 1, sym_data_constructor_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, - STATE(1399), 1, + STATE(1521), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1251), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50010] = 12, - 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, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(1163), 1, - sym_type_argument, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50054] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(433), 2, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(1283), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [50082] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2067), 1, - anon_sym_LPAREN, - STATE(776), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1231), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [50112] = 12, - 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, - ACTIONS(2069), 1, - anon_sym_RPAREN, - STATE(1256), 1, - sym_type_argument, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1216), 6, + STATE(1359), 6, sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50156] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1201), 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, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [57071] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2071), 1, + ACTIONS(2213), 1, anon_sym_RPAREN, - STATE(1275), 1, + STATE(1286), 1, + sym_type_argument, + STATE(1461), 1, sym_identifier, - STATE(1299), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1195), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50226] = 12, + [57115] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2073), 1, + ACTIONS(2215), 1, anon_sym_RPAREN, - STATE(1256), 1, + STATE(1336), 1, sym_type_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1216), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50270] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2077), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_record_pattern_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2075), 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, - [50299] = 12, + [57159] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - sym__name, - ACTIONS(2043), 1, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_fn, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2079), 1, + ACTIONS(2209), 1, + sym__name, + ACTIONS(2217), 1, anon_sym_RPAREN, - ACTIONS(2081), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_fn, - STATE(1287), 1, - sym_constant_type_argument, - STATE(1378), 1, + STATE(1149), 1, + sym_type_argument, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1364), 6, + sym__type, sym_type_hole, - [50342] = 11, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [57203] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2085), 1, + ACTIONS(2219), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1334), 1, sym_identifier, + STATE(1377), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1162), 6, + STATE(1335), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50383] = 11, + [57247] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2087), 1, + ACTIONS(2221), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1336), 1, + sym_type_argument, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50424] = 11, + [57291] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1314), 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, + [57317] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2089), 1, + ACTIONS(2223), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1334), 1, sym_identifier, + STATE(1377), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1335), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50465] = 3, + [57361] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1237), 15, + ACTIONS(376), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(1499), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_import, @@ -47552,875 +53054,678 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [50490] = 11, + [57389] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2091), 1, + ACTIONS(2225), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1336), 1, + sym_type_argument, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50531] = 11, + [57433] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2093), 1, - anon_sym_RPAREN, - STATE(1378), 1, + STATE(1334), 1, sym_identifier, + STATE(1377), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1335), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50572] = 11, + [57474] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2229), 1, + anon_sym_LPAREN, + STATE(922), 1, + sym_record_pattern_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2227), 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, + [57503] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2095), 1, + ACTIONS(2231), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1164), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50613] = 11, + [57544] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2097), 1, + ACTIONS(2233), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1147), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50654] = 12, + [57585] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2235), 1, + anon_sym_RPAREN, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - ACTIONS(2099), 1, - anon_sym_RPAREN, - STATE(1287), 1, + STATE(1163), 1, sym_constant_type_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 5, + STATE(1390), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [50697] = 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(2055), 1, - sym__name, - STATE(1256), 1, - sym_type_argument, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(717), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [50738] = 11, + [57628] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1275), 1, + ACTIONS(2241), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, - STATE(1299), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1195), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50779] = 11, + [57669] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2101), 1, + ACTIONS(2243), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50820] = 12, + [57710] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - ACTIONS(2103), 1, + ACTIONS(2245), 1, anon_sym_RPAREN, - STATE(1158), 1, + STATE(1323), 1, sym_constant_type_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 5, + STATE(1390), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [50863] = 11, + [57753] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - ACTIONS(2105), 1, + ACTIONS(2247), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1155), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50904] = 11, + [57794] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - STATE(1287), 1, + ACTIONS(2249), 1, + anon_sym_RPAREN, + STATE(1323), 1, sym_constant_type_argument, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 5, + STATE(1390), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [50944] = 4, + [57837] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2109), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2107), 10, + ACTIONS(1344), 15, + anon_sym_LBRACE, 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, - [50970] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(358), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(356), 10, - anon_sym_LPAREN, - 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, - [50996] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(439), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(437), 10, + anon_sym_AT, anon_sym_LPAREN, - 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, - [51022] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(435), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(433), 10, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [51048] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2111), 1, - anon_sym_POUND, - ACTIONS(2113), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - ACTIONS(2115), 1, - sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, - sym__upname, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(411), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(500), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51086] = 10, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [57862] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2113), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2115), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2209), 1, + sym__name, + ACTIONS(2251), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(493), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51124] = 10, + [57903] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + ACTIONS(2253), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1285), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51162] = 11, - 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, - ACTIONS(2121), 1, - anon_sym_RPAREN, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(970), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1191), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51202] = 11, - 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, - ACTIONS(2123), 1, - anon_sym_RPAREN, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(970), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1167), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51242] = 10, + [57944] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1336), 1, + sym_type_argument, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1371), 6, + STATE(1364), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51280] = 10, + [57985] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2113), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2115), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2209), 1, + sym__name, + ACTIONS(2255), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(459), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51318] = 10, + [58026] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2113), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2115), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2209), 1, + sym__name, + ACTIONS(2257), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(512), 6, + STATE(1148), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51356] = 10, + [58067] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2113), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2115), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(814), 2, sym_type_identifier, - sym_remote_type_identifier, - STATE(539), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [51394] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1491), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51418] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1495), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51442] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1523), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51466] = 3, + sym_remote_type_identifier, + STATE(969), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [58105] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2262), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1531), 14, - anon_sym_LBRACE, + ACTIONS(2264), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2259), 9, anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51490] = 10, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [58133] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1420), 6, + STATE(1485), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51528] = 10, + [58171] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1004), 6, + STATE(1525), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51566] = 3, + [58209] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + STATE(1323), 1, + sym_constant_type_argument, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1659), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51590] = 10, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1390), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [58249] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1372), 6, + STATE(1344), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51628] = 3, + [58287] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1663), 14, + ACTIONS(1569), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48435,177 +53740,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51652] = 3, + [58311] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2267), 1, + anon_sym_POUND, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + sym__discard_name, + ACTIONS(2273), 1, + sym__name, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1691), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [51676] = 10, + STATE(445), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(570), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [58349] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1211), 6, + STATE(1532), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51714] = 11, + [58387] = 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, + ACTIONS(2267), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2125), 1, - anon_sym_RPAREN, - STATE(1378), 1, + ACTIONS(2271), 1, + sym__discard_name, + ACTIONS(2273), 1, + sym__name, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(445), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1311), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(568), 6, + sym__type, sym_type_hole, - [51754] = 4, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [58425] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_fn, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2129), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2127), 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, - [51780] = 10, + STATE(814), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1536), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [58463] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2113), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2115), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2117), 1, - sym__name, - ACTIONS(2119), 1, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(551), 6, + STATE(1136), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51818] = 11, + [58501] = 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, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2131), 1, - anon_sym_RPAREN, - STATE(1378), 1, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1311), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(983), 6, + sym__type, sym_type_hole, - [51858] = 5, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [58539] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2279), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2277), 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, + [58565] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2283), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2281), 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, + [58591] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2133), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2138), 4, + ACTIONS(2287), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2135), 9, + ACTIONS(2285), 10, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -48615,13 +53974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51886] = 3, + [58617] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1539), 14, + ACTIONS(1633), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48636,95 +53995,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [51910] = 10, + [58641] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, - anon_sym_POUND, - ACTIONS(2113), 1, - anon_sym_fn, - ACTIONS(2115), 1, - sym__discard_name, - ACTIONS(2117), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2119), 1, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, sym__upname, - STATE(1389), 1, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + ACTIONS(2289), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(411), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(534), 6, - sym__type, + STATE(1159), 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, - [51948] = 10, + [58681] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(760), 6, + STATE(992), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [51986] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1535), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [52010] = 4, + [58719] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2143), 4, + ACTIONS(2293), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2141), 10, + ACTIONS(2291), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -48735,13 +54074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52036] = 3, + [58745] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1527), 14, + ACTIONS(1627), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48756,69 +54095,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [52060] = 10, + [58769] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2267), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2271), 1, sym__discard_name, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2055), 1, + ACTIONS(2273), 1, sym__name, - STATE(1378), 1, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(445), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(904), 6, + STATE(593), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52098] = 10, + [58807] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2239), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2295), 1, + anon_sym_RPAREN, + STATE(1461), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1158), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [58847] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1597), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [58871] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_fn, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(871), 6, + STATE(1523), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52136] = 3, + [58909] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1619), 14, + ACTIONS(1621), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -48833,155 +54222,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [52160] = 10, + [58933] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(771), 6, + STATE(1345), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52198] = 10, + [58971] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1352), 6, + STATE(1483), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52236] = 10, + [59009] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2267), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2271), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2273), 1, + sym__name, + ACTIONS(2275), 1, sym__upname, - ACTIONS(2055), 1, + STATE(1494), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(445), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(530), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [59047] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(316), 1, sym__name, - STATE(1378), 1, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + ACTIONS(2297), 1, + anon_sym_RPAREN, + STATE(1461), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1331), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [59087] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_fn, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(888), 6, + STATE(1540), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52274] = 10, + [59125] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(870), 6, + STATE(891), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52312] = 4, + [59163] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2145), 10, + ACTIONS(1761), 14, + anon_sym_LBRACE, 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, - [52338] = 5, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59187] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1801), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59211] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1809), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59235] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1829), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59259] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2149), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2138), 4, + ACTIONS(2301), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2135), 9, + ACTIONS(2299), 10, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -48990,306 +54497,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52366] = 10, + [59285] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1322), 6, + STATE(1373), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52404] = 3, + [59323] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2267), 1, + anon_sym_POUND, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + sym__discard_name, + ACTIONS(2273), 1, + sym__name, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1651), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_fn, - anon_sym_external, - anon_sym_LT_DASH, - sym_visibility_modifier, - sym_opacity_modifier, - [52428] = 10, + STATE(445), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(553), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [59361] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2267), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2269), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2271), 1, sym__discard_name, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2055), 1, + ACTIONS(2273), 1, sym__name, - STATE(1378), 1, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(445), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1331), 6, + STATE(529), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52466] = 11, + [59399] = 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, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2151), 1, - anon_sym_RPAREN, - STATE(1378), 1, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1311), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1476), 6, + sym__type, sym_type_hole, - [52506] = 4, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [59437] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2191), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_fn, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2209), 1, + sym__name, + STATE(1461), 1, + sym_identifier, 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, - [52532] = 10, + STATE(814), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(962), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [59475] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(885), 6, + STATE(990), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52570] = 10, + [59513] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1262), 6, + STATE(1463), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52608] = 11, + [59551] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - ACTIONS(2157), 1, + ACTIONS(2303), 1, anon_sym_RPAREN, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1311), 5, + STATE(1331), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [52648] = 10, + [59591] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2239), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2305), 1, + anon_sym_RPAREN, + STATE(1461), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1331), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [59631] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, - sym__name, - STATE(1378), 1, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + ACTIONS(2307), 1, + anon_sym_RPAREN, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1409), 6, - sym__type, + STATE(1331), 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, - [52686] = 10, + [59671] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1573), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59695] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1585), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59719] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2191), 1, anon_sym_POUND, - ACTIONS(2041), 1, + ACTIONS(2193), 1, anon_sym_fn, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2055), 1, + ACTIONS(2209), 1, sym__name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(717), 2, + STATE(814), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1416), 6, + STATE(877), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [52724] = 7, + [59757] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2159), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2145), 2, + ACTIONS(1593), 14, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 4, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [59781] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2309), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2264), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2165), 4, + ACTIONS(2259), 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, - [52755] = 3, + [59809] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2267), 1, + anon_sym_POUND, + ACTIONS(2269), 1, + anon_sym_fn, + ACTIONS(2271), 1, + sym__discard_name, + ACTIONS(2273), 1, + sym__name, + ACTIONS(2275), 1, + sym__upname, + STATE(1494), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(445), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(569), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [59847] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2167), 13, + ACTIONS(2311), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49303,161 +54942,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52778] = 6, + [59870] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2313), 1, + anon_sym_SLASH, + STATE(900), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2145), 3, + ACTIONS(1275), 11, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2163), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2165), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [52807] = 5, + 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, + [59897] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2163), 4, + ACTIONS(2315), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2165), 4, + ACTIONS(2317), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(2145), 5, + ACTIONS(2285), 5, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [52834] = 8, + [59924] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2159), 1, - anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2161), 2, + ACTIONS(2319), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 4, + ACTIONS(2285), 3, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2315), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2165), 4, + ACTIONS(2317), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52867] = 10, + [59953] = 5, 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(1378), 1, - sym_identifier, + ACTIONS(2321), 1, + anon_sym_SLASH, + STATE(900), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1159), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [52904] = 7, + ACTIONS(1260), 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, + [59980] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2173), 1, + ACTIONS(2324), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2145), 2, - anon_sym_DASH_GT, + ACTIONS(2285), 2, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, - ACTIONS(2175), 2, + ACTIONS(2319), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2177), 4, + ACTIONS(2315), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2179), 4, + ACTIONS(2317), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [52935] = 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(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(970), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1311), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [52972] = 3, + [60011] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 13, + ACTIONS(2326), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49471,36 +55075,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52995] = 6, + [60034] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2328), 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(2145), 3, + ACTIONS(2285), 2, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2177), 4, + ACTIONS(2330), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2332), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2179), 4, + ACTIONS(2334), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [53024] = 3, + [60065] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2183), 13, + ACTIONS(2336), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49514,104 +55119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53047] = 5, + [60088] = 6, ACTIONS(3), 1, sym_module_comment, 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(2145), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [53074] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2173), 1, - anon_sym_AMP_AMP, - ACTIONS(2185), 1, + ACTIONS(2285), 3, anon_sym_DASH_GT, - ACTIONS(2187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2175), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2177), 4, + anon_sym_AMP_AMP, + ACTIONS(2332), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2179), 4, + ACTIONS(2334), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [53107] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_SLASH, - STATE(811), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1163), 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, - [53134] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2191), 1, - anon_sym_LPAREN, - STATE(862), 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, - [53161] = 3, + [60117] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 13, + ACTIONS(2338), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49625,33 +55162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53184] = 3, + [60140] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2195), 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(2332), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2285), 5, anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53207] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [60167] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2197), 13, + ACTIONS(2340), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49665,56 +55204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53230] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2189), 1, - anon_sym_SLASH, - STATE(840), 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, - [53257] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(330), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(328), 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, - [53282] = 3, + [60190] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2199), 13, + ACTIONS(2342), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49728,13 +55224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53305] = 3, + [60213] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2201), 13, + ACTIONS(2344), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49748,13 +55244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53328] = 3, + [60236] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2203), 13, + ACTIONS(2346), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49768,40 +55264,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53351] = 10, + [60259] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - STATE(1378), 1, + STATE(1461), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1331), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [60296] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1434), 5, + STATE(1495), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [53388] = 3, + [60333] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2199), 13, + ACTIONS(2348), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49815,13 +55338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53411] = 3, + [60356] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2203), 13, + ACTIONS(2350), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49835,13 +55358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53434] = 3, + [60379] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2205), 13, + ACTIONS(2352), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49855,33 +55378,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53457] = 3, + [60402] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2313), 1, + anon_sym_SLASH, + STATE(897), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2207), 13, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1269), 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, - [53480] = 3, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [60429] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2209), 13, + ACTIONS(2354), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49895,13 +55420,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53503] = 3, + [60452] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2328), 1, + anon_sym_AMP_AMP, + ACTIONS(2356), 1, + anon_sym_DASH_GT, + ACTIONS(2358), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2330), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2332), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2334), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [60485] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2360), 1, + anon_sym_LPAREN, + STATE(943), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1279), 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, + [60512] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 13, + ACTIONS(2354), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49915,13 +55487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53526] = 3, + [60535] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2213), 13, + ACTIONS(2362), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49935,13 +55507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53549] = 3, + [60558] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 13, + ACTIONS(2364), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49955,13 +55527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53572] = 3, + [60581] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2217), 13, + ACTIONS(2366), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49975,13 +55547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53595] = 3, + [60604] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2219), 13, + ACTIONS(2368), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -49995,13 +55567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53618] = 3, + [60627] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2219), 13, + ACTIONS(2370), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50015,13 +55587,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53641] = 3, + [60650] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(316), 1, + sym__name, + ACTIONS(2195), 1, + sym__discard_name, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2237), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_fn, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2221), 13, + STATE(1063), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1161), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [60687] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2372), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50035,13 +55634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53664] = 3, + [60710] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2223), 13, + ACTIONS(2370), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50055,40 +55654,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53687] = 10, + [60733] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2043), 1, + ACTIONS(2195), 1, sym__discard_name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(2239), 1, anon_sym_fn, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(970), 2, + STATE(1063), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1053), 5, + STATE(1218), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [53724] = 3, + [60770] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2225), 13, + ACTIONS(2352), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50102,13 +55701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53747] = 3, + [60793] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2227), 13, + ACTIONS(2374), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50122,13 +55721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53770] = 3, + [60816] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2229), 13, + ACTIONS(2376), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50142,13 +55741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53793] = 3, + [60839] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2231), 13, + ACTIONS(2378), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50162,13 +55761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53816] = 3, + [60862] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2233), 13, + ACTIONS(2380), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50182,76 +55781,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53839] = 4, + [60885] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(429), 9, + ACTIONS(2382), 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, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [53864] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [60908] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(664), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(662), 9, + ACTIONS(2384), 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, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [53889] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [60931] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2324), 1, + anon_sym_AMP_AMP, + ACTIONS(2386), 1, + anon_sym_RBRACE, + ACTIONS(2388), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(676), 4, + ACTIONS(2319), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2315), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(674), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2317), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [53914] = 3, + [60964] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2235), 13, + ACTIONS(2390), 13, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -50265,17 +55866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [53937] = 5, + [60987] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2237), 1, + ACTIONS(1262), 1, anon_sym_SLASH, - STATE(840), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 11, + ACTIONS(1260), 11, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50287,79 +55886,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53964] = 4, + [61011] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1158), 1, - anon_sym_SLASH, + ACTIONS(2392), 1, + anon_sym_LBRACE, + ACTIONS(2394), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 11, + ACTIONS(1503), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [53988] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2240), 1, - anon_sym_RPAREN, - ACTIONS(2242), 1, - sym__discard_name, - ACTIONS(2244), 1, - sym__name, - STATE(987), 1, - sym__labeled_name_param, - STATE(988), 1, - sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, - sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, - sym_identifier, - STATE(1119), 1, - sym_discard, - STATE(1254), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54029] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2246), 11, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [54050] = 3, + [61036] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1397), 11, + ACTIONS(1362), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50371,33 +55924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54071] = 5, + [61057] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2248), 1, - anon_sym_LBRACE, - ACTIONS(2250), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1347), 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, - [54096] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1369), 11, + ACTIONS(1396), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50409,13 +55942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54117] = 3, + [61078] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1373), 11, + ACTIONS(1523), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50427,279 +55960,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54138] = 3, + [61099] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1355), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_import, - anon_sym_type, - anon_sym_const, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_external, - sym_visibility_modifier, - sym_opacity_modifier, - [54159] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2396), 1, + anon_sym_RPAREN, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2244), 1, + ACTIONS(2400), 1, sym__name, - ACTIONS(2252), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, sym__labeled_name_param, - STATE(988), 1, + STATE(1111), 1, sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, + STATE(1112), 1, sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, + STATE(1248), 1, + sym_function_parameter, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1254), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54200] = 13, + [61140] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2244), 1, + ACTIONS(2400), 1, sym__name, - ACTIONS(2254), 1, + ACTIONS(2402), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, sym__labeled_name_param, - STATE(988), 1, + STATE(1111), 1, sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, + STATE(1112), 1, sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1254), 1, + STATE(1397), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54241] = 3, + [61181] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2404), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1331), 11, - anon_sym_LBRACE, + ACTIONS(1515), 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, - [54262] = 13, + [61206] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2244), 1, + ACTIONS(2400), 1, sym__name, - ACTIONS(2256), 1, + ACTIONS(2408), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, sym__labeled_name_param, - STATE(988), 1, + STATE(1111), 1, sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, + STATE(1112), 1, sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1122), 1, + STATE(1397), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54303] = 3, + [61247] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1377), 11, + ACTIONS(2410), 11, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [61268] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1439), 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, - [54324] = 3, + [61289] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1393), 11, + ACTIONS(1453), 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, - [54345] = 13, + [61310] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2244), 1, + ACTIONS(2400), 1, sym__name, - ACTIONS(2258), 1, + ACTIONS(2412), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, sym__labeled_name_param, - STATE(988), 1, + STATE(1111), 1, sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, + STATE(1112), 1, sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, + STATE(1145), 1, + sym_function_parameter, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1178), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54386] = 5, + [61351] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2260), 1, - anon_sym_DOT, - ACTIONS(2262), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1205), 9, + ACTIONS(1541), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, anon_sym_type, anon_sym_const, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54411] = 5, + [61372] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2264), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1417), 9, + ACTIONS(1457), 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] = 5, + [61393] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2268), 1, - anon_sym_LBRACE, - ACTIONS(2270), 1, - anon_sym_DASH_GT, + ACTIONS(2398), 1, + sym__discard_name, + ACTIONS(2400), 1, + sym__name, + ACTIONS(2414), 1, + anon_sym_RPAREN, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, + sym__labeled_name_param, + STATE(1111), 1, + sym__name_param, + STATE(1112), 1, + sym_label, + STATE(1274), 1, + sym_identifier, + STATE(1277), 1, + sym_discard, + STATE(1397), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1381), 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, - [54461] = 3, + [61434] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2398), 1, + sym__discard_name, + ACTIONS(2400), 1, + sym__name, + ACTIONS(2416), 1, + anon_sym_RPAREN, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, + sym__labeled_name_param, + STATE(1111), 1, + sym__name_param, + STATE(1112), 1, + sym_label, + STATE(1274), 1, + sym_identifier, + STATE(1277), 1, + sym_discard, + STATE(1397), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1311), 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, - [54482] = 5, + [61475] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2272), 1, + ACTIONS(2418), 1, anon_sym_LBRACE, - ACTIONS(2274), 1, + ACTIONS(2420), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1323), 9, + ACTIONS(1547), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50709,41 +56258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54507] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2242), 1, - sym__discard_name, - ACTIONS(2244), 1, - sym__name, - ACTIONS(2276), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym__labeled_name_param, - STATE(988), 1, - sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, - sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, - sym_identifier, - STATE(1119), 1, - sym_discard, - STATE(1254), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54548] = 3, + [61500] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 11, + ACTIONS(1511), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, @@ -50755,32 +56276,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54569] = 3, + [61521] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1389), 10, + ACTIONS(1366), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, - anon_sym_as, anon_sym_type, anon_sym_const, anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54589] = 4, + [61542] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2278), 1, - anon_sym_as, + ACTIONS(2422), 1, + anon_sym_LBRACE, + ACTIONS(2424), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1305), 9, + ACTIONS(1529), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50790,15 +56314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54611] = 4, + [61567] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2280), 1, + ACTIONS(2426), 1, anon_sym_DOT, + ACTIONS(2428), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1299), 9, + ACTIONS(1354), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50808,54 +56334,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54633] = 3, + [61592] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2430), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1401), 10, + ACTIONS(1709), 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, - [54653] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(614), 1, - sym__decimal, - ACTIONS(620), 1, - sym__upname, - ACTIONS(2282), 1, - anon_sym_DASH, - ACTIONS(2284), 1, - sym__name, - STATE(317), 1, - sym_constructor_name, - STATE(612), 1, - sym_label, - STATE(772), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(612), 3, - sym__hex, - sym__octal, - sym__binary, - [54687] = 3, + [61614] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1411), 10, + ACTIONS(1382), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50866,57 +56369,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54707] = 10, + [61634] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1759), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(1763), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(2286), 1, + ACTIONS(2432), 1, anon_sym_DASH, - ACTIONS(2288), 1, + ACTIONS(2434), 1, sym__name, - STATE(612), 1, - sym_label, - STATE(740), 1, + STATE(355), 1, sym_constructor_name, - STATE(772), 1, + STATE(651), 1, + sym_label, + STATE(856), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1757), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - [54741] = 4, + [61668] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2290), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1703), 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, - [54763] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2292), 1, - anon_sym_LBRACE, + ACTIONS(2436), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1433), 9, + ACTIONS(1443), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50926,15 +56411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54785] = 4, + [61690] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2296), 1, + ACTIONS(2440), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2294), 9, + ACTIONS(2438), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -50944,39 +56429,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [54807] = 12, + [61712] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2244), 1, + ACTIONS(2400), 1, sym__name, - STATE(987), 1, + STATE(1085), 1, + sym__discard_param, + STATE(1109), 1, + sym__labeled_discard_param, + STATE(1110), 1, sym__labeled_name_param, - STATE(988), 1, + STATE(1111), 1, sym__name_param, - STATE(1003), 1, - sym__labeled_discard_param, - STATE(1005), 1, + STATE(1112), 1, sym_label, - STATE(1010), 1, - sym__discard_param, - STATE(1116), 1, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1254), 1, + STATE(1397), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54845] = 3, + [61750] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1343), 10, + ACTIONS(1461), 10, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -50987,13 +56472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54865] = 3, + [61770] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2442), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1559), 9, + ACTIONS(1715), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51003,29 +56490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54884] = 3, + [61792] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1515), 9, + ACTIONS(1465), 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, - [54903] = 3, + [61812] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2444), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1499), 9, + ACTIONS(1473), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51035,29 +56525,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54922] = 3, + [61834] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1507), 9, + ACTIONS(1469), 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, - [54941] = 3, + [61854] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(908), 1, + sym__decimal, + ACTIONS(912), 1, + sym__upname, + ACTIONS(2446), 1, + anon_sym_DASH, + ACTIONS(2448), 1, + sym__name, + STATE(651), 1, + sym_label, + STATE(692), 1, + sym_constructor_name, + STATE(856), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1643), 9, + ACTIONS(906), 3, + sym__hex, + sym__octal, + sym__binary, + [61888] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 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, + [61907] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1737), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51067,13 +56598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54960] = 3, + [61926] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1511), 9, + ACTIONS(1689), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51083,13 +56614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54979] = 3, + [61945] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1429), 9, + ACTIONS(1655), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51099,13 +56630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [54998] = 3, + [61964] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1347), 9, + ACTIONS(1777), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51115,13 +56646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55017] = 3, + [61983] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1699), 9, + ACTIONS(1725), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51131,13 +56662,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55036] = 3, + [62002] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2450), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1695), 9, + ACTIONS(2438), 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, + [62023] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2454), 1, + anon_sym_as, + ACTIONS(2456), 1, + anon_sym_LT_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2452), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [62046] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1617), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51147,13 +56713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55055] = 3, + [62065] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1647), 9, + ACTIONS(1589), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51163,33 +56729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55074] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - ACTIONS(2298), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(308), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1341), 3, - sym__pattern_bit_string_segment_argument, - sym_integer, - sym_identifier, - [55101] = 3, + [62084] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1487), 9, + ACTIONS(1659), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51199,13 +56745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55120] = 3, + [62103] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1551), 9, + ACTIONS(1695), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51215,13 +56761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55139] = 3, + [62122] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1547), 9, + ACTIONS(1699), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51231,29 +56777,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55158] = 3, + [62141] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(356), 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, - [55177] = 3, + ACTIONS(1703), 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, + [62160] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1479), 9, + ACTIONS(1773), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51263,13 +56809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55196] = 3, + [62179] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1575), 9, + ACTIONS(1639), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51279,31 +56825,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55215] = 5, + [62198] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2302), 1, - anon_sym_as, - ACTIONS(2304), 1, - anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - 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, - [55238] = 3, + ACTIONS(1721), 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, + [62217] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1475), 9, + ACTIONS(1643), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51313,13 +56857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55257] = 3, + [62236] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1579), 9, + ACTIONS(1665), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51329,29 +56873,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55276] = 3, + [62255] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 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, - [55295] = 3, + ACTIONS(1581), 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, + [62274] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1483), 9, + ACTIONS(1797), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51361,30 +56905,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55314] = 4, + [62293] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2306), 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, - [55335] = 3, + ACTIONS(1647), 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, + [62312] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1709), 9, + ACTIONS(1741), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51394,13 +56937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55354] = 3, + [62331] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1443), 9, + ACTIONS(1503), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51410,13 +56953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55373] = 3, + [62350] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1591), 9, + ACTIONS(1651), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51426,13 +56969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55392] = 3, + [62369] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1583), 9, + ACTIONS(1565), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51442,29 +56985,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55411] = 3, + [62388] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(433), 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, - [55430] = 3, + ACTIONS(1673), 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, + [62407] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1587), 9, + ACTIONS(1813), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51474,13 +57017,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55449] = 3, + [62426] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + ACTIONS(2458), 1, + sym__name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1509), 3, + sym__pattern_bit_string_segment_argument, + sym_integer, + sym_identifier, + [62453] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2460), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2438), 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, + [62474] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1503), 9, + ACTIONS(1669), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51490,29 +57070,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55468] = 3, + [62493] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1519), 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, - [55487] = 3, + ACTIONS(380), 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, + [62512] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1555), 9, + ACTIONS(1821), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51522,30 +57102,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55506] = 4, + [62531] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2308), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2294), 8, + 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, - [55527] = 3, + [62550] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1543), 9, + ACTIONS(1733), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51555,13 +57134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55546] = 3, + [62569] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1425), 9, + ACTIONS(1577), 9, anon_sym_RBRACE, anon_sym_AT, anon_sym_import, @@ -51571,35 +57150,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [55565] = 10, + [62588] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(372), 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, + [62606] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2310), 1, + ACTIONS(2462), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1126), 1, sym__discard_param, - STATE(1025), 1, + STATE(1129), 1, sym__name_param, - STATE(1116), 1, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, - STATE(1230), 1, + STATE(1362), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55597] = 3, + [62638] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(429), 8, + ACTIONS(566), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -51608,15 +57202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55615] = 4, + [62656] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2312), 1, + ACTIONS(2464), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2294), 7, + ACTIONS(2438), 7, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -51624,35 +57218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55635] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(312), 1, - sym__name, - ACTIONS(2242), 1, - sym__discard_name, - ACTIONS(2314), 1, - anon_sym_RPAREN, - STATE(1012), 1, - sym__discard_param, - STATE(1025), 1, - sym__name_param, - STATE(1116), 1, - sym_identifier, - STATE(1119), 1, - sym_discard, - STATE(1230), 1, - sym_anonymous_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [55667] = 3, + [62676] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(674), 8, + ACTIONS(640), 8, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, @@ -51661,5769 +57233,6024 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [55685] = 3, + [62694] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(316), 1, + sym__name, + ACTIONS(2398), 1, + sym__discard_name, + ACTIONS(2466), 1, + anon_sym_RPAREN, + STATE(1126), 1, + sym__discard_param, + STATE(1129), 1, + sym__name_param, + STATE(1274), 1, + sym_identifier, + STATE(1277), 1, + sym_discard, + STATE(1362), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(662), 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, - [55703] = 10, + [62726] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2242), 1, + ACTIONS(2398), 1, sym__discard_name, - ACTIONS(2316), 1, + ACTIONS(2468), 1, anon_sym_RPAREN, - STATE(1012), 1, + STATE(1126), 1, sym__discard_param, - STATE(1025), 1, + STATE(1129), 1, sym__name_param, - STATE(1115), 1, + STATE(1273), 1, sym_anonymous_function_parameter, - STATE(1116), 1, + STATE(1274), 1, sym_identifier, - STATE(1119), 1, + STATE(1277), 1, sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55735] = 9, + [62758] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(316), 1, sym__name, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2318), 1, - anon_sym_RBRACE, - ACTIONS(2320), 1, - anon_sym_type, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, + ACTIONS(2398), 1, + sym__discard_name, + STATE(1126), 1, + sym__discard_param, + STATE(1129), 1, + sym__name_param, + STATE(1274), 1, sym_identifier, - STATE(1186), 1, - sym_unqualified_import, + STATE(1277), 1, + sym_discard, + STATE(1362), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55764] = 9, + [62787] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2470), 7, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [62804] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(770), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2320), 1, - anon_sym_type, - ACTIONS(2322), 1, + ACTIONS(2472), 1, anon_sym_RBRACE, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, + ACTIONS(2474), 1, + anon_sym_type, + STATE(1220), 1, sym_identifier, - STATE(1307), 1, + STATE(1221), 1, + sym_type_identifier, + STATE(1421), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55793] = 9, + [62833] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2320), 1, + ACTIONS(2474), 1, anon_sym_type, - ACTIONS(2324), 1, + ACTIONS(2476), 1, anon_sym_RBRACE, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, - sym_identifier, - STATE(1064), 1, + STATE(1219), 1, sym_unqualified_import, + STATE(1220), 1, + sym_identifier, + STATE(1221), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55822] = 9, + [62862] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2320), 1, + ACTIONS(2474), 1, anon_sym_type, - ACTIONS(2326), 1, + ACTIONS(2478), 1, anon_sym_RBRACE, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, + STATE(1220), 1, sym_identifier, - STATE(1307), 1, + STATE(1221), 1, + sym_type_identifier, + STATE(1262), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55851] = 9, + [62891] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(2242), 1, - sym__discard_name, - STATE(1012), 1, - sym__discard_param, - STATE(1025), 1, - sym__name_param, - STATE(1116), 1, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2474), 1, + anon_sym_type, + ACTIONS(2480), 1, + anon_sym_RBRACE, + STATE(1220), 1, sym_identifier, - STATE(1119), 1, - sym_discard, - STATE(1230), 1, - sym_anonymous_function_parameter, + STATE(1221), 1, + sym_type_identifier, + STATE(1421), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55880] = 9, + [62920] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2320), 1, + ACTIONS(2474), 1, anon_sym_type, - ACTIONS(2328), 1, + ACTIONS(2482), 1, anon_sym_RBRACE, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, + STATE(1220), 1, sym_identifier, - STATE(1307), 1, + STATE(1221), 1, + sym_type_identifier, + STATE(1421), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55909] = 3, + [62949] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2330), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [55926] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(756), 1, + ACTIONS(770), 1, sym__name, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2320), 1, + ACTIONS(2474), 1, anon_sym_type, - ACTIONS(2332), 1, + ACTIONS(2484), 1, anon_sym_RBRACE, - STATE(1062), 1, - sym_type_identifier, - STATE(1063), 1, + STATE(1220), 1, sym_identifier, - STATE(1307), 1, + STATE(1221), 1, + sym_type_identifier, + STATE(1421), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55955] = 7, + [62978] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, - sym__upname, - ACTIONS(2298), 1, - sym__name, - STATE(434), 1, - sym_type_name, - STATE(1389), 1, - sym_identifier, + ACTIONS(976), 1, + sym__decimal, + ACTIONS(2486), 1, + anon_sym_DASH, + STATE(378), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(388), 2, - sym_type_identifier, - sym_remote_type_identifier, - [55979] = 6, + ACTIONS(974), 3, + sym__hex, + sym__octal, + sym__binary, + [63000] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(614), 1, + ACTIONS(624), 1, sym__decimal, - ACTIONS(2282), 1, + ACTIONS(2432), 1, anon_sym_DASH, - STATE(406), 1, + STATE(426), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(612), 3, + ACTIONS(622), 3, sym__hex, sym__octal, sym__binary, - [56001] = 6, + [63022] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2334), 1, + ACTIONS(2488), 1, anon_sym_DQUOTE2, - ACTIONS(2338), 1, + ACTIONS(2492), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(938), 2, + STATE(1038), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56023] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2119), 1, - sym__upname, - ACTIONS(2298), 1, - sym__name, - STATE(456), 1, - sym_type_name, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(388), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56047] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - STATE(144), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(308), 3, - sym__hex, - sym__octal, - sym__binary, - [56069] = 6, + [63044] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(310), 1, + ACTIONS(908), 1, sym__decimal, - ACTIONS(2340), 1, + ACTIONS(2446), 1, anon_sym_DASH, - STATE(144), 1, + STATE(668), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(308), 3, + ACTIONS(906), 3, sym__hex, sym__octal, sym__binary, - [56091] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2298), 1, - sym__name, - STATE(845), 1, - sym_type_name, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(807), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56115] = 6, + [63066] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2342), 1, + ACTIONS(2494), 1, anon_sym_DQUOTE2, - ACTIONS(2344), 1, + ACTIONS(2496), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(954), 2, + STATE(1052), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56137] = 6, + [63088] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(310), 1, - sym__decimal, - ACTIONS(1289), 1, - anon_sym_DASH, - STATE(1374), 1, - sym_integer, + ACTIONS(2498), 1, + anon_sym_DQUOTE2, + ACTIONS(2500), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(308), 3, - sym__hex, - sym__octal, - sym__binary, - [56159] = 6, + ACTIONS(2490), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1047), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [63110] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(884), 1, - sym__decimal, - ACTIONS(2346), 1, - anon_sym_DASH, - STATE(330), 1, - sym_integer, + ACTIONS(2275), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(555), 1, + sym_type_name, + STATE(1494), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(882), 3, - sym__hex, - sym__octal, - sym__binary, - [56181] = 5, + STATE(429), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63134] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2348), 1, + ACTIONS(2502), 1, anon_sym_as, - ACTIONS(2350), 1, + ACTIONS(2504), 1, anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2300), 4, + ACTIONS(2452), 4, anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_PIPE, - [56201] = 7, + [63154] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1196), 1, - sym_type_name, STATE(1378), 1, + sym_type_name, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, + STATE(920), 2, sym_type_identifier, sym_remote_type_identifier, - [56225] = 6, + [63178] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + STATE(146), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + [63200] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2352), 1, + ACTIONS(2506), 1, anon_sym_DQUOTE2, - ACTIONS(2354), 1, + ACTIONS(2508), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(952), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56247] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2298), 1, - sym__name, - STATE(900), 1, - sym_type_name, - STATE(1378), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(807), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56271] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2119), 1, - sym__upname, - ACTIONS(2298), 1, - sym__name, - STATE(524), 1, - sym_type_name, - STATE(1389), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(388), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56295] = 7, + [63222] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1212), 1, + STATE(1380), 1, sym_type_name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, + STATE(920), 2, sym_type_identifier, sym_remote_type_identifier, - [56319] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2354), 1, - sym_quoted_content, - ACTIONS(2356), 1, - anon_sym_DQUOTE2, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2336), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(952), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [56341] = 6, + [63246] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2358), 1, + ACTIONS(2510), 1, anon_sym_DQUOTE2, - ACTIONS(2360), 1, + ACTIONS(2512), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(942), 2, + STATE(1056), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56363] = 6, + [63268] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2354), 1, + ACTIONS(2508), 1, sym_quoted_content, - ACTIONS(2362), 1, + ACTIONS(2514), 1, anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(952), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56385] = 6, + [63290] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2364), 1, + ACTIONS(2516), 1, anon_sym_DQUOTE2, - ACTIONS(2366), 1, + ACTIONS(2521), 1, sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2518), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(956), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56407] = 7, + [63312] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, + ACTIONS(2275), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(462), 1, + STATE(562), 1, sym_type_name, - STATE(1389), 1, + STATE(1494), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(388), 2, + STATE(429), 2, sym_type_identifier, sym_remote_type_identifier, - [56431] = 7, + [63336] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(2524), 1, + anon_sym_DQUOTE2, + ACTIONS(2526), 1, + sym_quoted_content, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2490), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1045), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [63358] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1281), 1, + STATE(1353), 1, sym_type_name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, + STATE(920), 2, sym_type_identifier, sym_remote_type_identifier, - [56455] = 6, + [63382] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(310), 1, + ACTIONS(314), 1, sym__decimal, - ACTIONS(1289), 1, + ACTIONS(1372), 1, anon_sym_DASH, - STATE(1364), 1, + STATE(1477), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(308), 3, + ACTIONS(312), 3, sym__hex, sym__octal, sym__binary, - [56477] = 6, + [63404] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2368), 1, - anon_sym_DQUOTE2, - ACTIONS(2370), 1, - sym_quoted_content, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(941), 1, + sym_type_name, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(944), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [56499] = 6, + STATE(920), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63428] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2372), 1, - anon_sym_DQUOTE2, - ACTIONS(2374), 1, + ACTIONS(2508), 1, sym_quoted_content, + ACTIONS(2528), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(955), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56521] = 6, + [63450] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(57), 1, - sym__decimal, - ACTIONS(2376), 1, - anon_sym_DASH, - STATE(12), 1, - sym_integer, + ACTIONS(2275), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(503), 1, + sym_type_name, + STATE(1494), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - [56543] = 6, + STATE(429), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63474] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2378), 1, - anon_sym_DQUOTE2, - ACTIONS(2383), 1, + ACTIONS(2508), 1, sym_quoted_content, + ACTIONS(2530), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2380), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(952), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56565] = 7, + [63496] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - ACTIONS(2298), 1, + ACTIONS(770), 1, sym__name, - STATE(882), 1, - sym_type_name, - STATE(1378), 1, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2474), 1, + anon_sym_type, + STATE(1220), 1, sym_identifier, + STATE(1221), 1, + sym_type_identifier, + STATE(1421), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, - sym_type_identifier, - sym_remote_type_identifier, - [56589] = 6, + [63522] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2354), 1, - sym_quoted_content, - ACTIONS(2386), 1, - anon_sym_DQUOTE2, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(1372), 1, + anon_sym_DASH, + STATE(1553), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(952), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [56611] = 6, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + [63544] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2354), 1, - sym_quoted_content, - ACTIONS(2388), 1, - anon_sym_DQUOTE2, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(2532), 1, + anon_sym_DASH, + STATE(47), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - STATE(952), 2, - sym_escape_sequence, - aux_sym_string_repeat1, - [56633] = 6, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + [63566] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2534), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1897), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [63586] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2354), 1, + ACTIONS(2508), 1, sym_quoted_content, - ACTIONS(2390), 1, + ACTIONS(2537), 1, anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2336), 2, + ACTIONS(2490), 2, aux_sym_escape_sequence_token1, aux_sym_escape_sequence_token2, - STATE(952), 2, + STATE(1039), 2, sym_escape_sequence, aux_sym_string_repeat1, - [56655] = 4, + [63608] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2392), 1, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(960), 1, + sym_type_name, + STATE(1461), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(920), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63632] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2539), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1299), 5, + ACTIONS(1443), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT_GT, - [56673] = 7, + [63650] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(2199), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(857), 1, + STATE(997), 1, sym_type_name, - STATE(1378), 1, + STATE(1461), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, + STATE(920), 2, sym_type_identifier, sym_remote_type_identifier, - [56697] = 7, + [63674] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(2508), 1, + sym_quoted_content, + ACTIONS(2541), 1, + anon_sym_DQUOTE2, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2490), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1039), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [63696] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2275), 1, sym__upname, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1227), 1, + STATE(497), 1, sym_type_name, - STATE(1378), 1, + STATE(1494), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(807), 2, + STATE(429), 2, sym_type_identifier, sym_remote_type_identifier, - [56721] = 8, + [63720] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 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(1307), 1, - sym_unqualified_import, + ACTIONS(2543), 1, + anon_sym_DQUOTE2, + ACTIONS(2545), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56747] = 5, + ACTIONS(2490), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1035), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [63742] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2394), 1, - anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(1408), 1, + sym_type_name, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1775), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [56767] = 7, + STATE(920), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63766] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1319), 1, - anon_sym_DOT_DOT, - ACTIONS(2397), 1, - anon_sym_COMMA, - ACTIONS(2399), 1, - anon_sym_RPAREN, - STATE(980), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1382), 1, - sym_pattern_spread, + ACTIONS(2199), 1, + sym__upname, + ACTIONS(2458), 1, + sym__name, + STATE(976), 1, + sym_type_name, + STATE(1461), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56790] = 5, + STATE(920), 2, + sym_type_identifier, + sym_remote_type_identifier, + [63790] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2403), 1, - anon_sym_COMMA, - STATE(969), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(314), 1, + sym__decimal, + ACTIONS(2547), 1, + anon_sym_DASH, + STATE(146), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2401), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [56809] = 6, + ACTIONS(312), 3, + sym__hex, + sym__octal, + sym__binary, + [63812] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - sym__name, - ACTIONS(2242), 1, + ACTIONS(276), 1, sym__discard_name, - ACTIONS(2405), 1, - anon_sym_RBRACK, + ACTIONS(278), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1344), 2, - sym_identifier, - sym_discard, - [56830] = 5, + ACTIONS(376), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [63831] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1033), 1, + ACTIONS(2549), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, - anon_sym_as, + STATE(1197), 1, + sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(344), 3, + ACTIONS(2551), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT_GT, - [56849] = 7, + anon_sym_RPAREN, + anon_sym_EQ, + [63850] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2407), 1, + ACTIONS(2553), 1, anon_sym_type, - ACTIONS(2409), 1, + ACTIONS(2555), 1, anon_sym_const, - ACTIONS(2411), 1, + ACTIONS(2557), 1, anon_sym_fn, - ACTIONS(2413), 1, + ACTIONS(2559), 1, anon_sym_external, - ACTIONS(2415), 1, + ACTIONS(2561), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56872] = 6, + [63873] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2417), 1, - anon_sym_RBRACE, - ACTIONS(2419), 1, + ACTIONS(318), 1, sym__upname, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, + STATE(1542), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(967), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56893] = 6, + [63894] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - ACTIONS(2422), 1, - anon_sym_RBRACE, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, + STATE(1518), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(967), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56914] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2426), 1, - anon_sym_COMMA, - STATE(972), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2424), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [56933] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2428), 1, - anon_sym_LPAREN, - STATE(1047), 1, - sym_constant_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2430), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [56952] = 6, + [63915] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, - STATE(1415), 1, + STATE(1446), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [56973] = 5, + [63936] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2434), 1, + ACTIONS(2565), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(1068), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2432), 3, + ACTIONS(2563), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [56992] = 6, + [63955] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, - STATE(1429), 1, + STATE(1449), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [57013] = 6, + [63976] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, - STATE(1328), 1, + STATE(1556), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [57034] = 5, + [63997] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2437), 1, + ACTIONS(1388), 1, + anon_sym_RPAREN, + ACTIONS(1392), 1, + anon_sym_DOT_DOT, + ACTIONS(2568), 1, anon_sym_COMMA, - STATE(975), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1093), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1452), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2432), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [64020] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1392), 1, anon_sym_DOT_DOT, - [57053] = 6, + ACTIONS(2570), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, + anon_sym_RPAREN, + STATE(1071), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1497), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [64043] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__upname, - STATE(1030), 1, - sym_constructor_name, - STATE(1423), 1, - sym_data_constructors, + ACTIONS(2576), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [57074] = 6, + ACTIONS(2574), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [64062] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__upname, - STATE(1030), 1, - sym_constructor_name, - STATE(1375), 1, - sym_data_constructors, + ACTIONS(1016), 1, + anon_sym_LPAREN, + ACTIONS(1287), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [57095] = 7, + ACTIONS(344), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT_GT, + [64081] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2440), 1, - anon_sym_type, - ACTIONS(2442), 1, - anon_sym_const, - ACTIONS(2444), 1, - anon_sym_fn, - ACTIONS(2446), 1, - anon_sym_external, - ACTIONS(2448), 1, - sym_opacity_modifier, + ACTIONS(316), 1, + sym__name, + ACTIONS(2398), 1, + sym__discard_name, + ACTIONS(2578), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57118] = 5, + STATE(1448), 2, + sym_identifier, + sym_discard, + [64102] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2348), 1, - anon_sym_as, - ACTIONS(2450), 1, - anon_sym_LT_GT, + ACTIONS(318), 1, + sym__upname, + ACTIONS(2580), 1, + anon_sym_RBRACE, + STATE(1092), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2300), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - [57137] = 7, + STATE(1079), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [64123] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1319), 1, + ACTIONS(1859), 1, anon_sym_DOT_DOT, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(2452), 1, + ACTIONS(2582), 1, anon_sym_COMMA, - STATE(994), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1356), 1, - sym_pattern_spread, + ACTIONS(2584), 1, + anon_sym_RBRACK, + STATE(1078), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1440), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57160] = 7, + [64146] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1733), 1, + ACTIONS(1859), 1, anon_sym_DOT_DOT, - ACTIONS(2454), 1, + ACTIONS(2586), 1, anon_sym_COMMA, - ACTIONS(2456), 1, + ACTIONS(2588), 1, anon_sym_RBRACK, - STATE(975), 1, + STATE(1082), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1336), 1, + STATE(1549), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57183] = 5, + [64169] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(328), 1, - sym__discard_name, - ACTIONS(330), 1, - sym__name, + ACTIONS(2590), 1, + anon_sym_RBRACE, + ACTIONS(2592), 1, + sym__upname, + STATE(1092), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(433), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57202] = 6, + STATE(1079), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [64190] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(318), 1, sym__upname, - STATE(1030), 1, + STATE(1092), 1, sym_constructor_name, - STATE(1337), 1, + STATE(1513), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(968), 2, + STATE(1076), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [57223] = 7, + [64211] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1733), 1, - anon_sym_DOT_DOT, - ACTIONS(2458), 1, + ACTIONS(2595), 1, + anon_sym_type, + ACTIONS(2597), 1, + anon_sym_const, + ACTIONS(2599), 1, + anon_sym_fn, + ACTIONS(2601), 1, + anon_sym_external, + ACTIONS(2603), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [64234] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2605), 1, anon_sym_COMMA, - ACTIONS(2460), 1, - anon_sym_RBRACK, - STATE(981), 1, + STATE(1082), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1335), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57246] = 5, + ACTIONS(2563), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [64253] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2464), 1, - anon_sym_DASH, - STATE(985), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2502), 1, + anon_sym_as, + ACTIONS(2608), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2462), 2, + ACTIONS(2452), 3, anon_sym_COMMA, - anon_sym_GT_GT, - [57264] = 5, + anon_sym_COLON, + anon_sym_LT_DASH, + [64272] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(328), 1, - anon_sym_COLON, - ACTIONS(433), 1, - anon_sym_DOT, + ACTIONS(2612), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1283), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57282] = 5, + ACTIONS(2610), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [64291] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2616), 1, anon_sym_COLON, - STATE(1204), 1, + STATE(1346), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57300] = 5, + [64309] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - STATE(1305), 1, - sym__type_annotation, + ACTIONS(2618), 1, + sym__name, + STATE(1180), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, + STATE(1508), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2471), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57318] = 5, + [64329] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2475), 1, - anon_sym_DASH, - STATE(1031), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2618), 1, + sym__name, + STATE(1180), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, + STATE(1468), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2473), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57336] = 4, + [64349] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2479), 1, - sym__decimal, + ACTIONS(59), 1, + sym__name, + ACTIONS(2620), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2477), 3, - sym__hex, - sym__octal, - sym__binary, - [57352] = 5, + STATE(584), 2, + sym_identifier, + sym_discard, + [64367] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2483), 1, - anon_sym_PIPE, - STATE(1020), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2618), 1, + sym__name, + STATE(1180), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, + STATE(1450), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2481), 2, - anon_sym_if, - anon_sym_DASH_GT, - [57370] = 4, + [64387] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2487), 1, - sym__decimal, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(1434), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2485), 3, - sym__hex, - sym__octal, - sym__binary, - [57386] = 5, + ACTIONS(2622), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [64405] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2491), 1, + ACTIONS(2624), 1, anon_sym_DASH, - STATE(993), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(1096), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2489), 2, + ACTIONS(1537), 2, anon_sym_COMMA, anon_sym_GT_GT, - [57404] = 5, + [64423] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2494), 1, + ACTIONS(2628), 1, + anon_sym_LPAREN, + STATE(1361), 1, + sym_data_constructor_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2626), 2, + anon_sym_RBRACE, + sym__upname, + [64441] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2630), 1, anon_sym_COMMA, - STATE(994), 1, + STATE(1093), 1, aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2497), 2, + ACTIONS(2633), 2, anon_sym_RPAREN, anon_sym_DOT_DOT, - [57422] = 6, + [64459] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, - sym__name, - STATE(1093), 1, - sym_record_update_argument, - STATE(1327), 1, - sym_label, - STATE(1380), 1, - sym_record_update_arguments, + ACTIONS(276), 1, + anon_sym_COLON, + ACTIONS(376), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57442] = 4, + ACTIONS(1499), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64477] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2503), 1, - sym__decimal, + ACTIONS(2637), 1, + anon_sym_DASH, + STATE(1091), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2501), 3, - sym__hex, - sym__octal, - sym__binary, - [57458] = 5, + ACTIONS(2635), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [64495] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, + ACTIONS(2641), 1, + anon_sym_DASH, + STATE(1096), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2639), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [64513] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2618), 1, sym__name, - ACTIONS(2242), 1, - sym__discard_name, + STATE(1180), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, + STATE(1558), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(876), 2, - sym_identifier, - sym_discard, - [57476] = 6, + [64533] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - ACTIONS(2505), 1, + ACTIONS(2434), 1, sym__name, - STATE(19), 1, + STATE(355), 1, sym_constructor_name, - STATE(540), 1, + STATE(651), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57496] = 4, + [64553] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2509), 1, + ACTIONS(2646), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2507), 3, + ACTIONS(2644), 3, sym__hex, sym__octal, sym__binary, - [57512] = 4, + [64569] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2513), 1, - sym__decimal, + ACTIONS(2650), 1, + anon_sym_PIPE, + STATE(1100), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2511), 3, - sym__hex, - sym__octal, - sym__binary, - [57528] = 5, + ACTIONS(2648), 2, + anon_sym_if, + anon_sym_DASH_GT, + [64587] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(59), 1, sym__name, - ACTIONS(2515), 1, + ACTIONS(2620), 1, sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(549), 2, + STATE(585), 2, sym_identifier, sym_discard, - [57546] = 5, + [64605] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - STATE(1243), 1, - sym__type_annotation, + ACTIONS(2655), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2517), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [57564] = 5, + ACTIONS(2653), 3, + sym__hex, + sym__octal, + sym__binary, + [64621] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - STATE(1224), 1, - sym__type_annotation, + ACTIONS(770), 1, + sym__name, + ACTIONS(2398), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2467), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57582] = 3, + STATE(978), 2, + sym_identifier, + sym_discard, + [64639] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + STATE(1100), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2519), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_DASH, - [57596] = 6, + ACTIONS(1883), 2, + anon_sym_if, + anon_sym_DASH_GT, + [64657] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(2618), 1, sym__name, - ACTIONS(2242), 1, - sym__discard_name, - STATE(1037), 1, - sym_discard, - STATE(1038), 1, - sym_identifier, + STATE(1180), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, + STATE(1441), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57616] = 5, + [64677] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2521), 1, - anon_sym_DASH, - STATE(1014), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2458), 1, + sym__name, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(1399), 1, + sym_anonymous_function_parameters, + STATE(1401), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1287), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57634] = 5, + [64697] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2525), 1, - anon_sym_DASH, - STATE(1006), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(810), 1, + anon_sym_RBRACK, + ACTIONS(812), 1, + anon_sym_DOT_DOT, + ACTIONS(2661), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2523), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57652] = 6, + [64717] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, + ACTIONS(2618), 1, sym__name, - ACTIONS(2527), 1, + ACTIONS(2663), 1, anon_sym_RPAREN, - STATE(1249), 1, + STATE(1316), 1, sym_record_update_argument, - STATE(1327), 1, + STATE(1439), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57672] = 6, + [64737] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(788), 1, - anon_sym_RBRACK, - ACTIONS(790), 1, - anon_sym_DOT_DOT, - ACTIONS(2529), 1, - anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(1348), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57692] = 5, + ACTIONS(2665), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [64755] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2616), 1, anon_sym_COLON, - STATE(1214), 1, + STATE(1343), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2471), 2, + ACTIONS(2665), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57710] = 5, + [64773] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2531), 1, - anon_sym_DASH, - STATE(985), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(1340), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1365), 2, + ACTIONS(2614), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [57728] = 5, + anon_sym_RPAREN, + [64791] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - STATE(1257), 1, - sym__type_annotation, + ACTIONS(316), 1, + sym__name, + ACTIONS(2398), 1, + sym__discard_name, + STATE(1263), 1, + sym_identifier, + STATE(1265), 1, + sym_discard, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [64811] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2667), 1, + anon_sym_DASH, + STATE(1120), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2533), 2, + ACTIONS(1386), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [57746] = 4, + anon_sym_GT_GT, + [64829] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2537), 1, + ACTIONS(2671), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2535), 3, + ACTIONS(2669), 3, sym__hex, sym__octal, sym__binary, - [57762] = 5, + [64845] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2541), 1, + ACTIONS(2673), 1, anon_sym_DASH, - STATE(1014), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + STATE(1135), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2539), 2, + ACTIONS(1449), 2, anon_sym_COMMA, anon_sym_GT_GT, - [57780] = 6, + [64863] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(772), 1, + ACTIONS(770), 1, + sym__name, + ACTIONS(2398), 1, + sym__discard_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(988), 2, + sym_identifier, + sym_discard, + [64881] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(778), 1, anon_sym_RBRACK, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_DOT_DOT, - ACTIONS(2544), 1, + ACTIONS(2675), 1, anon_sym_COMMA, - STATE(961), 1, + STATE(1051), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [64901] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(786), 1, + anon_sym_RBRACK, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(2677), 1, + anon_sym_COMMA, + STATE(1051), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57800] = 6, + [64921] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(2679), 1, sym__name, - STATE(1093), 1, - sym_record_update_argument, - STATE(1327), 1, + STATE(57), 1, + sym_constructor_name, + STATE(587), 1, sym_label, - STATE(1414), 1, - sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57820] = 5, + [64941] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2548), 1, - anon_sym_PIPE, - STATE(1017), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2683), 1, + anon_sym_DASH, + STATE(1120), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2546), 2, - anon_sym_if, - anon_sym_DASH_GT, - [57838] = 5, + ACTIONS(2681), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [64959] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(756), 1, - sym__name, - ACTIONS(2242), 1, - sym__discard_name, + ACTIONS(2688), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(883), 2, - sym_identifier, - sym_discard, - [57856] = 5, + ACTIONS(2686), 3, + sym__hex, + sym__octal, + sym__binary, + [64975] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2551), 1, + ACTIONS(2690), 1, anon_sym_COMMA, - STATE(1019), 1, + STATE(1122), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2554), 2, + ACTIONS(2693), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [57874] = 5, + [64993] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2556), 1, - anon_sym_PIPE, - STATE(1017), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2697), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_if, - anon_sym_DASH_GT, - [57892] = 6, + ACTIONS(2695), 3, + sym__hex, + sym__octal, + sym__binary, + [65009] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__upname, - ACTIONS(2499), 1, - sym__name, - STATE(131), 1, - sym_constructor_name, - STATE(612), 1, - sym_label, + ACTIONS(2701), 1, + anon_sym_DASH, + STATE(1115), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57912] = 6, + ACTIONS(2699), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [65027] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, + ACTIONS(2618), 1, sym__name, - STATE(1093), 1, + ACTIONS(2703), 1, + anon_sym_RPAREN, + STATE(1316), 1, sym_record_update_argument, - STATE(1327), 1, + STATE(1439), 1, sym_label, - STATE(1358), 1, - sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57932] = 5, + [65047] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, - sym__name, - ACTIONS(2515), 1, - sym__discard_name, + ACTIONS(2616), 1, + anon_sym_COLON, + STATE(1391), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(483), 2, - sym_identifier, - sym_discard, - [57950] = 6, + ACTIONS(2705), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [65065] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(768), 1, + ACTIONS(806), 1, anon_sym_RBRACK, - ACTIONS(770), 1, + ACTIONS(808), 1, anon_sym_DOT_DOT, - ACTIONS(2558), 1, + ACTIONS(2707), 1, anon_sym_COMMA, - STATE(961), 1, + STATE(1051), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57970] = 5, + [65085] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2711), 1, + anon_sym_DASH, + STATE(1113), 1, + aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2709), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [65103] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2616), 1, anon_sym_COLON, - STATE(1194), 1, + STATE(1393), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2533), 2, + ACTIONS(2705), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57988] = 6, + [65121] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, - sym__name, - ACTIONS(2560), 1, - anon_sym_RPAREN, - STATE(1249), 1, - sym_record_update_argument, - STATE(1327), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58008] = 6, + ACTIONS(2713), 4, + sym_quoted_content, + anon_sym_DQUOTE2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + [65135] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(758), 1, + ACTIONS(794), 1, anon_sym_RBRACK, - ACTIONS(760), 1, + ACTIONS(796), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(961), 1, + STATE(1051), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58028] = 5, + [65155] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2566), 1, - anon_sym_DASH, - STATE(1011), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2719), 1, + anon_sym_PIPE, + STATE(1104), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2564), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [58046] = 6, + ACTIONS(2717), 2, + anon_sym_if, + anon_sym_DASH_GT, + [65173] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, + ACTIONS(318), 1, + sym__upname, + ACTIONS(2618), 1, sym__name, - STATE(1093), 1, - sym_record_update_argument, - STATE(1327), 1, + STATE(136), 1, + sym_constructor_name, + STATE(651), 1, sym_label, - STATE(1342), 1, - sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58066] = 5, + [65193] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2570), 1, - anon_sym_LPAREN, - STATE(1265), 1, - sym_data_constructor_arguments, + ACTIONS(2723), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2568), 2, - anon_sym_RBRACE, - sym__upname, - [58084] = 5, + ACTIONS(2721), 3, + sym__hex, + sym__octal, + sym__binary, + [65209] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2572), 1, + ACTIONS(2727), 1, anon_sym_DASH, - STATE(993), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(1135), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1407), 2, + ACTIONS(2725), 2, anon_sym_COMMA, anon_sym_GT_GT, - [58102] = 6, + [65227] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, - sym__upname, - ACTIONS(2284), 1, - sym__name, - STATE(317), 1, - sym_constructor_name, - STATE(612), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58122] = 6, + ACTIONS(2730), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_DASH, + [65241] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - ACTIONS(2574), 1, - anon_sym_LPAREN, - STATE(1269), 1, - sym_anonymous_function_parameters, - STATE(1273), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58142] = 3, + ACTIONS(2732), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [65254] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2251), 1, + anon_sym_RPAREN, + ACTIONS(2734), 1, + anon_sym_COMMA, + STATE(1260), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2576), 4, - sym_quoted_content, - anon_sym_DQUOTE2, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - [58156] = 3, + [65271] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2736), 1, + anon_sym_COMMA, + ACTIONS(2739), 1, + anon_sym_RPAREN, + STATE(1139), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2578), 3, + [65288] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2741), 1, anon_sym_COMMA, + ACTIONS(2743), 1, anon_sym_RPAREN, - anon_sym_EQ, - [58169] = 5, + STATE(1202), 1, + aux_sym_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [65305] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2580), 1, + ACTIONS(2745), 1, anon_sym_COMMA, - ACTIONS(2582), 1, + ACTIONS(2747), 1, anon_sym_RPAREN, - STATE(1154), 1, - aux_sym_constant_tuple_repeat1, + STATE(1190), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58186] = 3, + [65322] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2751), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2584), 3, + ACTIONS(2749), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58199] = 3, + [65337] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2480), 1, + anon_sym_RBRACE, + ACTIONS(2753), 1, + anon_sym_COMMA, + STATE(1196), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2586), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58212] = 5, + [65354] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2588), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2591), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, - STATE(1039), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1198), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58229] = 5, + [65371] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2593), 1, + ACTIONS(2759), 1, anon_sym_COMMA, - ACTIONS(2596), 1, + ACTIONS(2761), 1, anon_sym_RPAREN, - STATE(1040), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1253), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58246] = 5, + [65388] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2071), 1, - anon_sym_RPAREN, - ACTIONS(2598), 1, + ACTIONS(2763), 1, anon_sym_COMMA, - STATE(1040), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(2765), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58263] = 3, + [65405] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2767), 1, + anon_sym_COMMA, + ACTIONS(2769), 1, + anon_sym_RPAREN, + STATE(1199), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2600), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [58276] = 5, + [65422] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2254), 1, - anon_sym_RPAREN, - ACTIONS(2602), 1, + ACTIONS(2771), 1, anon_sym_COMMA, - STATE(1136), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(2773), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58293] = 5, + [65439] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2604), 1, + ACTIONS(2775), 1, anon_sym_COMMA, - ACTIONS(2607), 1, + ACTIONS(2777), 1, anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1209), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58310] = 3, + [65456] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2779), 1, + anon_sym_RPAREN, + ACTIONS(2781), 1, + sym__name, + STATE(1366), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2609), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [58323] = 5, + [65473] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2099), 1, - anon_sym_RPAREN, - ACTIONS(2611), 1, - anon_sym_COMMA, - STATE(1108), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DASH_GT, + STATE(1482), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58340] = 3, + [65490] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2787), 1, + anon_sym_COMMA, + ACTIONS(2790), 1, + anon_sym_RPAREN, + STATE(1152), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2613), 3, + [65507] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2792), 1, anon_sym_COMMA, + ACTIONS(2794), 1, anon_sym_RPAREN, - anon_sym_EQ, - [58353] = 3, + STATE(1228), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [65524] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2615), 3, + ACTIONS(2796), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58366] = 3, + [65537] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2798), 1, + anon_sym_LPAREN, + ACTIONS(2800), 1, + anon_sym_DASH_GT, + STATE(1492), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2617), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [58379] = 5, + [65554] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2619), 1, + ACTIONS(2802), 1, anon_sym_COLON, - ACTIONS(2621), 1, + ACTIONS(2804), 1, anon_sym_EQ, - STATE(1433), 1, + STATE(1557), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58396] = 5, + [65571] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(856), 1, + anon_sym_RPAREN, + ACTIONS(2806), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [65588] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2623), 1, + ACTIONS(2808), 1, anon_sym_COMMA, - ACTIONS(2625), 1, + ACTIONS(2810), 1, anon_sym_RPAREN, - STATE(1187), 1, - aux_sym_type_parameters_repeat1, + STATE(1213), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58413] = 5, + [65605] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2814), 1, anon_sym_RPAREN, - ACTIONS(2627), 1, - sym__name, - STATE(1205), 1, - sym_type_parameter, + STATE(1215), 1, + aux_sym_constant_tuple_type_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [65622] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58430] = 3, + ACTIONS(2816), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [65635] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2629), 3, + ACTIONS(2818), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [58443] = 5, + [65648] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2631), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2820), 3, anon_sym_COMMA, - ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1054), 1, - aux_sym_tuple_type_repeat1, + anon_sym_EQ, + [65661] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2822), 1, + anon_sym_COMMA, + ACTIONS(2824), 1, + anon_sym_RPAREN, + STATE(1225), 1, + aux_sym_constant_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [65678] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2826), 1, + anon_sym_COMMA, + ACTIONS(2829), 1, + anon_sym_GT_GT, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58460] = 4, + [65695] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2638), 1, + ACTIONS(2833), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2636), 2, + ACTIONS(2831), 2, anon_sym_COMMA, anon_sym_GT_GT, - [58475] = 5, + [65710] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2640), 1, + ACTIONS(2835), 1, anon_sym_COMMA, - ACTIONS(2642), 1, + ACTIONS(2837), 1, anon_sym_GT_GT, - STATE(1110), 1, + STATE(1258), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58492] = 3, + [65727] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2644), 3, + ACTIONS(2725), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [58505] = 5, + [65740] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2157), 1, + ACTIONS(2462), 1, anon_sym_RPAREN, - ACTIONS(2646), 1, + ACTIONS(2839), 1, anon_sym_COMMA, - STATE(1124), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1247), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58522] = 5, + [65757] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2648), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - ACTIONS(2650), 1, + ACTIONS(2844), 1, anon_sym_RPAREN, - STATE(1041), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1169), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58539] = 5, + [65774] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2151), 1, - anon_sym_RPAREN, - ACTIONS(2652), 1, + ACTIONS(2027), 1, + anon_sym_RBRACK, + ACTIONS(2846), 1, anon_sym_COMMA, - STATE(1124), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1122), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58556] = 3, + [65791] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2219), 1, + anon_sym_RPAREN, + ACTIONS(2848), 1, + anon_sym_COMMA, + STATE(1235), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2654), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [58569] = 4, + [65808] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2658), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2656), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [58584] = 4, + ACTIONS(2648), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [65821] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2660), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2656), 2, - anon_sym_RBRACE, + ACTIONS(2633), 3, anon_sym_COMMA, - [58599] = 5, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [65834] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2662), 1, - anon_sym_RBRACE, - ACTIONS(2664), 1, - anon_sym_COMMA, - STATE(1127), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2850), 1, + anon_sym_if, + ACTIONS(2852), 1, + anon_sym_DASH_GT, + STATE(1544), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58616] = 5, + [65851] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2061), 1, - anon_sym_RPAREN, - ACTIONS(2666), 1, + ACTIONS(2854), 1, anon_sym_COMMA, - STATE(1131), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2856), 1, + anon_sym_RPAREN, + STATE(1281), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58633] = 5, + [65868] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2097), 1, - anon_sym_RPAREN, - ACTIONS(2668), 1, - anon_sym_COMMA, - STATE(1054), 1, - aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58650] = 5, + ACTIONS(2858), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [65881] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2093), 1, - anon_sym_RPAREN, - ACTIONS(2670), 1, + ACTIONS(2860), 1, anon_sym_COMMA, - STATE(1054), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(2862), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58667] = 5, + [65898] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1837), 1, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(2672), 1, + ACTIONS(2864), 1, anon_sym_COMMA, - STATE(1113), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58684] = 5, + [65915] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2674), 1, - anon_sym_COMMA, - ACTIONS(2676), 1, - anon_sym_GT_GT, - STATE(1107), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2802), 1, + anon_sym_COLON, + ACTIONS(2866), 1, + anon_sym_EQ, + STATE(1454), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58701] = 4, + [65932] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2680), 1, - anon_sym_COLON, + ACTIONS(2868), 1, + anon_sym_COMMA, + ACTIONS(2870), 1, + anon_sym_RPAREN, + STATE(1244), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2678), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [58716] = 5, + [65949] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2682), 1, + ACTIONS(2047), 1, + anon_sym_RPAREN, + ACTIONS(2872), 1, anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RBRACK, - STATE(1105), 1, + STATE(1122), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58733] = 5, + [65966] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(740), 1, - anon_sym_RPAREN, - ACTIONS(2686), 1, + ACTIONS(1895), 1, + anon_sym_GT_GT, + ACTIONS(2874), 1, anon_sym_COMMA, - STATE(1102), 1, - aux_sym_arguments_repeat1, + STATE(1296), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58750] = 5, + [65983] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2051), 1, + ACTIONS(842), 1, anon_sym_RPAREN, - ACTIONS(2688), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1077), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58767] = 5, + [66000] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2690), 1, - anon_sym_RBRACE, - ACTIONS(2692), 1, - anon_sym_COMMA, - STATE(1074), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58784] = 5, + ACTIONS(2693), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [66013] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, - anon_sym_RPAREN, - ACTIONS(2695), 1, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1039), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1178), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58801] = 5, + [66030] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2697), 1, + ACTIONS(1889), 1, + anon_sym_LT_DASH, + ACTIONS(2882), 1, anon_sym_COMMA, - ACTIONS(2700), 1, - anon_sym_GT_GT, - STATE(1076), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1191), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58818] = 5, + [66047] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2702), 1, + ACTIONS(1098), 1, + anon_sym_GT_GT, + ACTIONS(2884), 1, anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(1077), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58835] = 5, + [66064] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2707), 1, - anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_RPAREN, - STATE(975), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1499), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58852] = 3, + ACTIONS(2886), 2, + anon_sym_erlang, + anon_sym_javascript, + [66079] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2001), 1, + anon_sym_GT_GT, + ACTIONS(2888), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2539), 3, + [66096] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1943), 1, + anon_sym_RPAREN, + ACTIONS(2890), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [58865] = 5, + STATE(1249), 1, + aux_sym_constant_record_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66113] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2711), 1, + ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(2714), 1, + ACTIONS(2895), 1, anon_sym_LT_DASH, - STATE(1080), 1, + STATE(1191), 1, aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58882] = 3, + [66130] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2616), 1, + anon_sym_COLON, + ACTIONS(2897), 1, + anon_sym_EQ, + STATE(1470), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2489), 3, + [66147] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2899), 1, anon_sym_COMMA, + ACTIONS(2902), 1, anon_sym_GT_GT, - anon_sym_DASH, - [58895] = 5, + STATE(1193), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66164] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(2716), 1, + ACTIONS(2904), 1, anon_sym_EQ, - STATE(1391), 1, + STATE(1438), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58912] = 5, + [66181] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(734), 1, - anon_sym_RPAREN, - ACTIONS(2718), 1, + ACTIONS(2906), 1, anon_sym_COMMA, - STATE(1102), 1, - aux_sym_arguments_repeat1, + ACTIONS(2908), 1, + anon_sym_GT_GT, + STATE(1187), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58929] = 5, + [66198] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2720), 1, + ACTIONS(2910), 1, + anon_sym_RBRACE, + ACTIONS(2912), 1, anon_sym_COMMA, - ACTIONS(2722), 1, - anon_sym_LT_DASH, - STATE(1142), 1, - aux_sym_use_assignments_repeat1, + STATE(1196), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58946] = 3, + [66215] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2724), 3, + ACTIONS(2915), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [58959] = 5, + anon_sym_EQ, + [66228] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(830), 1, + ACTIONS(2189), 1, anon_sym_RPAREN, - ACTIONS(2726), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + STATE(1255), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58976] = 3, + [66245] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2231), 1, + anon_sym_RPAREN, + ACTIONS(2919), 1, + anon_sym_COMMA, + STATE(1260), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2554), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58989] = 5, + [66262] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2802), 1, + anon_sym_COLON, + ACTIONS(2921), 1, + anon_sym_EQ, + STATE(1479), 1, + sym__constant_type_annotation, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66279] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2728), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(2730), 1, - anon_sym_RPAREN, - STATE(1083), 1, - aux_sym_arguments_repeat1, + ACTIONS(2925), 1, + anon_sym_LT_DASH, + STATE(1186), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59006] = 5, + [66296] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(993), 1, - anon_sym_GT_GT, - ACTIONS(2732), 1, + ACTIONS(754), 1, + anon_sym_RPAREN, + ACTIONS(2927), 1, anon_sym_COMMA, - STATE(1140), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59023] = 5, + [66313] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2734), 1, + ACTIONS(2929), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2931), 1, anon_sym_GT_GT, - STATE(1090), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1223), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59040] = 5, + [66330] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1915), 1, + ACTIONS(2241), 1, anon_sym_RPAREN, - ACTIONS(2739), 1, + ACTIONS(2933), 1, anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_repeat1, + STATE(1260), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59057] = 5, + [66347] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1769), 1, - anon_sym_GT_GT, - ACTIONS(2741), 1, + ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1090), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2937), 1, + anon_sym_RBRACK, + STATE(1170), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59074] = 5, + [66364] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2743), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(1129), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(2941), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59091] = 5, + ACTIONS(2939), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [66379] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(2747), 1, + ACTIONS(2943), 1, anon_sym_EQ, - STATE(1326), 1, + STATE(1490), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59108] = 3, + [66396] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2945), 1, + anon_sym_COMMA, + ACTIONS(2947), 1, + anon_sym_GT_GT, + STATE(1189), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66413] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2221), 1, + anon_sym_RPAREN, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66430] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2749), 3, + ACTIONS(2951), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - [59121] = 5, + [66443] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2751), 1, + ACTIONS(1939), 1, + anon_sym_RPAREN, + ACTIONS(2953), 1, anon_sym_COMMA, - ACTIONS(2753), 1, - anon_sym_GT_GT, - STATE(1089), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1139), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59138] = 3, + [66460] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(742), 1, + anon_sym_RPAREN, + ACTIONS(2955), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2755), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [59151] = 4, + [66477] = 5, ACTIONS(3), 1, sym_module_comment, - STATE(1392), 1, - sym_target, + ACTIONS(2307), 1, + anon_sym_RPAREN, + ACTIONS(2957), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2757), 2, - anon_sym_erlang, - anon_sym_javascript, - [59166] = 5, + [66494] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2759), 1, - anon_sym_COMMA, - ACTIONS(2761), 1, + ACTIONS(874), 1, anon_sym_RPAREN, - STATE(1078), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2959), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59183] = 3, + [66511] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2303), 1, + anon_sym_RPAREN, + ACTIONS(2961), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2497), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [59196] = 5, + [66528] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - sym__name, - ACTIONS(2763), 1, + ACTIONS(2963), 1, + anon_sym_COMMA, + ACTIONS(2965), 1, anon_sym_RPAREN, - STATE(1177), 1, - sym_type_parameter, + STATE(1212), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59213] = 5, + [66545] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - ACTIONS(2768), 1, + ACTIONS(2781), 1, + sym__name, + ACTIONS(2967), 1, anon_sym_RPAREN, - STATE(1102), 1, - aux_sym_arguments_repeat1, + STATE(1241), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59230] = 5, + [66562] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(481), 1, - sym_external_function_body, - STATE(1209), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59247] = 5, + ACTIONS(2969), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [66575] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2770), 1, + ACTIONS(2971), 1, + anon_sym_RBRACE, + ACTIONS(2973), 1, anon_sym_COMMA, - ACTIONS(2772), 1, - anon_sym_RPAREN, - STATE(1091), 1, - aux_sym_constant_tuple_repeat1, + STATE(1143), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59264] = 5, + [66592] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1897), 1, - anon_sym_RBRACK, - ACTIONS(2774), 1, - anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2977), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59281] = 5, + ACTIONS(2975), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66607] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(746), 1, - anon_sym_RPAREN, - ACTIONS(2776), 1, - anon_sym_COMMA, - STATE(1102), 1, - aux_sym_arguments_repeat1, + ACTIONS(2979), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59298] = 5, + ACTIONS(2975), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66622] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1873), 1, + ACTIONS(1120), 1, anon_sym_GT_GT, - ACTIONS(2778), 1, + ACTIONS(2981), 1, anon_sym_COMMA, - STATE(1076), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59315] = 5, + [66639] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2780), 1, + ACTIONS(1154), 1, + anon_sym_GT_GT, + ACTIONS(2983), 1, anon_sym_COMMA, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(1108), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59332] = 5, + [66656] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2785), 1, - anon_sym_if, - ACTIONS(2787), 1, - anon_sym_DASH_GT, - STATE(1350), 1, - sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59349] = 5, + ACTIONS(2985), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [66669] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(939), 1, - anon_sym_GT_GT, - ACTIONS(2789), 1, + ACTIONS(2249), 1, + anon_sym_RPAREN, + ACTIONS(2987), 1, anon_sym_COMMA, - STATE(1140), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1288), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59366] = 3, + [66686] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2781), 1, + sym__name, + ACTIONS(2989), 1, + anon_sym_RPAREN, + STATE(1366), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2546), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [59379] = 5, + [66703] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(2791), 1, - anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59396] = 5, + ACTIONS(2991), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [66716] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2793), 1, - anon_sym_COMMA, - ACTIONS(2796), 1, + ACTIONS(2989), 1, anon_sym_RPAREN, - STATE(1113), 1, - aux_sym__attribute_arguments_repeat1, + ACTIONS(2993), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59413] = 5, + [66733] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2798), 1, - anon_sym_COMMA, - ACTIONS(2800), 1, - anon_sym_RPAREN, - STATE(1106), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59430] = 5, + ACTIONS(2995), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [66746] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2802), 1, - anon_sym_COMMA, - ACTIONS(2804), 1, - anon_sym_RPAREN, - STATE(1125), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(2616), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_EQ, + STATE(1480), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59447] = 3, + [66763] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2802), 1, + anon_sym_COLON, + ACTIONS(2999), 1, + anon_sym_EQ, + STATE(1530), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2806), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59460] = 5, + [66780] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2808), 1, + ACTIONS(3001), 1, anon_sym_COMMA, - ACTIONS(2810), 1, + ACTIONS(3004), 1, anon_sym_RPAREN, - STATE(1075), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59477] = 5, + [66797] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(937), 1, - anon_sym_GT_GT, - ACTIONS(2812), 1, + ACTIONS(3006), 1, anon_sym_COMMA, - STATE(1140), 1, + ACTIONS(3008), 1, + anon_sym_GT_GT, + STATE(1222), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59494] = 3, + [66814] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, + anon_sym_RPAREN, + STATE(1254), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2814), 3, + [66831] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3014), 1, anon_sym_COMMA, + ACTIONS(3017), 1, anon_sym_RPAREN, - anon_sym_COLON, - [59507] = 3, + STATE(1235), 1, + aux_sym_external_function_parameters_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66848] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(524), 1, + sym_external_function_body, + STATE(1320), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2816), 3, + [66865] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3019), 1, anon_sym_COMMA, + ACTIONS(3021), 1, anon_sym_RPAREN, - anon_sym_EQ, - [59520] = 4, + STATE(1259), 1, + aux_sym__attribute_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [66882] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2820), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2818), 2, - anon_sym_RBRACE, + ACTIONS(2639), 3, anon_sym_COMMA, - [59535] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [66895] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2822), 1, - anon_sym_COMMA, - ACTIONS(2824), 1, + ACTIONS(746), 1, anon_sym_RPAREN, - STATE(1043), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3023), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59552] = 5, + [66912] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - ACTIONS(2826), 1, - anon_sym_EQ, - STATE(1362), 1, - sym__type_annotation, + ACTIONS(2783), 1, + anon_sym_LPAREN, + ACTIONS(3025), 1, + anon_sym_DASH_GT, + STATE(1535), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59569] = 5, + [66929] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2828), 1, + ACTIONS(3027), 1, anon_sym_COMMA, - ACTIONS(2831), 1, + ACTIONS(3029), 1, anon_sym_RPAREN, - STATE(1124), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59586] = 5, + [66946] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2310), 1, + ACTIONS(2781), 1, + sym__name, + ACTIONS(3031), 1, anon_sym_RPAREN, - ACTIONS(2833), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1153), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59603] = 5, + [66963] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2835), 1, + ACTIONS(860), 1, + anon_sym_RPAREN, + ACTIONS(3033), 1, anon_sym_COMMA, - ACTIONS(2837), 1, - anon_sym_GT_GT, - STATE(1118), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59620] = 5, + [66980] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2322), 1, - anon_sym_RBRACE, - ACTIONS(2839), 1, + ACTIONS(2663), 1, + anon_sym_RPAREN, + ACTIONS(3035), 1, anon_sym_COMMA, - STATE(1074), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1290), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59637] = 5, + [66997] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2841), 1, - anon_sym_LBRACE, - ACTIONS(2843), 1, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + ACTIONS(3039), 1, + anon_sym_GT_GT, + STATE(1182), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59654] = 5, + [67014] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2560), 1, - anon_sym_RPAREN, - ACTIONS(2845), 1, - anon_sym_COMMA, - STATE(1149), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(3043), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59671] = 3, + ACTIONS(3041), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [67029] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3048), 1, + anon_sym_RPAREN, + STATE(1247), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2847), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - [59684] = 5, + [67046] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2849), 1, + ACTIONS(3050), 1, anon_sym_COMMA, - ACTIONS(2852), 1, + ACTIONS(3052), 1, anon_sym_RPAREN, - STATE(1131), 1, - aux_sym_type_arguments_repeat1, + STATE(1271), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59701] = 4, + [67063] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2856), 1, - anon_sym_COLON, + ACTIONS(3054), 1, + anon_sym_COMMA, + ACTIONS(3057), 1, + anon_sym_RPAREN, + STATE(1249), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2854), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [59716] = 5, + [67080] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(894), 1, - sym_external_function_body, - STATE(1253), 1, - sym_string, + ACTIONS(872), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, + anon_sym_COMMA, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59733] = 5, + [67097] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2619), 1, - anon_sym_COLON, - ACTIONS(2858), 1, - anon_sym_EQ, - STATE(1407), 1, - sym__constant_type_annotation, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + anon_sym_RPAREN, + STATE(1239), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59750] = 5, + [67114] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2860), 1, - anon_sym_COMMA, - ACTIONS(2862), 1, + ACTIONS(924), 1, anon_sym_GT_GT, - STATE(1092), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(3065), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59767] = 5, + [67131] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2864), 1, - anon_sym_COMMA, - ACTIONS(2867), 1, + ACTIONS(2416), 1, anon_sym_RPAREN, - STATE(1136), 1, + ACTIONS(3067), 1, + anon_sym_COMMA, + STATE(1169), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59784] = 5, + [67148] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(744), 1, + anon_sym_RPAREN, + ACTIONS(3069), 1, anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_GT_GT, - STATE(1157), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1232), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59801] = 5, + [67165] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(467), 1, - sym_external_function_body, - STATE(1209), 1, - sym_string, + ACTIONS(3071), 1, + anon_sym_COMMA, + ACTIONS(3074), 1, + anon_sym_RPAREN, + STATE(1255), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59818] = 5, + [67182] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2873), 1, + ACTIONS(3076), 1, anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_RPAREN, - STATE(1073), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(3078), 1, + anon_sym_RBRACK, + STATE(1278), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59835] = 5, + [67199] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, + ACTIONS(3080), 1, anon_sym_COMMA, - ACTIONS(2880), 1, + ACTIONS(3082), 1, anon_sym_GT_GT, - STATE(1140), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1280), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59852] = 5, + [67216] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COLON, - ACTIONS(2882), 1, - anon_sym_EQ, - STATE(1419), 1, - sym__type_annotation, + ACTIONS(1026), 1, + anon_sym_GT_GT, + ACTIONS(3084), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59869] = 5, + [67233] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1785), 1, - anon_sym_LT_DASH, - ACTIONS(2884), 1, + ACTIONS(1983), 1, + anon_sym_RPAREN, + ACTIONS(3086), 1, anon_sym_COMMA, - STATE(1080), 1, - aux_sym_use_assignments_repeat1, + STATE(1139), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59886] = 5, + [67250] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(878), 1, - sym_external_function_body, - STATE(1253), 1, - sym_string, + ACTIONS(3088), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(1260), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59903] = 5, + [67267] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2619), 1, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(2886), 1, + ACTIONS(3093), 1, anon_sym_EQ, - STATE(1347), 1, - sym__constant_type_annotation, + STATE(1531), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59920] = 5, + [67284] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2069), 1, - anon_sym_RPAREN, - ACTIONS(2888), 1, + ACTIONS(3095), 1, + anon_sym_RBRACE, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1131), 1, - aux_sym_type_arguments_repeat1, + STATE(1284), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59937] = 3, + [67301] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2462), 3, + ACTIONS(3099), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [59950] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + [67314] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2091), 1, - anon_sym_RPAREN, - ACTIONS(2890), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(1054), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3103), 1, + anon_sym_GT_GT, + STATE(1252), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59967] = 5, + [67331] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2892), 1, - anon_sym_LPAREN, - ACTIONS(2894), 1, - anon_sym_DASH_GT, - STATE(1404), 1, - sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59984] = 5, + ACTIONS(3105), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [67344] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(2899), 1, + ACTIONS(2781), 1, + sym__name, + ACTIONS(3107), 1, anon_sym_RPAREN, - STATE(1149), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1366), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60001] = 3, + [67361] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3107), 1, + anon_sym_RPAREN, + ACTIONS(3109), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2901), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [60014] = 5, + [67378] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - sym__name, - ACTIONS(2903), 1, + ACTIONS(3111), 1, + anon_sym_COMMA, + ACTIONS(3114), 1, anon_sym_RPAREN, - STATE(1175), 1, - sym_type_parameter, + STATE(1268), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60031] = 5, + [67395] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1847), 1, - anon_sym_RPAREN, - ACTIONS(2905), 1, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(1039), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(3118), 1, + anon_sym_RPAREN, + STATE(1171), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60048] = 5, + [67412] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, - sym__name, - STATE(1249), 1, - sym_record_update_argument, - STATE(1327), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60065] = 5, + ACTIONS(3120), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [67425] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1913), 1, + ACTIONS(2414), 1, anon_sym_RPAREN, - ACTIONS(2907), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_repeat1, + STATE(1169), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60082] = 5, + [67442] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2909), 1, + ACTIONS(3124), 1, anon_sym_COMMA, - ACTIONS(2911), 1, + ACTIONS(3127), 1, anon_sym_RPAREN, - STATE(1067), 1, - aux_sym_tuple_type_repeat1, + STATE(1272), 1, + aux_sym_constant_tuple_type_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [67459] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3129), 1, + anon_sym_COMMA, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(1168), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60099] = 3, + [67476] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2913), 3, + ACTIONS(3133), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [60112] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + [67489] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(842), 1, - anon_sym_GT_GT, - ACTIONS(2915), 1, + ACTIONS(3135), 1, + anon_sym_LBRACE, + ACTIONS(3137), 1, anon_sym_COMMA, - STATE(1140), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1051), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60129] = 5, + [67506] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2917), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - ACTIONS(2919), 1, + ACTIONS(3141), 1, anon_sym_RPAREN, - STATE(1046), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1297), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60146] = 3, + [67523] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2921), 3, + ACTIONS(3143), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - [60159] = 5, + anon_sym_COLON, + [67536] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2923), 1, + ACTIONS(2079), 1, + anon_sym_RBRACK, + ACTIONS(3145), 1, anon_sym_COMMA, - ACTIONS(2925), 1, - anon_sym_RPAREN, - STATE(1072), 1, - aux_sym_arguments_repeat1, + STATE(1122), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60176] = 5, + [67553] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - sym__name, - ACTIONS(2927), 1, - anon_sym_RPAREN, - STATE(1205), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60193] = 5, + ACTIONS(3147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [67566] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2929), 1, + ACTIONS(2003), 1, + anon_sym_GT_GT, + ACTIONS(3149), 1, anon_sym_COMMA, - ACTIONS(2931), 1, - anon_sym_RPAREN, - STATE(1066), 1, - aux_sym_tuple_type_repeat1, + STATE(1193), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60210] = 5, + [67583] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2933), 1, + ACTIONS(3151), 1, anon_sym_COMMA, - ACTIONS(2935), 1, + ACTIONS(3153), 1, anon_sym_RPAREN, - STATE(1145), 1, - aux_sym_type_arguments_repeat1, + STATE(1082), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60227] = 5, + [67600] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2937), 1, + ACTIONS(3155), 1, anon_sym_COMMA, - ACTIONS(2939), 1, + ACTIONS(3157), 1, anon_sym_RPAREN, - STATE(1147), 1, - aux_sym_tuple_type_repeat1, + STATE(1299), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60244] = 5, + [67617] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2619), 1, - anon_sym_COLON, - ACTIONS(2941), 1, - anon_sym_EQ, - STATE(1427), 1, - sym__constant_type_annotation, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(995), 1, + sym_external_function_body, + STATE(1319), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60261] = 5, + [67634] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2326), 1, + ACTIONS(2472), 1, anon_sym_RBRACE, - ACTIONS(2943), 1, + ACTIONS(3159), 1, anon_sym_COMMA, - STATE(1074), 1, + STATE(1196), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60278] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2945), 1, - anon_sym_COMMA, - ACTIONS(2947), 1, - anon_sym_RPAREN, - STATE(1058), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60295] = 5, + [67651] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2949), 1, + ACTIONS(3161), 1, anon_sym_COMMA, - ACTIONS(2951), 1, + ACTIONS(3163), 1, anon_sym_RPAREN, - STATE(1180), 1, - aux_sym_arguments_repeat1, + STATE(1138), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60312] = 5, + [67668] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(818), 1, - anon_sym_RPAREN, - ACTIONS(2953), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + ACTIONS(3167), 1, + anon_sym_RPAREN, + STATE(1294), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60329] = 5, + [67685] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2955), 1, - anon_sym_COMMA, - ACTIONS(2957), 1, + ACTIONS(2781), 1, + sym__name, + ACTIONS(3169), 1, anon_sym_RPAREN, - STATE(1152), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1366), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60346] = 5, + [67702] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2959), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - ACTIONS(2961), 1, + ACTIONS(3174), 1, anon_sym_RPAREN, - STATE(1184), 1, - aux_sym__attribute_arguments_repeat1, + STATE(1288), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60363] = 5, + [67719] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1891), 1, - anon_sym_GT_GT, - ACTIONS(2963), 1, - anon_sym_COMMA, - STATE(1076), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60380] = 5, + ACTIONS(3176), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [67732] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1949), 1, - anon_sym_RBRACK, - ACTIONS(2965), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3181), 1, + anon_sym_RPAREN, + STATE(1290), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60397] = 5, + [67749] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2967), 1, - anon_sym_LPAREN, - ACTIONS(2969), 1, - anon_sym_DASH_GT, - STATE(1436), 1, - sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60414] = 5, + ACTIONS(2681), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [67762] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2971), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3183), 3, anon_sym_COMMA, - ACTIONS(2973), 1, anon_sym_RPAREN, - STATE(1189), 1, - aux_sym_type_parameters_repeat1, + anon_sym_EQ, + [67775] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(999), 1, + sym_external_function_body, + STATE(1319), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60431] = 5, + [67792] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(810), 1, + ACTIONS(2215), 1, anon_sym_RPAREN, - ACTIONS(2975), 1, + ACTIONS(3185), 1, anon_sym_COMMA, - STATE(961), 1, - aux_sym_tuple_repeat1, + STATE(1268), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60448] = 5, + [67809] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2977), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3187), 3, anon_sym_COMMA, - ACTIONS(2979), 1, anon_sym_RPAREN, - STATE(1051), 1, - aux_sym_type_parameters_repeat1, + anon_sym_EQ, + [67822] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3189), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_GT_GT, + STATE(1296), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60465] = 5, + [67839] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2981), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, + ACTIONS(2087), 1, anon_sym_RPAREN, - STATE(1192), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3194), 1, + anon_sym_COMMA, + STATE(1122), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60482] = 5, + [67856] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2967), 1, - anon_sym_LPAREN, - ACTIONS(2985), 1, - anon_sym_DASH_GT, - STATE(1388), 1, - sym_function_parameter_types, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(545), 1, + sym_external_function_body, + STATE(1320), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60499] = 5, + [67873] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(738), 1, + ACTIONS(1953), 1, anon_sym_RPAREN, - ACTIONS(2987), 1, + ACTIONS(3196), 1, anon_sym_COMMA, - STATE(1102), 1, - aux_sym_arguments_repeat1, + STATE(1249), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60516] = 5, + [67890] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(2991), 1, - anon_sym_RPAREN, - STATE(1065), 1, - aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60533] = 5, + ACTIONS(3198), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [67903] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2993), 1, - anon_sym_COMMA, - ACTIONS(2995), 1, - anon_sym_RBRACK, - STATE(1173), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2618), 1, + sym__name, + STATE(1316), 1, + sym_record_update_argument, + STATE(1439), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60550] = 5, + [67920] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2997), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_GT_GT, - STATE(1172), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60567] = 5, + ACTIONS(3074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67932] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1845), 1, - anon_sym_RPAREN, - ACTIONS(3001), 1, - anon_sym_COMMA, - STATE(1113), 1, - aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60584] = 5, + ACTIONS(3004), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67944] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, + ACTIONS(2458), 1, sym__name, - ACTIONS(3003), 1, - anon_sym_RPAREN, - STATE(1205), 1, - sym_type_parameter, + STATE(1306), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60601] = 5, + [67958] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3005), 1, - anon_sym_RBRACE, - ACTIONS(3007), 1, - anon_sym_COMMA, - STATE(1166), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2458), 1, + sym__name, + STATE(1307), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60618] = 5, + [67972] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3009), 1, - anon_sym_COMMA, - ACTIONS(3012), 1, - anon_sym_RPAREN, - STATE(1187), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3200), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60635] = 5, + [67986] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - sym__name, - ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(1205), 1, - sym_type_parameter, + ACTIONS(3200), 1, + anon_sym_LPAREN, + STATE(1545), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60652] = 5, + [68000] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3014), 1, - anon_sym_RPAREN, - ACTIONS(3016), 1, - anon_sym_COMMA, - STATE(1187), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2458), 1, + sym__name, + STATE(1376), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60669] = 3, + [68014] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3018), 3, + ACTIONS(2739), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - [60682] = 5, + [68026] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(1060), 1, - aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60699] = 5, + ACTIONS(3192), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [68038] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2252), 1, - anon_sym_RPAREN, - ACTIONS(3024), 1, - anon_sym_COMMA, - STATE(1136), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(1330), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60716] = 5, + [68052] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3026), 1, - anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1068), 1, - aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60733] = 3, + ACTIONS(3202), 2, + anon_sym_RBRACE, + sym__upname, + [68064] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3204), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [60745] = 3, + anon_sym_GT_GT, + [68076] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3206), 1, + sym__name, + STATE(463), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3032), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60757] = 4, + [68090] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3034), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_EQ, + ACTIONS(3200), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60771] = 3, + [68104] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3038), 2, + ACTIONS(3181), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60783] = 4, + [68116] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1200), 1, - sym_identifier, + ACTIONS(2199), 1, + sym__upname, + STATE(1351), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60797] = 4, + [68130] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1202), 1, + STATE(1410), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60811] = 4, + [68144] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3040), 1, - anon_sym_LPAREN, - STATE(1426), 1, - sym_external_function_parameters, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(989), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60825] = 3, + [68158] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(51), 1, + anon_sym_DQUOTE, + STATE(543), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3042), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60837] = 4, + [68172] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3040), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - STATE(1425), 1, - sym_external_function_parameters, + STATE(1338), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60851] = 4, + [68186] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1258), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60865] = 3, + ACTIONS(3208), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68198] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(3174), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60877] = 3, + [68210] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3012), 2, + ACTIONS(3210), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60889] = 4, + [68222] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2574), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - STATE(1221), 1, + STATE(1399), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60903] = 4, + [68236] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3046), 1, + ACTIONS(2458), 1, sym__name, - STATE(398), 1, - sym_module, + STATE(1156), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60917] = 3, + [68250] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(318), 1, + sym__upname, + STATE(136), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3048), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60929] = 4, + [68264] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, - anon_sym_DQUOTE, - STATE(472), 1, - sym_string, + ACTIONS(2199), 1, + sym__upname, + STATE(837), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60943] = 4, + [68278] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2574), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - STATE(1269), 1, + STATE(1349), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60957] = 3, + [68292] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3212), 1, + anon_sym_LBRACE, + ACTIONS(3214), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68306] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3127), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60969] = 4, + [68318] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2248), 1, - anon_sym_LBRACE, - ACTIONS(2250), 1, - anon_sym_EQ, + ACTIONS(980), 1, + sym__upname, + STATE(373), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60983] = 4, + [68332] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3216), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68346] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3218), 1, + anon_sym_COLON, + ACTIONS(3220), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68360] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60997] = 3, + ACTIONS(3222), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68372] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3052), 2, + ACTIONS(3114), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61009] = 4, + [68384] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2574), 1, + ACTIONS(3200), 1, anon_sym_LPAREN, - STATE(1228), 1, - sym_anonymous_function_parameters, + STATE(1528), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61023] = 3, + [68398] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3224), 1, + anon_sym_LBRACE, + ACTIONS(3226), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3054), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61035] = 4, + [68412] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, + ACTIONS(2458), 1, sym__name, - STATE(1050), 1, + STATE(1418), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61049] = 3, + [68426] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2634), 2, + ACTIONS(3228), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61061] = 4, + [68438] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(860), 1, - sym_function_parameters, + ACTIONS(2434), 1, + sym__name, + STATE(431), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61075] = 4, + [68452] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3058), 1, - sym__name, - STATE(826), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61089] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3060), 1, + ACTIONS(3230), 2, anon_sym_LBRACE, - ACTIONS(3062), 1, anon_sym_DASH_GT, + [68464] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61103] = 3, + ACTIONS(3232), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68476] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(3091), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61115] = 4, + [68488] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3058), 1, - sym__name, - STATE(843), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61129] = 3, + ACTIONS(3234), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68500] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3044), 2, + ACTIONS(3228), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61141] = 3, + [68512] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3064), 2, + ACTIONS(2017), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61153] = 3, + [68524] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3066), 2, + ACTIONS(3232), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61165] = 4, + [68536] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1351), 1, + ACTIONS(3236), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_EQ, + ACTIONS(3238), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61179] = 4, + [68550] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3240), 2, + anon_sym_RBRACE, + sym__upname, + [68562] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3068), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61193] = 4, + ACTIONS(3242), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68574] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3072), 1, + ACTIONS(3244), 1, anon_sym_type, - ACTIONS(3074), 1, + ACTIONS(3246), 1, anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61207] = 3, + [68588] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3248), 1, + anon_sym_LBRACE, + ACTIONS(3250), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68602] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2607), 2, + ACTIONS(3252), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61219] = 3, + [68614] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2199), 1, + sym__upname, + STATE(1418), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3076), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [61231] = 4, + [68628] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1285), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61245] = 4, + ACTIONS(3254), 2, + anon_sym_RBRACE, + sym__upname, + [68640] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__upname, - STATE(131), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61259] = 4, + ACTIONS(3057), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68652] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3078), 1, - anon_sym_LPAREN, - STATE(425), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61273] = 3, + ACTIONS(3256), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68664] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3080), 2, + ACTIONS(3258), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [61285] = 4, + anon_sym_RPAREN, + [68676] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3082), 1, + ACTIONS(3260), 1, anon_sym_LBRACE, - ACTIONS(3084), 1, + ACTIONS(3262), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61299] = 4, + [68690] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3086), 1, - anon_sym_LBRACE, - STATE(864), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61313] = 3, + ACTIONS(3264), 2, + anon_sym_RBRACE, + sym__upname, + [68702] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3088), 2, - anon_sym_RBRACE, + ACTIONS(3048), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68714] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2275), 1, sym__upname, - [61325] = 3, + STATE(457), 1, + sym_type_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68728] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2880), 2, + ACTIONS(3266), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [61337] = 4, + anon_sym_RPAREN, + [68740] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2499), 1, - sym__name, - STATE(143), 1, - sym_label, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(1447), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61351] = 4, + [68754] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3090), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61365] = 4, + ACTIONS(2790), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68766] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3092), 1, - anon_sym_type, - ACTIONS(3094), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61379] = 3, + ACTIONS(3268), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68778] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3270), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3096), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [61391] = 4, + [68792] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(1324), 1, - sym_string, + ACTIONS(3272), 1, + anon_sym_LPAREN, + STATE(499), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61405] = 4, + [68806] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - STATE(727), 1, - sym_type_identifier, + ACTIONS(3274), 1, + anon_sym_LBRACE, + STATE(484), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61419] = 4, + [68820] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(308), 1, + anon_sym_DQUOTE, + STATE(1481), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68834] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3098), 1, - sym__name, - STATE(826), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61433] = 3, + ACTIONS(3276), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [68846] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2591), 2, + ACTIONS(3278), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61445] = 4, + [68858] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2574), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - STATE(1236), 1, + STATE(1360), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61459] = 3, + [68872] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3280), 1, + anon_sym_LPAREN, + STATE(369), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2899), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61471] = 4, + [68886] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(843), 1, - sym_identifier, + ACTIONS(3282), 1, + anon_sym_LPAREN, + STATE(573), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61485] = 3, + [68900] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3100), 2, + ACTIONS(3017), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61497] = 3, + [68912] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1507), 1, + anon_sym_LBRACE, + ACTIONS(1509), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3102), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [61509] = 4, + [68926] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(608), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(887), 1, + STATE(1533), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61523] = 3, + [68940] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2392), 1, + anon_sym_LBRACE, + ACTIONS(2394), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2867), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61535] = 4, + [68954] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3056), 1, + ACTIONS(3284), 1, anon_sym_LPAREN, - STATE(858), 1, + STATE(947), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61549] = 3, + [68968] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3286), 1, + sym__name, + STATE(926), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68982] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3288), 1, + sym__name, + STATE(377), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [68996] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2852), 2, + ACTIONS(3290), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [61561] = 3, + anon_sym_GT_GT, + [69008] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(61), 1, + sym__upname, + STATE(57), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [69022] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3030), 2, + ACTIONS(1995), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61573] = 4, + [69034] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3104), 1, - anon_sym_LPAREN, - STATE(509), 1, - sym__attribute_arguments, + ACTIONS(2679), 1, + sym__name, + STATE(50), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61587] = 4, + [69048] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, - anon_sym_DQUOTE, - STATE(1363), 1, - sym_string, + ACTIONS(3286), 1, + sym__name, + STATE(949), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61601] = 4, + [69062] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1197), 1, - sym__upname, - STATE(890), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61615] = 4, + ACTIONS(2829), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [69074] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3106), 1, - anon_sym_LPAREN, - STATE(895), 1, - sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61629] = 3, + ACTIONS(3292), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69086] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3108), 2, + ACTIONS(3294), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61641] = 3, + [69098] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2458), 1, + sym__name, + STATE(949), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3110), 2, - anon_sym_RBRACE, - sym__upname, - [61653] = 3, + [69112] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3112), 2, - anon_sym_RBRACE, - sym__upname, - [61665] = 3, + ACTIONS(3294), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69124] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3114), 2, - anon_sym_RBRACE, - sym__upname, - [61677] = 4, + ACTIONS(3296), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [69136] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3116), 1, - anon_sym_LPAREN, - STATE(393), 1, - sym_arguments, + ACTIONS(3298), 1, + anon_sym_LBRACE, + STATE(971), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61691] = 4, + [69150] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - STATE(1301), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61705] = 4, + ACTIONS(3300), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [69162] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2844), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69174] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2199), 1, sym__upname, - STATE(1121), 1, + STATE(1142), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61719] = 4, + [69188] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3118), 1, + ACTIONS(3302), 1, anon_sym_LBRACE, - ACTIONS(3120), 1, + ACTIONS(3304), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61733] = 4, + [69202] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1301), 1, - sym_identifier, + ACTIONS(3306), 1, + anon_sym_type, + ACTIONS(3308), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61747] = 3, + [69216] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3272), 1, + anon_sym_LPAREN, + STATE(516), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3122), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [61759] = 4, + [69230] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, + ACTIONS(2458), 1, sym__name, - STATE(1205), 1, - sym_type_parameter, + STATE(1369), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61773] = 4, + [69244] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3078), 1, - anon_sym_LPAREN, - STATE(445), 1, - sym_function_parameters, + ACTIONS(1340), 1, + sym__upname, + STATE(974), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61787] = 4, + [69258] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2284), 1, + ACTIONS(2458), 1, sym__name, - STATE(395), 1, - sym_label, + STATE(1179), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61801] = 4, + [69272] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3124), 1, - anon_sym_COLON, - ACTIONS(3126), 1, - anon_sym_DOT, + ACTIONS(2618), 1, + sym__name, + STATE(148), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61815] = 4, + [69286] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3040), 1, - anon_sym_LPAREN, - STATE(1361), 1, - sym_external_function_parameters, + ACTIONS(2781), 1, + sym__name, + STATE(1366), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61829] = 4, + [69300] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1276), 1, - sym_identifier, + ACTIONS(3310), 1, + anon_sym_type, + ACTIONS(3312), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61843] = 3, + [69314] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3314), 1, + anon_sym_LBRACE, + ACTIONS(3316), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3128), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61855] = 4, + [69328] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3130), 1, - anon_sym_type, - ACTIONS(3132), 1, - anon_sym_fn, + ACTIONS(2458), 1, + sym__name, + STATE(1381), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61869] = 4, + [69342] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(620), 1, - sym__upname, - STATE(317), 1, - sym_constructor_name, + ACTIONS(3284), 1, + anon_sym_LPAREN, + STATE(957), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61883] = 4, + [69356] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3134), 1, - anon_sym_LBRACE, - ACTIONS(3136), 1, - anon_sym_EQ, + ACTIONS(2458), 1, + sym__name, + STATE(1231), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61897] = 4, + [69370] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(1369), 1, + STATE(1484), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61911] = 4, + [69384] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3138), 1, + ACTIONS(3318), 1, sym__name, - STATE(856), 1, - sym_module, + STATE(926), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61925] = 3, + [69398] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2458), 1, + sym__name, + STATE(1200), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3140), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61937] = 4, + [69412] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3040), 1, - anon_sym_LPAREN, - STATE(1340), 1, - sym_external_function_parameters, + ACTIONS(2458), 1, + sym__name, + STATE(1419), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61951] = 4, + [69426] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3142), 1, + ACTIONS(3320), 1, anon_sym_LPAREN, - STATE(137), 1, + STATE(666), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [61965] = 3, + [69440] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2783), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61977] = 3, + ACTIONS(3322), 2, + anon_sym_RBRACE, + sym__upname, + [69452] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3144), 2, + ACTIONS(3324), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [61989] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1219), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [62003] = 3, + [69464] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3326), 1, + anon_sym_LPAREN, + STATE(1008), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3146), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [62015] = 4, + [69478] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1165), 1, - sym_identifier, + ACTIONS(3328), 1, + anon_sym_LPAREN, + STATE(154), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62029] = 3, + [69492] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2705), 2, + ACTIONS(2910), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [62041] = 3, + [69504] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2458), 1, + sym__name, + STATE(1337), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3148), 2, - anon_sym_RBRACE, - sym__upname, - [62053] = 4, + [69518] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, + ACTIONS(630), 1, sym__upname, - STATE(19), 1, + STATE(355), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62067] = 3, + [69532] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2448), 1, + sym__name, + STATE(673), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2796), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62079] = 4, + [69546] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(888), 1, - sym__upname, - STATE(328), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62093] = 3, + ACTIONS(3330), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69558] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2458), 1, + sym__name, + STATE(1315), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1889), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62105] = 4, + [69572] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, - sym__upname, - STATE(412), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62119] = 3, + ACTIONS(2895), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [69584] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3332), 1, + anon_sym_type, + ACTIONS(3334), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2596), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62131] = 3, + [69598] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2768), 2, + ACTIONS(2902), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [62143] = 3, + anon_sym_GT_GT, + [69610] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3150), 2, - anon_sym_RBRACE, + ACTIONS(3336), 2, anon_sym_COMMA, - [62155] = 4, + anon_sym_GT_GT, + [69622] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(304), 1, + ACTIONS(308), 1, anon_sym_DQUOTE, - STATE(1412), 1, + STATE(1550), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62169] = 4, + [69636] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_unqualified_imports, + ACTIONS(3338), 1, + anon_sym_COMMA, + ACTIONS(3340), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62183] = 4, + [69650] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, + ACTIONS(3342), 1, sym__name, - STATE(1134), 1, - sym_identifier, + STATE(961), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62197] = 3, + [69664] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3052), 2, + ACTIONS(3344), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [62209] = 4, + anon_sym_LT_DASH, + [69676] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1261), 1, - sym_identifier, + ACTIONS(912), 1, + sym__upname, + STATE(692), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62223] = 3, + [69690] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3346), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2690), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62235] = 4, + [69701] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3154), 1, + ACTIONS(3348), 1, anon_sym_LPAREN, - STATE(329), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62249] = 4, + [69712] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2505), 1, - sym__name, - STATE(10), 1, - sym_label, + ACTIONS(3350), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62263] = 4, + [69723] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, - sym__upname, - STATE(1278), 1, - sym_type_identifier, + ACTIONS(3352), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62277] = 3, + [69734] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3354), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2831), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [62289] = 3, + [69745] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3356), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2714), 2, - anon_sym_COMMA, - anon_sym_LT_DASH, - [62301] = 3, + [69756] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3358), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2700), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [62313] = 3, + [69767] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3360), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3156), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [62325] = 4, + [69778] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3158), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, + ACTIONS(2572), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62339] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3162), 1, - sym__name, - STATE(340), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [62353] = 3, + [69789] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3362), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(3164), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [62365] = 3, + [69800] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3364), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2737), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [62377] = 4, + [69811] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1144), 1, - sym_identifier, + ACTIONS(3366), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62391] = 4, + [69822] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3166), 1, - anon_sym_type, - ACTIONS(3168), 1, - anon_sym_fn, + ACTIONS(3368), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62405] = 4, + [69833] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - sym__name, - STATE(1234), 1, - sym_identifier, + ACTIONS(3370), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62419] = 3, + [69844] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3170), 1, - anon_sym_EQ, + ACTIONS(3372), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62430] = 3, + [69855] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3172), 1, - anon_sym_COLON, + ACTIONS(3374), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62441] = 3, + [69866] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3174), 1, + ACTIONS(1527), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62452] = 3, + [69877] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3176), 1, - anon_sym_type, + ACTIONS(3376), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62463] = 3, + [69888] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3178), 1, + ACTIONS(3378), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62474] = 3, + [69899] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3180), 1, - anon_sym_COLON, + ACTIONS(3380), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62485] = 3, + [69910] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3182), 1, + ACTIONS(3382), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62496] = 3, + [69921] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3184), 1, - anon_sym_LPAREN, + ACTIONS(3384), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62507] = 3, + [69932] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3186), 1, - anon_sym_LPAREN, + ACTIONS(3386), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62518] = 3, + [69943] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3188), 1, - anon_sym_EQ, + ACTIONS(3388), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62529] = 3, + [69954] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3190), 1, - anon_sym_LT_DASH, + ACTIONS(3390), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62540] = 3, + [69965] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3192), 1, - anon_sym_DASH_GT, + ACTIONS(3220), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62551] = 3, + [69976] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3194), 1, - anon_sym_RBRACE, + ACTIONS(3392), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62562] = 3, + [69987] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3196), 1, - anon_sym_RBRACK, + ACTIONS(3394), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62573] = 3, + [69998] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3198), 1, - anon_sym_RBRACK, + ACTIONS(3396), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62584] = 3, + [70009] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3200), 1, - anon_sym_RBRACE, + ACTIONS(3398), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62595] = 3, + [70020] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2399), 1, - anon_sym_RPAREN, + ACTIONS(3400), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62606] = 3, + [70031] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3202), 1, - anon_sym_COLON, + ACTIONS(3402), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62617] = 3, + [70042] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3204), 1, - anon_sym_DASH_GT, + ACTIONS(3404), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62628] = 3, + [70053] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3206), 1, - anon_sym_RPAREN, + ACTIONS(3406), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62639] = 3, + [70064] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3208), 1, - anon_sym_RPAREN, + ACTIONS(3408), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62650] = 3, + [70075] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3210), 1, - anon_sym_LPAREN, + ACTIONS(3410), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62661] = 3, + [70086] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3212), 1, - anon_sym_RBRACK, + ACTIONS(3412), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62672] = 3, + [70097] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3214), 1, - anon_sym_DOT, + ACTIONS(3414), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62683] = 3, + [70108] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3216), 1, - anon_sym_RBRACK, + ACTIONS(3416), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62694] = 3, + [70119] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3218), 1, - anon_sym_EQ, + ACTIONS(3418), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62705] = 3, + [70130] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3220), 1, - anon_sym_RPAREN, + ACTIONS(3420), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62716] = 3, + [70141] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3222), 1, - anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62727] = 3, + [70152] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3224), 1, - anon_sym_DASH_GT, + ACTIONS(3424), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62738] = 3, + [70163] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3226), 1, - anon_sym_LBRACE, + ACTIONS(3426), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62749] = 3, + [70174] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3228), 1, + ACTIONS(3428), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62760] = 3, + [70185] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3230), 1, - sym__name, + ACTIONS(3430), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62771] = 3, + [70196] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3232), 1, - anon_sym_LPAREN, + ACTIONS(3432), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62782] = 3, + [70207] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3234), 1, - anon_sym_DOT, + ACTIONS(3434), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62793] = 3, + [70218] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1315), 1, + ACTIONS(3436), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62804] = 3, + [70229] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3236), 1, - anon_sym_LBRACE, + ACTIONS(3438), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62815] = 3, + [70240] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3238), 1, - anon_sym_RPAREN, + ACTIONS(3440), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62826] = 3, + [70251] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3240), 1, - anon_sym_RBRACE, + ACTIONS(3442), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62837] = 3, + [70262] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3242), 1, - anon_sym_RBRACE, + ACTIONS(3444), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62848] = 3, + [70273] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3244), 1, - anon_sym_DASH_GT, + ACTIONS(3446), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62859] = 3, + [70284] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3246), 1, + ACTIONS(3448), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62870] = 3, + [70295] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3248), 1, - anon_sym_RPAREN, + ACTIONS(3450), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62881] = 3, + [70306] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3250), 1, - anon_sym_RPAREN, + ACTIONS(3452), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62892] = 3, + [70317] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3252), 1, - anon_sym_DASH_GT, + ACTIONS(3454), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62903] = 3, + [70328] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3254), 1, - anon_sym_DASH_GT, + ACTIONS(3456), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62914] = 3, + [70339] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3256), 1, - anon_sym_DASH_GT, + ACTIONS(3458), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62925] = 3, + [70350] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3258), 1, - anon_sym_LPAREN, + ACTIONS(3460), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62936] = 3, + [70361] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3260), 1, + ACTIONS(1388), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62947] = 3, + [70372] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3262), 1, + ACTIONS(3462), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62958] = 3, + [70383] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3264), 1, - anon_sym_EQ, + ACTIONS(3464), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62969] = 3, + [70394] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3266), 1, - anon_sym_LBRACE, + ACTIONS(3466), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62980] = 3, + [70405] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3268), 1, + ACTIONS(3468), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [62991] = 3, + [70416] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3270), 1, - anon_sym_RPAREN, + ACTIONS(3470), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63002] = 3, + [70427] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3272), 1, - anon_sym_RBRACE, + ACTIONS(3472), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63013] = 3, + [70438] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3274), 1, - anon_sym_DASH_GT, + ACTIONS(3474), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63024] = 3, + [70449] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3276), 1, - anon_sym_DOT, + ACTIONS(3476), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63035] = 3, + [70460] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3126), 1, + ACTIONS(3478), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63046] = 3, + [70471] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3278), 1, - anon_sym_RPAREN, + ACTIONS(3480), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63057] = 3, + [70482] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3280), 1, + ACTIONS(3482), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63068] = 3, + [70493] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3282), 1, - anon_sym_RBRACK, + ACTIONS(3484), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63079] = 3, + [70504] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1359), 1, - anon_sym_RPAREN, + ACTIONS(3486), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63090] = 3, + [70515] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3284), 1, + ACTIONS(3488), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63101] = 3, + [70526] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3286), 1, + ACTIONS(3490), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63112] = 3, + [70537] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3288), 1, - anon_sym_RBRACK, + ACTIONS(3492), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63123] = 3, + [70548] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3290), 1, + ACTIONS(3494), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63134] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3292), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63145] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3294), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63156] = 3, + [70559] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3296), 1, - anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63167] = 3, + [70570] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3298), 1, - anon_sym_DASH_GT, + ACTIONS(3498), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63178] = 3, + [70581] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3300), 1, - anon_sym_EQ, + ACTIONS(3500), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63189] = 3, + [70592] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3302), 1, - anon_sym_LBRACE, + ACTIONS(3502), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63200] = 3, + [70603] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3304), 1, + ACTIONS(3504), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63211] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3306), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63222] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3308), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63233] = 3, + [70614] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3310), 1, - anon_sym_DOT, + ACTIONS(3506), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63244] = 3, + [70625] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3312), 1, - anon_sym_LT_DASH, + ACTIONS(3508), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63255] = 3, + [70636] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3314), 1, - anon_sym_LBRACE, + ACTIONS(3510), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63266] = 3, + [70647] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3316), 1, - anon_sym_COLON, + ACTIONS(3512), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63277] = 3, + [70658] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3318), 1, - anon_sym_DOT, + ACTIONS(3514), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63288] = 3, + [70669] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3320), 1, - anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63299] = 3, + [70680] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3322), 1, - ts_builtin_sym_end, + ACTIONS(3518), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63310] = 3, + [70691] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3324), 1, - sym__name, + ACTIONS(3520), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63321] = 3, + [70702] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3326), 1, + ACTIONS(3522), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63332] = 3, + [70713] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3328), 1, - anon_sym_type, + ACTIONS(3524), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63343] = 3, + [70724] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3330), 1, - anon_sym_type, + ACTIONS(3526), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63354] = 3, + [70735] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3332), 1, + ACTIONS(3528), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63365] = 3, + [70746] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3334), 1, - anon_sym_type, + ACTIONS(3530), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63376] = 3, + [70757] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3336), 1, - anon_sym_LBRACE, + ACTIONS(3532), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63387] = 3, + [70768] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3338), 1, - anon_sym_LPAREN, + ACTIONS(3534), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63398] = 3, + [70779] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3340), 1, + ACTIONS(3536), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63409] = 3, + [70790] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3342), 1, - anon_sym_RPAREN, + ACTIONS(3538), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63420] = 3, + [70801] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3344), 1, + ACTIONS(3540), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63431] = 3, + [70812] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3346), 1, - anon_sym_RPAREN, + ACTIONS(3542), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63442] = 3, + [70823] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3348), 1, - anon_sym_RBRACE, + ACTIONS(3544), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63453] = 3, + [70834] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3350), 1, + ACTIONS(3546), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63464] = 3, + [70845] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3352), 1, - anon_sym_LPAREN, + ACTIONS(3548), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63475] = 3, + [70856] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3354), 1, - anon_sym_LPAREN, + ACTIONS(3550), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63486] = 3, + [70867] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3356), 1, - anon_sym_EQ, + ACTIONS(3552), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63497] = 3, + [70878] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3358), 1, - anon_sym_LBRACE, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63508] = 3, + [70889] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3360), 1, + ACTIONS(3556), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63519] = 3, + [70900] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3362), 1, - anon_sym_COLON, + ACTIONS(3558), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63530] = 3, + [70911] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3364), 1, - anon_sym_RBRACE, + ACTIONS(3560), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63541] = 3, + [70922] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3366), 1, - anon_sym_LPAREN, + ACTIONS(3562), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63552] = 3, + [70933] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3368), 1, - anon_sym_DASH_GT, + ACTIONS(3564), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63563] = 3, + [70944] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3370), 1, - anon_sym_DASH_GT, + ACTIONS(3566), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63574] = 3, + [70955] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3372), 1, - anon_sym_EQ, + ACTIONS(3568), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63585] = 3, + [70966] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3374), 1, - anon_sym_RBRACE, + ACTIONS(3570), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63596] = 3, + [70977] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3376), 1, - anon_sym_RBRACE, + ACTIONS(3572), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63607] = 3, + [70988] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3378), 1, + ACTIONS(3574), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63618] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3380), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [63629] = 3, + [70999] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3382), 1, - anon_sym_COLON, + ACTIONS(3576), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63640] = 3, + [71010] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3384), 1, - anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63651] = 3, + [71021] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3386), 1, + ACTIONS(3580), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63662] = 3, + [71032] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3388), 1, - anon_sym_LPAREN, + ACTIONS(3582), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [63673] = 3, + [71043] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3390), 1, + ACTIONS(3584), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, @@ -57433,1435 +63260,1558 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 0, [SMALL_STATE(7)] = 71, - [SMALL_STATE(8)] = 197, + [SMALL_STATE(8)] = 137, [SMALL_STATE(9)] = 263, [SMALL_STATE(10)] = 329, - [SMALL_STATE(11)] = 395, - [SMALL_STATE(12)] = 461, - [SMALL_STATE(13)] = 527, - [SMALL_STATE(14)] = 593, - [SMALL_STATE(15)] = 719, - [SMALL_STATE(16)] = 845, - [SMALL_STATE(17)] = 915, - [SMALL_STATE(18)] = 1041, - [SMALL_STATE(19)] = 1167, - [SMALL_STATE(20)] = 1233, - [SMALL_STATE(21)] = 1299, - [SMALL_STATE(22)] = 1425, - [SMALL_STATE(23)] = 1551, - [SMALL_STATE(24)] = 1677, - [SMALL_STATE(25)] = 1803, - [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)] = 2445, - [SMALL_STATE(33)] = 2571, - [SMALL_STATE(34)] = 2697, - [SMALL_STATE(35)] = 2823, - [SMALL_STATE(36)] = 2893, - [SMALL_STATE(37)] = 2959, - [SMALL_STATE(38)] = 3085, - [SMALL_STATE(39)] = 3151, - [SMALL_STATE(40)] = 3221, - [SMALL_STATE(41)] = 3287, - [SMALL_STATE(42)] = 3413, - [SMALL_STATE(43)] = 3539, - [SMALL_STATE(44)] = 3665, - [SMALL_STATE(45)] = 3791, - [SMALL_STATE(46)] = 3917, - [SMALL_STATE(47)] = 4043, - [SMALL_STATE(48)] = 4169, - [SMALL_STATE(49)] = 4295, - [SMALL_STATE(50)] = 4421, - [SMALL_STATE(51)] = 4547, - [SMALL_STATE(52)] = 4613, - [SMALL_STATE(53)] = 4739, - [SMALL_STATE(54)] = 4865, - [SMALL_STATE(55)] = 4991, - [SMALL_STATE(56)] = 5114, - [SMALL_STATE(57)] = 5237, - [SMALL_STATE(58)] = 5302, - [SMALL_STATE(59)] = 5425, - [SMALL_STATE(60)] = 5490, - [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)] = 6293, - [SMALL_STATE(68)] = 6358, - [SMALL_STATE(69)] = 6425, - [SMALL_STATE(70)] = 6490, - [SMALL_STATE(71)] = 6555, - [SMALL_STATE(72)] = 6622, - [SMALL_STATE(73)] = 6689, - [SMALL_STATE(74)] = 6756, - [SMALL_STATE(75)] = 6821, - [SMALL_STATE(76)] = 6886, - [SMALL_STATE(77)] = 6951, - [SMALL_STATE(78)] = 7074, - [SMALL_STATE(79)] = 7197, - [SMALL_STATE(80)] = 7320, - [SMALL_STATE(81)] = 7384, - [SMALL_STATE(82)] = 7468, - [SMALL_STATE(83)] = 7594, - [SMALL_STATE(84)] = 7666, - [SMALL_STATE(85)] = 7750, - [SMALL_STATE(86)] = 7824, - [SMALL_STATE(87)] = 7888, - [SMALL_STATE(88)] = 7952, - [SMALL_STATE(89)] = 8030, - [SMALL_STATE(90)] = 8114, - [SMALL_STATE(91)] = 8194, - [SMALL_STATE(92)] = 8258, - [SMALL_STATE(93)] = 8340, - [SMALL_STATE(94)] = 8466, - [SMALL_STATE(95)] = 8534, - [SMALL_STATE(96)] = 8598, - [SMALL_STATE(97)] = 8724, - [SMALL_STATE(98)] = 8808, - [SMALL_STATE(99)] = 8872, - [SMALL_STATE(100)] = 8936, - [SMALL_STATE(101)] = 9000, - [SMALL_STATE(102)] = 9064, - [SMALL_STATE(103)] = 9128, - [SMALL_STATE(104)] = 9192, - [SMALL_STATE(105)] = 9256, - [SMALL_STATE(106)] = 9340, - [SMALL_STATE(107)] = 9404, - [SMALL_STATE(108)] = 9468, - [SMALL_STATE(109)] = 9532, - [SMALL_STATE(110)] = 9616, - [SMALL_STATE(111)] = 9680, - [SMALL_STATE(112)] = 9744, - [SMALL_STATE(113)] = 9870, - [SMALL_STATE(114)] = 9954, - [SMALL_STATE(115)] = 10018, - [SMALL_STATE(116)] = 10082, - [SMALL_STATE(117)] = 10205, - [SMALL_STATE(118)] = 10328, - [SMALL_STATE(119)] = 10451, - [SMALL_STATE(120)] = 10574, - [SMALL_STATE(121)] = 10697, - [SMALL_STATE(122)] = 10820, - [SMALL_STATE(123)] = 10883, - [SMALL_STATE(124)] = 11006, - [SMALL_STATE(125)] = 11129, - [SMALL_STATE(126)] = 11252, - [SMALL_STATE(127)] = 11375, - [SMALL_STATE(128)] = 11438, - [SMALL_STATE(129)] = 11561, - [SMALL_STATE(130)] = 11624, - [SMALL_STATE(131)] = 11747, - [SMALL_STATE(132)] = 11810, - [SMALL_STATE(133)] = 11876, - [SMALL_STATE(134)] = 11996, - [SMALL_STATE(135)] = 12057, - [SMALL_STATE(136)] = 12122, - [SMALL_STATE(137)] = 12183, - [SMALL_STATE(138)] = 12244, - [SMALL_STATE(139)] = 12305, - [SMALL_STATE(140)] = 12366, - [SMALL_STATE(141)] = 12427, - [SMALL_STATE(142)] = 12488, - [SMALL_STATE(143)] = 12549, - [SMALL_STATE(144)] = 12610, - [SMALL_STATE(145)] = 12671, - [SMALL_STATE(146)] = 12736, - [SMALL_STATE(147)] = 12797, - [SMALL_STATE(148)] = 12858, - [SMALL_STATE(149)] = 12918, - [SMALL_STATE(150)] = 12978, - [SMALL_STATE(151)] = 13092, - [SMALL_STATE(152)] = 13152, - [SMALL_STATE(153)] = 13266, - [SMALL_STATE(154)] = 13326, - [SMALL_STATE(155)] = 13440, - [SMALL_STATE(156)] = 13554, - [SMALL_STATE(157)] = 13614, - [SMALL_STATE(158)] = 13728, - [SMALL_STATE(159)] = 13842, - [SMALL_STATE(160)] = 13902, - [SMALL_STATE(161)] = 14016, - [SMALL_STATE(162)] = 14076, - [SMALL_STATE(163)] = 14138, - [SMALL_STATE(164)] = 14200, - [SMALL_STATE(165)] = 14314, - [SMALL_STATE(166)] = 14376, - [SMALL_STATE(167)] = 14436, - [SMALL_STATE(168)] = 14550, - [SMALL_STATE(169)] = 14609, - [SMALL_STATE(170)] = 14720, - [SMALL_STATE(171)] = 14779, - [SMALL_STATE(172)] = 14838, - [SMALL_STATE(173)] = 14949, - [SMALL_STATE(174)] = 15060, - [SMALL_STATE(175)] = 15171, - [SMALL_STATE(176)] = 15230, - [SMALL_STATE(177)] = 15289, - [SMALL_STATE(178)] = 15348, - [SMALL_STATE(179)] = 15459, - [SMALL_STATE(180)] = 15570, - [SMALL_STATE(181)] = 15681, - [SMALL_STATE(182)] = 15792, - [SMALL_STATE(183)] = 15851, - [SMALL_STATE(184)] = 15910, - [SMALL_STATE(185)] = 15969, - [SMALL_STATE(186)] = 16080, - [SMALL_STATE(187)] = 16139, - [SMALL_STATE(188)] = 16250, - [SMALL_STATE(189)] = 16309, - [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)] = 17041, - [SMALL_STATE(198)] = 17152, - [SMALL_STATE(199)] = 17263, - [SMALL_STATE(200)] = 17322, - [SMALL_STATE(201)] = 17433, - [SMALL_STATE(202)] = 17544, - [SMALL_STATE(203)] = 17655, - [SMALL_STATE(204)] = 17714, - [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)] = 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, - [SMALL_STATE(224)] = 19886, - [SMALL_STATE(225)] = 19994, - [SMALL_STATE(226)] = 20102, - [SMALL_STATE(227)] = 20210, - [SMALL_STATE(228)] = 20318, - [SMALL_STATE(229)] = 20426, - [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)] = 21194, - [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)] = 23690, - [SMALL_STATE(260)] = 23798, - [SMALL_STATE(261)] = 23906, - [SMALL_STATE(262)] = 24018, - [SMALL_STATE(263)] = 24126, - [SMALL_STATE(264)] = 24234, - [SMALL_STATE(265)] = 24346, - [SMALL_STATE(266)] = 24454, - [SMALL_STATE(267)] = 24562, - [SMALL_STATE(268)] = 24670, - [SMALL_STATE(269)] = 24778, - [SMALL_STATE(270)] = 24886, - [SMALL_STATE(271)] = 24994, - [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)] = 25874, - [SMALL_STATE(281)] = 25982, - [SMALL_STATE(282)] = 26090, - [SMALL_STATE(283)] = 26198, - [SMALL_STATE(284)] = 26306, - [SMALL_STATE(285)] = 26414, - [SMALL_STATE(286)] = 26522, - [SMALL_STATE(287)] = 26630, - [SMALL_STATE(288)] = 26738, - [SMALL_STATE(289)] = 26846, - [SMALL_STATE(290)] = 26905, - [SMALL_STATE(291)] = 27014, - [SMALL_STATE(292)] = 27090, - [SMALL_STATE(293)] = 27196, - [SMALL_STATE(294)] = 27272, - [SMALL_STATE(295)] = 27348, - [SMALL_STATE(296)] = 27424, - [SMALL_STATE(297)] = 27496, - [SMALL_STATE(298)] = 27570, - [SMALL_STATE(299)] = 27630, - [SMALL_STATE(300)] = 27686, - [SMALL_STATE(301)] = 27792, - [SMALL_STATE(302)] = 27868, - [SMALL_STATE(303)] = 27944, - [SMALL_STATE(304)] = 28050, - [SMALL_STATE(305)] = 28156, - [SMALL_STATE(306)] = 28220, - [SMALL_STATE(307)] = 28290, - [SMALL_STATE(308)] = 28396, - [SMALL_STATE(309)] = 28472, - [SMALL_STATE(310)] = 28538, - [SMALL_STATE(311)] = 28644, - [SMALL_STATE(312)] = 28750, - [SMALL_STATE(313)] = 28856, - [SMALL_STATE(314)] = 28962, - [SMALL_STATE(315)] = 29068, - [SMALL_STATE(316)] = 29123, - [SMALL_STATE(317)] = 29178, - [SMALL_STATE(318)] = 29233, - [SMALL_STATE(319)] = 29288, - [SMALL_STATE(320)] = 29341, - [SMALL_STATE(321)] = 29394, - [SMALL_STATE(322)] = 29447, - [SMALL_STATE(323)] = 29502, - [SMALL_STATE(324)] = 29552, - [SMALL_STATE(325)] = 29602, - [SMALL_STATE(326)] = 29652, - [SMALL_STATE(327)] = 29702, - [SMALL_STATE(328)] = 29752, - [SMALL_STATE(329)] = 29802, - [SMALL_STATE(330)] = 29852, - [SMALL_STATE(331)] = 29902, - [SMALL_STATE(332)] = 29952, - [SMALL_STATE(333)] = 30006, - [SMALL_STATE(334)] = 30060, - [SMALL_STATE(335)] = 30114, - [SMALL_STATE(336)] = 30164, - [SMALL_STATE(337)] = 30214, - [SMALL_STATE(338)] = 30264, - [SMALL_STATE(339)] = 30314, - [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)] = 30709, - [SMALL_STATE(348)] = 30760, - [SMALL_STATE(349)] = 30811, - [SMALL_STATE(350)] = 30860, - [SMALL_STATE(351)] = 30911, - [SMALL_STATE(352)] = 30960, - [SMALL_STATE(353)] = 31011, - [SMALL_STATE(354)] = 31060, - [SMALL_STATE(355)] = 31124, - [SMALL_STATE(356)] = 31172, - [SMALL_STATE(357)] = 31230, - [SMALL_STATE(358)] = 31292, - [SMALL_STATE(359)] = 31340, - [SMALL_STATE(360)] = 31388, - [SMALL_STATE(361)] = 31456, - [SMALL_STATE(362)] = 31524, - [SMALL_STATE(363)] = 31572, - [SMALL_STATE(364)] = 31620, - [SMALL_STATE(365)] = 31686, - [SMALL_STATE(366)] = 31738, - [SMALL_STATE(367)] = 31806, - [SMALL_STATE(368)] = 31854, - [SMALL_STATE(369)] = 31902, - [SMALL_STATE(370)] = 31958, - [SMALL_STATE(371)] = 32006, - [SMALL_STATE(372)] = 32054, - [SMALL_STATE(373)] = 32122, - [SMALL_STATE(374)] = 32190, - [SMALL_STATE(375)] = 32258, - [SMALL_STATE(376)] = 32306, - [SMALL_STATE(377)] = 32354, - [SMALL_STATE(378)] = 32402, - [SMALL_STATE(379)] = 32450, - [SMALL_STATE(380)] = 32498, - [SMALL_STATE(381)] = 32546, - [SMALL_STATE(382)] = 32594, - [SMALL_STATE(383)] = 32642, - [SMALL_STATE(384)] = 32690, - [SMALL_STATE(385)] = 32738, - [SMALL_STATE(386)] = 32788, - [SMALL_STATE(387)] = 32838, - [SMALL_STATE(388)] = 32888, - [SMALL_STATE(389)] = 32937, - [SMALL_STATE(390)] = 32982, - [SMALL_STATE(391)] = 33027, - [SMALL_STATE(392)] = 33076, - [SMALL_STATE(393)] = 33160, - [SMALL_STATE(394)] = 33204, - [SMALL_STATE(395)] = 33248, - [SMALL_STATE(396)] = 33292, - [SMALL_STATE(397)] = 33376, - [SMALL_STATE(398)] = 33420, - [SMALL_STATE(399)] = 33468, - [SMALL_STATE(400)] = 33552, - [SMALL_STATE(401)] = 33596, - [SMALL_STATE(402)] = 33644, - [SMALL_STATE(403)] = 33688, - [SMALL_STATE(404)] = 33772, - [SMALL_STATE(405)] = 33816, - [SMALL_STATE(406)] = 33864, - [SMALL_STATE(407)] = 33908, - [SMALL_STATE(408)] = 33956, - [SMALL_STATE(409)] = 34000, - [SMALL_STATE(410)] = 34044, - [SMALL_STATE(411)] = 34088, - [SMALL_STATE(412)] = 34136, - [SMALL_STATE(413)] = 34180, - [SMALL_STATE(414)] = 34228, - [SMALL_STATE(415)] = 34271, - [SMALL_STATE(416)] = 34352, - [SMALL_STATE(417)] = 34397, - [SMALL_STATE(418)] = 34440, - [SMALL_STATE(419)] = 34483, - [SMALL_STATE(420)] = 34540, - [SMALL_STATE(421)] = 34585, - [SMALL_STATE(422)] = 34630, - [SMALL_STATE(423)] = 34673, - [SMALL_STATE(424)] = 34716, - [SMALL_STATE(425)] = 34799, - [SMALL_STATE(426)] = 34846, - [SMALL_STATE(427)] = 34889, - [SMALL_STATE(428)] = 34932, - [SMALL_STATE(429)] = 34989, - [SMALL_STATE(430)] = 35032, - [SMALL_STATE(431)] = 35077, - [SMALL_STATE(432)] = 35120, - [SMALL_STATE(433)] = 35165, - [SMALL_STATE(434)] = 35208, - [SMALL_STATE(435)] = 35255, - [SMALL_STATE(436)] = 35298, - [SMALL_STATE(437)] = 35381, - [SMALL_STATE(438)] = 35462, - [SMALL_STATE(439)] = 35507, - [SMALL_STATE(440)] = 35564, - [SMALL_STATE(441)] = 35609, - [SMALL_STATE(442)] = 35692, - [SMALL_STATE(443)] = 35735, - [SMALL_STATE(444)] = 35778, - [SMALL_STATE(445)] = 35821, - [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)] = 36254, - [SMALL_STATE(455)] = 36297, - [SMALL_STATE(456)] = 36340, - [SMALL_STATE(457)] = 36387, - [SMALL_STATE(458)] = 36429, - [SMALL_STATE(459)] = 36471, - [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(468)] = 36883, - [SMALL_STATE(469)] = 36925, - [SMALL_STATE(470)] = 36985, - [SMALL_STATE(471)] = 37027, - [SMALL_STATE(472)] = 37069, - [SMALL_STATE(473)] = 37111, - [SMALL_STATE(474)] = 37153, - [SMALL_STATE(475)] = 37195, - [SMALL_STATE(476)] = 37237, - [SMALL_STATE(477)] = 37279, - [SMALL_STATE(478)] = 37321, - [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)] = 37701, - [SMALL_STATE(487)] = 37743, - [SMALL_STATE(488)] = 37785, - [SMALL_STATE(489)] = 37827, - [SMALL_STATE(490)] = 37869, - [SMALL_STATE(491)] = 37911, - [SMALL_STATE(492)] = 37963, - [SMALL_STATE(493)] = 38005, - [SMALL_STATE(494)] = 38047, - [SMALL_STATE(495)] = 38089, - [SMALL_STATE(496)] = 38131, - [SMALL_STATE(497)] = 38173, - [SMALL_STATE(498)] = 38215, - [SMALL_STATE(499)] = 38257, - [SMALL_STATE(500)] = 38299, - [SMALL_STATE(501)] = 38341, - [SMALL_STATE(502)] = 38391, - [SMALL_STATE(503)] = 38433, - [SMALL_STATE(504)] = 38475, - [SMALL_STATE(505)] = 38517, - [SMALL_STATE(506)] = 38559, - [SMALL_STATE(507)] = 38601, - [SMALL_STATE(508)] = 38643, - [SMALL_STATE(509)] = 38689, - [SMALL_STATE(510)] = 38731, - [SMALL_STATE(511)] = 38773, - [SMALL_STATE(512)] = 38815, - [SMALL_STATE(513)] = 38857, - [SMALL_STATE(514)] = 38899, - [SMALL_STATE(515)] = 38941, - [SMALL_STATE(516)] = 38983, - [SMALL_STATE(517)] = 39025, - [SMALL_STATE(518)] = 39067, - [SMALL_STATE(519)] = 39109, - [SMALL_STATE(520)] = 39151, - [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)] = 39729, - [SMALL_STATE(534)] = 39771, - [SMALL_STATE(535)] = 39813, - [SMALL_STATE(536)] = 39855, - [SMALL_STATE(537)] = 39897, - [SMALL_STATE(538)] = 39939, - [SMALL_STATE(539)] = 39981, - [SMALL_STATE(540)] = 40023, - [SMALL_STATE(541)] = 40065, - [SMALL_STATE(542)] = 40107, - [SMALL_STATE(543)] = 40149, - [SMALL_STATE(544)] = 40191, - [SMALL_STATE(545)] = 40233, - [SMALL_STATE(546)] = 40275, - [SMALL_STATE(547)] = 40317, - [SMALL_STATE(548)] = 40359, - [SMALL_STATE(549)] = 40401, - [SMALL_STATE(550)] = 40443, - [SMALL_STATE(551)] = 40503, - [SMALL_STATE(552)] = 40547, - [SMALL_STATE(553)] = 40589, - [SMALL_STATE(554)] = 40631, - [SMALL_STATE(555)] = 40687, - [SMALL_STATE(556)] = 40764, - [SMALL_STATE(557)] = 40839, - [SMALL_STATE(558)] = 40884, - [SMALL_STATE(559)] = 40959, - [SMALL_STATE(560)] = 41036, - [SMALL_STATE(561)] = 41113, - [SMALL_STATE(562)] = 41166, - [SMALL_STATE(563)] = 41243, - [SMALL_STATE(564)] = 41320, - [SMALL_STATE(565)] = 41397, - [SMALL_STATE(566)] = 41450, - [SMALL_STATE(567)] = 41503, - [SMALL_STATE(568)] = 41580, - [SMALL_STATE(569)] = 41648, - [SMALL_STATE(570)] = 41722, - [SMALL_STATE(571)] = 41796, - [SMALL_STATE(572)] = 41870, - [SMALL_STATE(573)] = 41944, - [SMALL_STATE(574)] = 42018, - [SMALL_STATE(575)] = 42092, - [SMALL_STATE(576)] = 42150, - [SMALL_STATE(577)] = 42218, - [SMALL_STATE(578)] = 42286, - [SMALL_STATE(579)] = 42360, - [SMALL_STATE(580)] = 42428, - [SMALL_STATE(581)] = 42502, - [SMALL_STATE(582)] = 42570, - [SMALL_STATE(583)] = 42638, - [SMALL_STATE(584)] = 42706, - [SMALL_STATE(585)] = 42774, - [SMALL_STATE(586)] = 42842, - [SMALL_STATE(587)] = 42910, - [SMALL_STATE(588)] = 42949, - [SMALL_STATE(589)] = 42988, - [SMALL_STATE(590)] = 43059, - [SMALL_STATE(591)] = 43122, - [SMALL_STATE(592)] = 43193, - [SMALL_STATE(593)] = 43264, - [SMALL_STATE(594)] = 43303, - [SMALL_STATE(595)] = 43342, - [SMALL_STATE(596)] = 43413, - [SMALL_STATE(597)] = 43452, - [SMALL_STATE(598)] = 43491, - [SMALL_STATE(599)] = 43530, - [SMALL_STATE(600)] = 43569, - [SMALL_STATE(601)] = 43632, - [SMALL_STATE(602)] = 43703, - [SMALL_STATE(603)] = 43742, - [SMALL_STATE(604)] = 43813, - [SMALL_STATE(605)] = 43852, - [SMALL_STATE(606)] = 43915, - [SMALL_STATE(607)] = 43986, - [SMALL_STATE(608)] = 44025, - [SMALL_STATE(609)] = 44064, - [SMALL_STATE(610)] = 44103, - [SMALL_STATE(611)] = 44142, - [SMALL_STATE(612)] = 44213, - [SMALL_STATE(613)] = 44252, - [SMALL_STATE(614)] = 44323, - [SMALL_STATE(615)] = 44394, - [SMALL_STATE(616)] = 44433, - [SMALL_STATE(617)] = 44504, - [SMALL_STATE(618)] = 44543, - [SMALL_STATE(619)] = 44582, - [SMALL_STATE(620)] = 44653, - [SMALL_STATE(621)] = 44724, - [SMALL_STATE(622)] = 44787, - [SMALL_STATE(623)] = 44855, - [SMALL_STATE(624)] = 44915, - [SMALL_STATE(625)] = 44983, - [SMALL_STATE(626)] = 45051, - [SMALL_STATE(627)] = 45117, - [SMALL_STATE(628)] = 45183, - [SMALL_STATE(629)] = 45249, - [SMALL_STATE(630)] = 45315, - [SMALL_STATE(631)] = 45381, - [SMALL_STATE(632)] = 45447, - [SMALL_STATE(633)] = 45507, - [SMALL_STATE(634)] = 45573, - [SMALL_STATE(635)] = 45633, - [SMALL_STATE(636)] = 45699, - [SMALL_STATE(637)] = 45765, - [SMALL_STATE(638)] = 45831, - [SMALL_STATE(639)] = 45891, - [SMALL_STATE(640)] = 45951, - [SMALL_STATE(641)] = 46014, - [SMALL_STATE(642)] = 46077, - [SMALL_STATE(643)] = 46132, - [SMALL_STATE(644)] = 46197, - [SMALL_STATE(645)] = 46260, - [SMALL_STATE(646)] = 46323, - [SMALL_STATE(647)] = 46386, - [SMALL_STATE(648)] = 46449, - [SMALL_STATE(649)] = 46512, - [SMALL_STATE(650)] = 46577, - [SMALL_STATE(651)] = 46640, - [SMALL_STATE(652)] = 46695, - [SMALL_STATE(653)] = 46758, - [SMALL_STATE(654)] = 46821, - [SMALL_STATE(655)] = 46886, - [SMALL_STATE(656)] = 46941, - [SMALL_STATE(657)] = 46995, - [SMALL_STATE(658)] = 47055, - [SMALL_STATE(659)] = 47109, - [SMALL_STATE(660)] = 47163, - [SMALL_STATE(661)] = 47217, - [SMALL_STATE(662)] = 47271, - [SMALL_STATE(663)] = 47325, - [SMALL_STATE(664)] = 47379, - [SMALL_STATE(665)] = 47439, - [SMALL_STATE(666)] = 47499, - [SMALL_STATE(667)] = 47559, - [SMALL_STATE(668)] = 47619, - [SMALL_STATE(669)] = 47673, - [SMALL_STATE(670)] = 47727, - [SMALL_STATE(671)] = 47787, - [SMALL_STATE(672)] = 47841, - [SMALL_STATE(673)] = 47901, - [SMALL_STATE(674)] = 47961, - [SMALL_STATE(675)] = 48015, - [SMALL_STATE(676)] = 48069, - [SMALL_STATE(677)] = 48123, - [SMALL_STATE(678)] = 48183, - [SMALL_STATE(679)] = 48237, - [SMALL_STATE(680)] = 48291, - [SMALL_STATE(681)] = 48351, - [SMALL_STATE(682)] = 48411, - [SMALL_STATE(683)] = 48471, - [SMALL_STATE(684)] = 48525, - [SMALL_STATE(685)] = 48579, - [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)] = 49300, - [SMALL_STATE(699)] = 49334, - [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)] = 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)] = 50383, - [SMALL_STATE(726)] = 50424, - [SMALL_STATE(727)] = 50465, - [SMALL_STATE(728)] = 50490, - [SMALL_STATE(729)] = 50531, - [SMALL_STATE(730)] = 50572, - [SMALL_STATE(731)] = 50613, - [SMALL_STATE(732)] = 50654, - [SMALL_STATE(733)] = 50697, - [SMALL_STATE(734)] = 50738, - [SMALL_STATE(735)] = 50779, - [SMALL_STATE(736)] = 50820, - [SMALL_STATE(737)] = 50863, - [SMALL_STATE(738)] = 50904, - [SMALL_STATE(739)] = 50944, - [SMALL_STATE(740)] = 50970, - [SMALL_STATE(741)] = 50996, - [SMALL_STATE(742)] = 51022, - [SMALL_STATE(743)] = 51048, - [SMALL_STATE(744)] = 51086, - [SMALL_STATE(745)] = 51124, - [SMALL_STATE(746)] = 51162, - [SMALL_STATE(747)] = 51202, - [SMALL_STATE(748)] = 51242, - [SMALL_STATE(749)] = 51280, - [SMALL_STATE(750)] = 51318, - [SMALL_STATE(751)] = 51356, - [SMALL_STATE(752)] = 51394, - [SMALL_STATE(753)] = 51418, - [SMALL_STATE(754)] = 51442, - [SMALL_STATE(755)] = 51466, - [SMALL_STATE(756)] = 51490, - [SMALL_STATE(757)] = 51528, - [SMALL_STATE(758)] = 51566, - [SMALL_STATE(759)] = 51590, - [SMALL_STATE(760)] = 51628, - [SMALL_STATE(761)] = 51652, - [SMALL_STATE(762)] = 51676, - [SMALL_STATE(763)] = 51714, - [SMALL_STATE(764)] = 51754, - [SMALL_STATE(765)] = 51780, - [SMALL_STATE(766)] = 51818, - [SMALL_STATE(767)] = 51858, - [SMALL_STATE(768)] = 51886, - [SMALL_STATE(769)] = 51910, - [SMALL_STATE(770)] = 51948, - [SMALL_STATE(771)] = 51986, - [SMALL_STATE(772)] = 52010, - [SMALL_STATE(773)] = 52036, - [SMALL_STATE(774)] = 52060, - [SMALL_STATE(775)] = 52098, - [SMALL_STATE(776)] = 52136, - [SMALL_STATE(777)] = 52160, - [SMALL_STATE(778)] = 52198, - [SMALL_STATE(779)] = 52236, - [SMALL_STATE(780)] = 52274, - [SMALL_STATE(781)] = 52312, - [SMALL_STATE(782)] = 52338, - [SMALL_STATE(783)] = 52366, - [SMALL_STATE(784)] = 52404, - [SMALL_STATE(785)] = 52428, - [SMALL_STATE(786)] = 52466, - [SMALL_STATE(787)] = 52506, - [SMALL_STATE(788)] = 52532, - [SMALL_STATE(789)] = 52570, - [SMALL_STATE(790)] = 52608, - [SMALL_STATE(791)] = 52648, - [SMALL_STATE(792)] = 52686, - [SMALL_STATE(793)] = 52724, - [SMALL_STATE(794)] = 52755, - [SMALL_STATE(795)] = 52778, - [SMALL_STATE(796)] = 52807, - [SMALL_STATE(797)] = 52834, - [SMALL_STATE(798)] = 52867, - [SMALL_STATE(799)] = 52904, - [SMALL_STATE(800)] = 52935, - [SMALL_STATE(801)] = 52972, - [SMALL_STATE(802)] = 52995, - [SMALL_STATE(803)] = 53024, - [SMALL_STATE(804)] = 53047, - [SMALL_STATE(805)] = 53074, - [SMALL_STATE(806)] = 53107, - [SMALL_STATE(807)] = 53134, - [SMALL_STATE(808)] = 53161, - [SMALL_STATE(809)] = 53184, - [SMALL_STATE(810)] = 53207, - [SMALL_STATE(811)] = 53230, - [SMALL_STATE(812)] = 53257, - [SMALL_STATE(813)] = 53282, - [SMALL_STATE(814)] = 53305, - [SMALL_STATE(815)] = 53328, - [SMALL_STATE(816)] = 53351, - [SMALL_STATE(817)] = 53388, - [SMALL_STATE(818)] = 53411, - [SMALL_STATE(819)] = 53434, - [SMALL_STATE(820)] = 53457, - [SMALL_STATE(821)] = 53480, - [SMALL_STATE(822)] = 53503, - [SMALL_STATE(823)] = 53526, - [SMALL_STATE(824)] = 53549, - [SMALL_STATE(825)] = 53572, - [SMALL_STATE(826)] = 53595, - [SMALL_STATE(827)] = 53618, - [SMALL_STATE(828)] = 53641, - [SMALL_STATE(829)] = 53664, - [SMALL_STATE(830)] = 53687, - [SMALL_STATE(831)] = 53724, - [SMALL_STATE(832)] = 53747, - [SMALL_STATE(833)] = 53770, - [SMALL_STATE(834)] = 53793, - [SMALL_STATE(835)] = 53816, - [SMALL_STATE(836)] = 53839, - [SMALL_STATE(837)] = 53864, - [SMALL_STATE(838)] = 53889, - [SMALL_STATE(839)] = 53914, - [SMALL_STATE(840)] = 53937, - [SMALL_STATE(841)] = 53964, - [SMALL_STATE(842)] = 53988, - [SMALL_STATE(843)] = 54029, - [SMALL_STATE(844)] = 54050, - [SMALL_STATE(845)] = 54071, - [SMALL_STATE(846)] = 54096, - [SMALL_STATE(847)] = 54117, - [SMALL_STATE(848)] = 54138, - [SMALL_STATE(849)] = 54159, - [SMALL_STATE(850)] = 54200, - [SMALL_STATE(851)] = 54241, - [SMALL_STATE(852)] = 54262, - [SMALL_STATE(853)] = 54303, - [SMALL_STATE(854)] = 54324, - [SMALL_STATE(855)] = 54345, - [SMALL_STATE(856)] = 54386, - [SMALL_STATE(857)] = 54411, - [SMALL_STATE(858)] = 54436, - [SMALL_STATE(859)] = 54461, - [SMALL_STATE(860)] = 54482, - [SMALL_STATE(861)] = 54507, - [SMALL_STATE(862)] = 54548, - [SMALL_STATE(863)] = 54569, - [SMALL_STATE(864)] = 54589, - [SMALL_STATE(865)] = 54611, - [SMALL_STATE(866)] = 54633, - [SMALL_STATE(867)] = 54653, - [SMALL_STATE(868)] = 54687, - [SMALL_STATE(869)] = 54707, - [SMALL_STATE(870)] = 54741, - [SMALL_STATE(871)] = 54763, - [SMALL_STATE(872)] = 54785, - [SMALL_STATE(873)] = 54807, - [SMALL_STATE(874)] = 54845, - [SMALL_STATE(875)] = 54865, - [SMALL_STATE(876)] = 54884, - [SMALL_STATE(877)] = 54903, - [SMALL_STATE(878)] = 54922, - [SMALL_STATE(879)] = 54941, - [SMALL_STATE(880)] = 54960, - [SMALL_STATE(881)] = 54979, - [SMALL_STATE(882)] = 54998, - [SMALL_STATE(883)] = 55017, - [SMALL_STATE(884)] = 55036, - [SMALL_STATE(885)] = 55055, - [SMALL_STATE(886)] = 55074, - [SMALL_STATE(887)] = 55101, - [SMALL_STATE(888)] = 55120, - [SMALL_STATE(889)] = 55139, - [SMALL_STATE(890)] = 55158, - [SMALL_STATE(891)] = 55177, - [SMALL_STATE(892)] = 55196, - [SMALL_STATE(893)] = 55215, - [SMALL_STATE(894)] = 55238, - [SMALL_STATE(895)] = 55257, - [SMALL_STATE(896)] = 55276, - [SMALL_STATE(897)] = 55295, - [SMALL_STATE(898)] = 55314, - [SMALL_STATE(899)] = 55335, - [SMALL_STATE(900)] = 55354, - [SMALL_STATE(901)] = 55373, - [SMALL_STATE(902)] = 55392, - [SMALL_STATE(903)] = 55411, - [SMALL_STATE(904)] = 55430, - [SMALL_STATE(905)] = 55449, - [SMALL_STATE(906)] = 55468, - [SMALL_STATE(907)] = 55487, - [SMALL_STATE(908)] = 55506, - [SMALL_STATE(909)] = 55527, - [SMALL_STATE(910)] = 55546, - [SMALL_STATE(911)] = 55565, - [SMALL_STATE(912)] = 55597, - [SMALL_STATE(913)] = 55615, - [SMALL_STATE(914)] = 55635, - [SMALL_STATE(915)] = 55667, - [SMALL_STATE(916)] = 55685, - [SMALL_STATE(917)] = 55703, - [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)] = 55926, - [SMALL_STATE(926)] = 55955, - [SMALL_STATE(927)] = 55979, - [SMALL_STATE(928)] = 56001, - [SMALL_STATE(929)] = 56023, - [SMALL_STATE(930)] = 56047, - [SMALL_STATE(931)] = 56069, - [SMALL_STATE(932)] = 56091, - [SMALL_STATE(933)] = 56115, - [SMALL_STATE(934)] = 56137, - [SMALL_STATE(935)] = 56159, - [SMALL_STATE(936)] = 56181, - [SMALL_STATE(937)] = 56201, - [SMALL_STATE(938)] = 56225, - [SMALL_STATE(939)] = 56247, - [SMALL_STATE(940)] = 56271, - [SMALL_STATE(941)] = 56295, - [SMALL_STATE(942)] = 56319, - [SMALL_STATE(943)] = 56341, - [SMALL_STATE(944)] = 56363, - [SMALL_STATE(945)] = 56385, - [SMALL_STATE(946)] = 56407, - [SMALL_STATE(947)] = 56431, - [SMALL_STATE(948)] = 56455, - [SMALL_STATE(949)] = 56477, - [SMALL_STATE(950)] = 56499, - [SMALL_STATE(951)] = 56521, - [SMALL_STATE(952)] = 56543, - [SMALL_STATE(953)] = 56565, - [SMALL_STATE(954)] = 56589, - [SMALL_STATE(955)] = 56611, - [SMALL_STATE(956)] = 56633, - [SMALL_STATE(957)] = 56655, - [SMALL_STATE(958)] = 56673, - [SMALL_STATE(959)] = 56697, - [SMALL_STATE(960)] = 56721, - [SMALL_STATE(961)] = 56747, - [SMALL_STATE(962)] = 56767, - [SMALL_STATE(963)] = 56790, - [SMALL_STATE(964)] = 56809, - [SMALL_STATE(965)] = 56830, - [SMALL_STATE(966)] = 56849, - [SMALL_STATE(967)] = 56872, - [SMALL_STATE(968)] = 56893, - [SMALL_STATE(969)] = 56914, - [SMALL_STATE(970)] = 56933, - [SMALL_STATE(971)] = 56952, - [SMALL_STATE(972)] = 56973, - [SMALL_STATE(973)] = 56992, - [SMALL_STATE(974)] = 57013, - [SMALL_STATE(975)] = 57034, - [SMALL_STATE(976)] = 57053, - [SMALL_STATE(977)] = 57074, - [SMALL_STATE(978)] = 57095, - [SMALL_STATE(979)] = 57118, - [SMALL_STATE(980)] = 57137, - [SMALL_STATE(981)] = 57160, - [SMALL_STATE(982)] = 57183, - [SMALL_STATE(983)] = 57202, - [SMALL_STATE(984)] = 57223, - [SMALL_STATE(985)] = 57246, - [SMALL_STATE(986)] = 57264, - [SMALL_STATE(987)] = 57282, - [SMALL_STATE(988)] = 57300, - [SMALL_STATE(989)] = 57318, - [SMALL_STATE(990)] = 57336, - [SMALL_STATE(991)] = 57352, - [SMALL_STATE(992)] = 57370, - [SMALL_STATE(993)] = 57386, - [SMALL_STATE(994)] = 57404, - [SMALL_STATE(995)] = 57422, - [SMALL_STATE(996)] = 57442, - [SMALL_STATE(997)] = 57458, - [SMALL_STATE(998)] = 57476, - [SMALL_STATE(999)] = 57496, - [SMALL_STATE(1000)] = 57512, - [SMALL_STATE(1001)] = 57528, - [SMALL_STATE(1002)] = 57546, - [SMALL_STATE(1003)] = 57564, - [SMALL_STATE(1004)] = 57582, - [SMALL_STATE(1005)] = 57596, - [SMALL_STATE(1006)] = 57616, - [SMALL_STATE(1007)] = 57634, - [SMALL_STATE(1008)] = 57652, - [SMALL_STATE(1009)] = 57672, - [SMALL_STATE(1010)] = 57692, - [SMALL_STATE(1011)] = 57710, - [SMALL_STATE(1012)] = 57728, - [SMALL_STATE(1013)] = 57746, - [SMALL_STATE(1014)] = 57762, - [SMALL_STATE(1015)] = 57780, - [SMALL_STATE(1016)] = 57800, - [SMALL_STATE(1017)] = 57820, - [SMALL_STATE(1018)] = 57838, - [SMALL_STATE(1019)] = 57856, - [SMALL_STATE(1020)] = 57874, - [SMALL_STATE(1021)] = 57892, - [SMALL_STATE(1022)] = 57912, - [SMALL_STATE(1023)] = 57932, - [SMALL_STATE(1024)] = 57950, - [SMALL_STATE(1025)] = 57970, - [SMALL_STATE(1026)] = 57988, - [SMALL_STATE(1027)] = 58008, - [SMALL_STATE(1028)] = 58028, - [SMALL_STATE(1029)] = 58046, - [SMALL_STATE(1030)] = 58066, - [SMALL_STATE(1031)] = 58084, - [SMALL_STATE(1032)] = 58102, - [SMALL_STATE(1033)] = 58122, - [SMALL_STATE(1034)] = 58142, - [SMALL_STATE(1035)] = 58156, - [SMALL_STATE(1036)] = 58169, - [SMALL_STATE(1037)] = 58186, - [SMALL_STATE(1038)] = 58199, - [SMALL_STATE(1039)] = 58212, - [SMALL_STATE(1040)] = 58229, - [SMALL_STATE(1041)] = 58246, - [SMALL_STATE(1042)] = 58263, - [SMALL_STATE(1043)] = 58276, - [SMALL_STATE(1044)] = 58293, - [SMALL_STATE(1045)] = 58310, - [SMALL_STATE(1046)] = 58323, - [SMALL_STATE(1047)] = 58340, - [SMALL_STATE(1048)] = 58353, - [SMALL_STATE(1049)] = 58366, - [SMALL_STATE(1050)] = 58379, - [SMALL_STATE(1051)] = 58396, - [SMALL_STATE(1052)] = 58413, - [SMALL_STATE(1053)] = 58430, - [SMALL_STATE(1054)] = 58443, - [SMALL_STATE(1055)] = 58460, - [SMALL_STATE(1056)] = 58475, - [SMALL_STATE(1057)] = 58492, - [SMALL_STATE(1058)] = 58505, - [SMALL_STATE(1059)] = 58522, - [SMALL_STATE(1060)] = 58539, - [SMALL_STATE(1061)] = 58556, - [SMALL_STATE(1062)] = 58569, - [SMALL_STATE(1063)] = 58584, - [SMALL_STATE(1064)] = 58599, - [SMALL_STATE(1065)] = 58616, - [SMALL_STATE(1066)] = 58633, - [SMALL_STATE(1067)] = 58650, - [SMALL_STATE(1068)] = 58667, - [SMALL_STATE(1069)] = 58684, - [SMALL_STATE(1070)] = 58701, - [SMALL_STATE(1071)] = 58716, - [SMALL_STATE(1072)] = 58733, - [SMALL_STATE(1073)] = 58750, - [SMALL_STATE(1074)] = 58767, - [SMALL_STATE(1075)] = 58784, - [SMALL_STATE(1076)] = 58801, - [SMALL_STATE(1077)] = 58818, - [SMALL_STATE(1078)] = 58835, - [SMALL_STATE(1079)] = 58852, - [SMALL_STATE(1080)] = 58865, - [SMALL_STATE(1081)] = 58882, - [SMALL_STATE(1082)] = 58895, - [SMALL_STATE(1083)] = 58912, - [SMALL_STATE(1084)] = 58929, - [SMALL_STATE(1085)] = 58946, - [SMALL_STATE(1086)] = 58959, - [SMALL_STATE(1087)] = 58976, - [SMALL_STATE(1088)] = 58989, - [SMALL_STATE(1089)] = 59006, - [SMALL_STATE(1090)] = 59023, - [SMALL_STATE(1091)] = 59040, - [SMALL_STATE(1092)] = 59057, - [SMALL_STATE(1093)] = 59074, - [SMALL_STATE(1094)] = 59091, - [SMALL_STATE(1095)] = 59108, - [SMALL_STATE(1096)] = 59121, - [SMALL_STATE(1097)] = 59138, - [SMALL_STATE(1098)] = 59151, - [SMALL_STATE(1099)] = 59166, - [SMALL_STATE(1100)] = 59183, - [SMALL_STATE(1101)] = 59196, - [SMALL_STATE(1102)] = 59213, - [SMALL_STATE(1103)] = 59230, - [SMALL_STATE(1104)] = 59247, - [SMALL_STATE(1105)] = 59264, - [SMALL_STATE(1106)] = 59281, - [SMALL_STATE(1107)] = 59298, - [SMALL_STATE(1108)] = 59315, - [SMALL_STATE(1109)] = 59332, - [SMALL_STATE(1110)] = 59349, - [SMALL_STATE(1111)] = 59366, - [SMALL_STATE(1112)] = 59379, - [SMALL_STATE(1113)] = 59396, - [SMALL_STATE(1114)] = 59413, - [SMALL_STATE(1115)] = 59430, - [SMALL_STATE(1116)] = 59447, - [SMALL_STATE(1117)] = 59460, - [SMALL_STATE(1118)] = 59477, - [SMALL_STATE(1119)] = 59494, - [SMALL_STATE(1120)] = 59507, - [SMALL_STATE(1121)] = 59520, - [SMALL_STATE(1122)] = 59535, - [SMALL_STATE(1123)] = 59552, - [SMALL_STATE(1124)] = 59569, - [SMALL_STATE(1125)] = 59586, - [SMALL_STATE(1126)] = 59603, - [SMALL_STATE(1127)] = 59620, - [SMALL_STATE(1128)] = 59637, - [SMALL_STATE(1129)] = 59654, - [SMALL_STATE(1130)] = 59671, - [SMALL_STATE(1131)] = 59684, - [SMALL_STATE(1132)] = 59701, - [SMALL_STATE(1133)] = 59716, - [SMALL_STATE(1134)] = 59733, - [SMALL_STATE(1135)] = 59750, - [SMALL_STATE(1136)] = 59767, - [SMALL_STATE(1137)] = 59784, - [SMALL_STATE(1138)] = 59801, - [SMALL_STATE(1139)] = 59818, - [SMALL_STATE(1140)] = 59835, - [SMALL_STATE(1141)] = 59852, - [SMALL_STATE(1142)] = 59869, - [SMALL_STATE(1143)] = 59886, - [SMALL_STATE(1144)] = 59903, - [SMALL_STATE(1145)] = 59920, - [SMALL_STATE(1146)] = 59937, - [SMALL_STATE(1147)] = 59950, - [SMALL_STATE(1148)] = 59967, - [SMALL_STATE(1149)] = 59984, - [SMALL_STATE(1150)] = 60001, - [SMALL_STATE(1151)] = 60014, - [SMALL_STATE(1152)] = 60031, - [SMALL_STATE(1153)] = 60048, - [SMALL_STATE(1154)] = 60065, - [SMALL_STATE(1155)] = 60082, - [SMALL_STATE(1156)] = 60099, - [SMALL_STATE(1157)] = 60112, - [SMALL_STATE(1158)] = 60129, - [SMALL_STATE(1159)] = 60146, - [SMALL_STATE(1160)] = 60159, - [SMALL_STATE(1161)] = 60176, - [SMALL_STATE(1162)] = 60193, - [SMALL_STATE(1163)] = 60210, - [SMALL_STATE(1164)] = 60227, - [SMALL_STATE(1165)] = 60244, - [SMALL_STATE(1166)] = 60261, - [SMALL_STATE(1167)] = 60278, - [SMALL_STATE(1168)] = 60295, - [SMALL_STATE(1169)] = 60312, - [SMALL_STATE(1170)] = 60329, - [SMALL_STATE(1171)] = 60346, - [SMALL_STATE(1172)] = 60363, - [SMALL_STATE(1173)] = 60380, - [SMALL_STATE(1174)] = 60397, - [SMALL_STATE(1175)] = 60414, - [SMALL_STATE(1176)] = 60431, - [SMALL_STATE(1177)] = 60448, - [SMALL_STATE(1178)] = 60465, - [SMALL_STATE(1179)] = 60482, - [SMALL_STATE(1180)] = 60499, - [SMALL_STATE(1181)] = 60516, - [SMALL_STATE(1182)] = 60533, - [SMALL_STATE(1183)] = 60550, - [SMALL_STATE(1184)] = 60567, - [SMALL_STATE(1185)] = 60584, - [SMALL_STATE(1186)] = 60601, - [SMALL_STATE(1187)] = 60618, - [SMALL_STATE(1188)] = 60635, - [SMALL_STATE(1189)] = 60652, - [SMALL_STATE(1190)] = 60669, - [SMALL_STATE(1191)] = 60682, - [SMALL_STATE(1192)] = 60699, - [SMALL_STATE(1193)] = 60716, - [SMALL_STATE(1194)] = 60733, - [SMALL_STATE(1195)] = 60745, - [SMALL_STATE(1196)] = 60757, - [SMALL_STATE(1197)] = 60771, - [SMALL_STATE(1198)] = 60783, - [SMALL_STATE(1199)] = 60797, - [SMALL_STATE(1200)] = 60811, - [SMALL_STATE(1201)] = 60825, - [SMALL_STATE(1202)] = 60837, - [SMALL_STATE(1203)] = 60851, - [SMALL_STATE(1204)] = 60865, - [SMALL_STATE(1205)] = 60877, - [SMALL_STATE(1206)] = 60889, - [SMALL_STATE(1207)] = 60903, - [SMALL_STATE(1208)] = 60917, - [SMALL_STATE(1209)] = 60929, - [SMALL_STATE(1210)] = 60943, - [SMALL_STATE(1211)] = 60957, - [SMALL_STATE(1212)] = 60969, - [SMALL_STATE(1213)] = 60983, - [SMALL_STATE(1214)] = 60997, - [SMALL_STATE(1215)] = 61009, - [SMALL_STATE(1216)] = 61023, - [SMALL_STATE(1217)] = 61035, - [SMALL_STATE(1218)] = 61049, - [SMALL_STATE(1219)] = 61061, - [SMALL_STATE(1220)] = 61075, - [SMALL_STATE(1221)] = 61089, - [SMALL_STATE(1222)] = 61103, - [SMALL_STATE(1223)] = 61115, - [SMALL_STATE(1224)] = 61129, - [SMALL_STATE(1225)] = 61141, - [SMALL_STATE(1226)] = 61153, - [SMALL_STATE(1227)] = 61165, - [SMALL_STATE(1228)] = 61179, - [SMALL_STATE(1229)] = 61193, - [SMALL_STATE(1230)] = 61207, - [SMALL_STATE(1231)] = 61219, - [SMALL_STATE(1232)] = 61231, - [SMALL_STATE(1233)] = 61245, - [SMALL_STATE(1234)] = 61259, - [SMALL_STATE(1235)] = 61273, - [SMALL_STATE(1236)] = 61285, - [SMALL_STATE(1237)] = 61299, - [SMALL_STATE(1238)] = 61313, - [SMALL_STATE(1239)] = 61325, - [SMALL_STATE(1240)] = 61337, - [SMALL_STATE(1241)] = 61351, - [SMALL_STATE(1242)] = 61365, - [SMALL_STATE(1243)] = 61379, - [SMALL_STATE(1244)] = 61391, - [SMALL_STATE(1245)] = 61405, - [SMALL_STATE(1246)] = 61419, - [SMALL_STATE(1247)] = 61433, - [SMALL_STATE(1248)] = 61445, - [SMALL_STATE(1249)] = 61459, - [SMALL_STATE(1250)] = 61471, - [SMALL_STATE(1251)] = 61485, - [SMALL_STATE(1252)] = 61497, - [SMALL_STATE(1253)] = 61509, - [SMALL_STATE(1254)] = 61523, - [SMALL_STATE(1255)] = 61535, - [SMALL_STATE(1256)] = 61549, - [SMALL_STATE(1257)] = 61561, - [SMALL_STATE(1258)] = 61573, - [SMALL_STATE(1259)] = 61587, - [SMALL_STATE(1260)] = 61601, - [SMALL_STATE(1261)] = 61615, - [SMALL_STATE(1262)] = 61629, - [SMALL_STATE(1263)] = 61641, - [SMALL_STATE(1264)] = 61653, - [SMALL_STATE(1265)] = 61665, - [SMALL_STATE(1266)] = 61677, - [SMALL_STATE(1267)] = 61691, - [SMALL_STATE(1268)] = 61705, - [SMALL_STATE(1269)] = 61719, - [SMALL_STATE(1270)] = 61733, - [SMALL_STATE(1271)] = 61747, - [SMALL_STATE(1272)] = 61759, - [SMALL_STATE(1273)] = 61773, - [SMALL_STATE(1274)] = 61787, - [SMALL_STATE(1275)] = 61801, - [SMALL_STATE(1276)] = 61815, - [SMALL_STATE(1277)] = 61829, - [SMALL_STATE(1278)] = 61843, - [SMALL_STATE(1279)] = 61855, - [SMALL_STATE(1280)] = 61869, - [SMALL_STATE(1281)] = 61883, - [SMALL_STATE(1282)] = 61897, - [SMALL_STATE(1283)] = 61911, - [SMALL_STATE(1284)] = 61925, - [SMALL_STATE(1285)] = 61937, - [SMALL_STATE(1286)] = 61951, - [SMALL_STATE(1287)] = 61965, - [SMALL_STATE(1288)] = 61977, - [SMALL_STATE(1289)] = 61989, - [SMALL_STATE(1290)] = 62003, - [SMALL_STATE(1291)] = 62015, - [SMALL_STATE(1292)] = 62029, - [SMALL_STATE(1293)] = 62041, - [SMALL_STATE(1294)] = 62053, - [SMALL_STATE(1295)] = 62067, - [SMALL_STATE(1296)] = 62079, - [SMALL_STATE(1297)] = 62093, - [SMALL_STATE(1298)] = 62105, - [SMALL_STATE(1299)] = 62119, - [SMALL_STATE(1300)] = 62131, - [SMALL_STATE(1301)] = 62143, - [SMALL_STATE(1302)] = 62155, - [SMALL_STATE(1303)] = 62169, - [SMALL_STATE(1304)] = 62183, - [SMALL_STATE(1305)] = 62197, - [SMALL_STATE(1306)] = 62209, - [SMALL_STATE(1307)] = 62223, - [SMALL_STATE(1308)] = 62235, - [SMALL_STATE(1309)] = 62249, - [SMALL_STATE(1310)] = 62263, - [SMALL_STATE(1311)] = 62277, - [SMALL_STATE(1312)] = 62289, - [SMALL_STATE(1313)] = 62301, - [SMALL_STATE(1314)] = 62313, - [SMALL_STATE(1315)] = 62325, - [SMALL_STATE(1316)] = 62339, - [SMALL_STATE(1317)] = 62353, - [SMALL_STATE(1318)] = 62365, - [SMALL_STATE(1319)] = 62377, - [SMALL_STATE(1320)] = 62391, - [SMALL_STATE(1321)] = 62405, - [SMALL_STATE(1322)] = 62419, - [SMALL_STATE(1323)] = 62430, - [SMALL_STATE(1324)] = 62441, - [SMALL_STATE(1325)] = 62452, - [SMALL_STATE(1326)] = 62463, - [SMALL_STATE(1327)] = 62474, - [SMALL_STATE(1328)] = 62485, - [SMALL_STATE(1329)] = 62496, - [SMALL_STATE(1330)] = 62507, - [SMALL_STATE(1331)] = 62518, - [SMALL_STATE(1332)] = 62529, - [SMALL_STATE(1333)] = 62540, - [SMALL_STATE(1334)] = 62551, - [SMALL_STATE(1335)] = 62562, - [SMALL_STATE(1336)] = 62573, - [SMALL_STATE(1337)] = 62584, - [SMALL_STATE(1338)] = 62595, - [SMALL_STATE(1339)] = 62606, - [SMALL_STATE(1340)] = 62617, - [SMALL_STATE(1341)] = 62628, - [SMALL_STATE(1342)] = 62639, - [SMALL_STATE(1343)] = 62650, - [SMALL_STATE(1344)] = 62661, - [SMALL_STATE(1345)] = 62672, - [SMALL_STATE(1346)] = 62683, - [SMALL_STATE(1347)] = 62694, - [SMALL_STATE(1348)] = 62705, - [SMALL_STATE(1349)] = 62716, - [SMALL_STATE(1350)] = 62727, - [SMALL_STATE(1351)] = 62738, - [SMALL_STATE(1352)] = 62749, - [SMALL_STATE(1353)] = 62760, - [SMALL_STATE(1354)] = 62771, - [SMALL_STATE(1355)] = 62782, - [SMALL_STATE(1356)] = 62793, - [SMALL_STATE(1357)] = 62804, - [SMALL_STATE(1358)] = 62815, - [SMALL_STATE(1359)] = 62826, - [SMALL_STATE(1360)] = 62837, - [SMALL_STATE(1361)] = 62848, - [SMALL_STATE(1362)] = 62859, - [SMALL_STATE(1363)] = 62870, - [SMALL_STATE(1364)] = 62881, - [SMALL_STATE(1365)] = 62892, - [SMALL_STATE(1366)] = 62903, - [SMALL_STATE(1367)] = 62914, - [SMALL_STATE(1368)] = 62925, - [SMALL_STATE(1369)] = 62936, - [SMALL_STATE(1370)] = 62947, - [SMALL_STATE(1371)] = 62958, - [SMALL_STATE(1372)] = 62969, - [SMALL_STATE(1373)] = 62980, - [SMALL_STATE(1374)] = 62991, - [SMALL_STATE(1375)] = 63002, - [SMALL_STATE(1376)] = 63013, - [SMALL_STATE(1377)] = 63024, - [SMALL_STATE(1378)] = 63035, - [SMALL_STATE(1379)] = 63046, - [SMALL_STATE(1380)] = 63057, - [SMALL_STATE(1381)] = 63068, - [SMALL_STATE(1382)] = 63079, - [SMALL_STATE(1383)] = 63090, - [SMALL_STATE(1384)] = 63101, - [SMALL_STATE(1385)] = 63112, - [SMALL_STATE(1386)] = 63123, - [SMALL_STATE(1387)] = 63134, - [SMALL_STATE(1388)] = 63145, - [SMALL_STATE(1389)] = 63156, - [SMALL_STATE(1390)] = 63167, - [SMALL_STATE(1391)] = 63178, - [SMALL_STATE(1392)] = 63189, - [SMALL_STATE(1393)] = 63200, - [SMALL_STATE(1394)] = 63211, - [SMALL_STATE(1395)] = 63222, - [SMALL_STATE(1396)] = 63233, - [SMALL_STATE(1397)] = 63244, - [SMALL_STATE(1398)] = 63255, - [SMALL_STATE(1399)] = 63266, - [SMALL_STATE(1400)] = 63277, - [SMALL_STATE(1401)] = 63288, - [SMALL_STATE(1402)] = 63299, - [SMALL_STATE(1403)] = 63310, - [SMALL_STATE(1404)] = 63321, - [SMALL_STATE(1405)] = 63332, - [SMALL_STATE(1406)] = 63343, - [SMALL_STATE(1407)] = 63354, - [SMALL_STATE(1408)] = 63365, - [SMALL_STATE(1409)] = 63376, - [SMALL_STATE(1410)] = 63387, - [SMALL_STATE(1411)] = 63398, - [SMALL_STATE(1412)] = 63409, - [SMALL_STATE(1413)] = 63420, - [SMALL_STATE(1414)] = 63431, - [SMALL_STATE(1415)] = 63442, - [SMALL_STATE(1416)] = 63453, - [SMALL_STATE(1417)] = 63464, - [SMALL_STATE(1418)] = 63475, - [SMALL_STATE(1419)] = 63486, - [SMALL_STATE(1420)] = 63497, - [SMALL_STATE(1421)] = 63508, - [SMALL_STATE(1422)] = 63519, - [SMALL_STATE(1423)] = 63530, - [SMALL_STATE(1424)] = 63541, - [SMALL_STATE(1425)] = 63552, - [SMALL_STATE(1426)] = 63563, - [SMALL_STATE(1427)] = 63574, - [SMALL_STATE(1428)] = 63585, - [SMALL_STATE(1429)] = 63596, - [SMALL_STATE(1430)] = 63607, - [SMALL_STATE(1431)] = 63618, - [SMALL_STATE(1432)] = 63629, - [SMALL_STATE(1433)] = 63640, - [SMALL_STATE(1434)] = 63651, - [SMALL_STATE(1435)] = 63662, - [SMALL_STATE(1436)] = 63673, + [SMALL_STATE(11)] = 455, + [SMALL_STATE(12)] = 581, + [SMALL_STATE(13)] = 707, + [SMALL_STATE(14)] = 773, + [SMALL_STATE(15)] = 839, + [SMALL_STATE(16)] = 965, + [SMALL_STATE(17)] = 1031, + [SMALL_STATE(18)] = 1101, + [SMALL_STATE(19)] = 1227, + [SMALL_STATE(20)] = 1353, + [SMALL_STATE(21)] = 1479, + [SMALL_STATE(22)] = 1605, + [SMALL_STATE(23)] = 1731, + [SMALL_STATE(24)] = 1857, + [SMALL_STATE(25)] = 1983, + [SMALL_STATE(26)] = 2049, + [SMALL_STATE(27)] = 2175, + [SMALL_STATE(28)] = 2241, + [SMALL_STATE(29)] = 2307, + [SMALL_STATE(30)] = 2373, + [SMALL_STATE(31)] = 2499, + [SMALL_STATE(32)] = 2565, + [SMALL_STATE(33)] = 2691, + [SMALL_STATE(34)] = 2817, + [SMALL_STATE(35)] = 2943, + [SMALL_STATE(36)] = 3069, + [SMALL_STATE(37)] = 3139, + [SMALL_STATE(38)] = 3205, + [SMALL_STATE(39)] = 3331, + [SMALL_STATE(40)] = 3457, + [SMALL_STATE(41)] = 3527, + [SMALL_STATE(42)] = 3653, + [SMALL_STATE(43)] = 3779, + [SMALL_STATE(44)] = 3905, + [SMALL_STATE(45)] = 4031, + [SMALL_STATE(46)] = 4097, + [SMALL_STATE(47)] = 4223, + [SMALL_STATE(48)] = 4289, + [SMALL_STATE(49)] = 4415, + [SMALL_STATE(50)] = 4541, + [SMALL_STATE(51)] = 4607, + [SMALL_STATE(52)] = 4733, + [SMALL_STATE(53)] = 4859, + [SMALL_STATE(54)] = 4985, + [SMALL_STATE(55)] = 5111, + [SMALL_STATE(56)] = 5177, + [SMALL_STATE(57)] = 5303, + [SMALL_STATE(58)] = 5369, + [SMALL_STATE(59)] = 5492, + [SMALL_STATE(60)] = 5557, + [SMALL_STATE(61)] = 5680, + [SMALL_STATE(62)] = 5745, + [SMALL_STATE(63)] = 5868, + [SMALL_STATE(64)] = 5991, + [SMALL_STATE(65)] = 6114, + [SMALL_STATE(66)] = 6179, + [SMALL_STATE(67)] = 6302, + [SMALL_STATE(68)] = 6425, + [SMALL_STATE(69)] = 6548, + [SMALL_STATE(70)] = 6671, + [SMALL_STATE(71)] = 6736, + [SMALL_STATE(72)] = 6859, + [SMALL_STATE(73)] = 6924, + [SMALL_STATE(74)] = 6991, + [SMALL_STATE(75)] = 7058, + [SMALL_STATE(76)] = 7125, + [SMALL_STATE(77)] = 7248, + [SMALL_STATE(78)] = 7371, + [SMALL_STATE(79)] = 7494, + [SMALL_STATE(80)] = 7559, + [SMALL_STATE(81)] = 7626, + [SMALL_STATE(82)] = 7749, + [SMALL_STATE(83)] = 7814, + [SMALL_STATE(84)] = 7937, + [SMALL_STATE(85)] = 8002, + [SMALL_STATE(86)] = 8067, + [SMALL_STATE(87)] = 8131, + [SMALL_STATE(88)] = 8195, + [SMALL_STATE(89)] = 8273, + [SMALL_STATE(90)] = 8337, + [SMALL_STATE(91)] = 8463, + [SMALL_STATE(92)] = 8589, + [SMALL_STATE(93)] = 8669, + [SMALL_STATE(94)] = 8741, + [SMALL_STATE(95)] = 8823, + [SMALL_STATE(96)] = 8891, + [SMALL_STATE(97)] = 8955, + [SMALL_STATE(98)] = 9019, + [SMALL_STATE(99)] = 9083, + [SMALL_STATE(100)] = 9157, + [SMALL_STATE(101)] = 9241, + [SMALL_STATE(102)] = 9325, + [SMALL_STATE(103)] = 9409, + [SMALL_STATE(104)] = 9473, + [SMALL_STATE(105)] = 9537, + [SMALL_STATE(106)] = 9601, + [SMALL_STATE(107)] = 9665, + [SMALL_STATE(108)] = 9749, + [SMALL_STATE(109)] = 9875, + [SMALL_STATE(110)] = 9939, + [SMALL_STATE(111)] = 10003, + [SMALL_STATE(112)] = 10067, + [SMALL_STATE(113)] = 10193, + [SMALL_STATE(114)] = 10277, + [SMALL_STATE(115)] = 10341, + [SMALL_STATE(116)] = 10405, + [SMALL_STATE(117)] = 10469, + [SMALL_STATE(118)] = 10553, + [SMALL_STATE(119)] = 10679, + [SMALL_STATE(120)] = 10743, + [SMALL_STATE(121)] = 10807, + [SMALL_STATE(122)] = 10871, + [SMALL_STATE(123)] = 10955, + [SMALL_STATE(124)] = 11078, + [SMALL_STATE(125)] = 11201, + [SMALL_STATE(126)] = 11324, + [SMALL_STATE(127)] = 11447, + [SMALL_STATE(128)] = 11570, + [SMALL_STATE(129)] = 11633, + [SMALL_STATE(130)] = 11696, + [SMALL_STATE(131)] = 11819, + [SMALL_STATE(132)] = 11942, + [SMALL_STATE(133)] = 12065, + [SMALL_STATE(134)] = 12188, + [SMALL_STATE(135)] = 12311, + [SMALL_STATE(136)] = 12434, + [SMALL_STATE(137)] = 12497, + [SMALL_STATE(138)] = 12620, + [SMALL_STATE(139)] = 12743, + [SMALL_STATE(140)] = 12866, + [SMALL_STATE(141)] = 12929, + [SMALL_STATE(142)] = 13052, + [SMALL_STATE(143)] = 13118, + [SMALL_STATE(144)] = 13238, + [SMALL_STATE(145)] = 13299, + [SMALL_STATE(146)] = 13360, + [SMALL_STATE(147)] = 13421, + [SMALL_STATE(148)] = 13482, + [SMALL_STATE(149)] = 13543, + [SMALL_STATE(150)] = 13604, + [SMALL_STATE(151)] = 13665, + [SMALL_STATE(152)] = 13726, + [SMALL_STATE(153)] = 13787, + [SMALL_STATE(154)] = 13848, + [SMALL_STATE(155)] = 13909, + [SMALL_STATE(156)] = 13974, + [SMALL_STATE(157)] = 14039, + [SMALL_STATE(158)] = 14100, + [SMALL_STATE(159)] = 14160, + [SMALL_STATE(160)] = 14222, + [SMALL_STATE(161)] = 14282, + [SMALL_STATE(162)] = 14396, + [SMALL_STATE(163)] = 14510, + [SMALL_STATE(164)] = 14624, + [SMALL_STATE(165)] = 14738, + [SMALL_STATE(166)] = 14798, + [SMALL_STATE(167)] = 14912, + [SMALL_STATE(168)] = 15026, + [SMALL_STATE(169)] = 15088, + [SMALL_STATE(170)] = 15148, + [SMALL_STATE(171)] = 15262, + [SMALL_STATE(172)] = 15376, + [SMALL_STATE(173)] = 15438, + [SMALL_STATE(174)] = 15498, + [SMALL_STATE(175)] = 15558, + [SMALL_STATE(176)] = 15672, + [SMALL_STATE(177)] = 15786, + [SMALL_STATE(178)] = 15846, + [SMALL_STATE(179)] = 15960, + [SMALL_STATE(180)] = 16020, + [SMALL_STATE(181)] = 16079, + [SMALL_STATE(182)] = 16190, + [SMALL_STATE(183)] = 16249, + [SMALL_STATE(184)] = 16360, + [SMALL_STATE(185)] = 16419, + [SMALL_STATE(186)] = 16530, + [SMALL_STATE(187)] = 16641, + [SMALL_STATE(188)] = 16752, + [SMALL_STATE(189)] = 16863, + [SMALL_STATE(190)] = 16974, + [SMALL_STATE(191)] = 17085, + [SMALL_STATE(192)] = 17196, + [SMALL_STATE(193)] = 17307, + [SMALL_STATE(194)] = 17418, + [SMALL_STATE(195)] = 17529, + [SMALL_STATE(196)] = 17640, + [SMALL_STATE(197)] = 17751, + [SMALL_STATE(198)] = 17810, + [SMALL_STATE(199)] = 17869, + [SMALL_STATE(200)] = 17980, + [SMALL_STATE(201)] = 18091, + [SMALL_STATE(202)] = 18202, + [SMALL_STATE(203)] = 18261, + [SMALL_STATE(204)] = 18320, + [SMALL_STATE(205)] = 18431, + [SMALL_STATE(206)] = 18542, + [SMALL_STATE(207)] = 18653, + [SMALL_STATE(208)] = 18764, + [SMALL_STATE(209)] = 18823, + [SMALL_STATE(210)] = 18882, + [SMALL_STATE(211)] = 18941, + [SMALL_STATE(212)] = 19000, + [SMALL_STATE(213)] = 19059, + [SMALL_STATE(214)] = 19118, + [SMALL_STATE(215)] = 19177, + [SMALL_STATE(216)] = 19236, + [SMALL_STATE(217)] = 19347, + [SMALL_STATE(218)] = 19458, + [SMALL_STATE(219)] = 19517, + [SMALL_STATE(220)] = 19628, + [SMALL_STATE(221)] = 19739, + [SMALL_STATE(222)] = 19847, + [SMALL_STATE(223)] = 19955, + [SMALL_STATE(224)] = 20063, + [SMALL_STATE(225)] = 20171, + [SMALL_STATE(226)] = 20279, + [SMALL_STATE(227)] = 20387, + [SMALL_STATE(228)] = 20495, + [SMALL_STATE(229)] = 20603, + [SMALL_STATE(230)] = 20715, + [SMALL_STATE(231)] = 20823, + [SMALL_STATE(232)] = 20931, + [SMALL_STATE(233)] = 21039, + [SMALL_STATE(234)] = 21147, + [SMALL_STATE(235)] = 21255, + [SMALL_STATE(236)] = 21367, + [SMALL_STATE(237)] = 21475, + [SMALL_STATE(238)] = 21583, + [SMALL_STATE(239)] = 21691, + [SMALL_STATE(240)] = 21799, + [SMALL_STATE(241)] = 21907, + [SMALL_STATE(242)] = 22015, + [SMALL_STATE(243)] = 22123, + [SMALL_STATE(244)] = 22231, + [SMALL_STATE(245)] = 22339, + [SMALL_STATE(246)] = 22451, + [SMALL_STATE(247)] = 22559, + [SMALL_STATE(248)] = 22667, + [SMALL_STATE(249)] = 22775, + [SMALL_STATE(250)] = 22883, + [SMALL_STATE(251)] = 22991, + [SMALL_STATE(252)] = 23099, + [SMALL_STATE(253)] = 23207, + [SMALL_STATE(254)] = 23315, + [SMALL_STATE(255)] = 23377, + [SMALL_STATE(256)] = 23485, + [SMALL_STATE(257)] = 23593, + [SMALL_STATE(258)] = 23701, + [SMALL_STATE(259)] = 23813, + [SMALL_STATE(260)] = 23921, + [SMALL_STATE(261)] = 24029, + [SMALL_STATE(262)] = 24141, + [SMALL_STATE(263)] = 24249, + [SMALL_STATE(264)] = 24357, + [SMALL_STATE(265)] = 24469, + [SMALL_STATE(266)] = 24577, + [SMALL_STATE(267)] = 24685, + [SMALL_STATE(268)] = 24793, + [SMALL_STATE(269)] = 24901, + [SMALL_STATE(270)] = 25009, + [SMALL_STATE(271)] = 25117, + [SMALL_STATE(272)] = 25225, + [SMALL_STATE(273)] = 25333, + [SMALL_STATE(274)] = 25441, + [SMALL_STATE(275)] = 25549, + [SMALL_STATE(276)] = 25657, + [SMALL_STATE(277)] = 25765, + [SMALL_STATE(278)] = 25873, + [SMALL_STATE(279)] = 25981, + [SMALL_STATE(280)] = 26089, + [SMALL_STATE(281)] = 26197, + [SMALL_STATE(282)] = 26305, + [SMALL_STATE(283)] = 26413, + [SMALL_STATE(284)] = 26521, + [SMALL_STATE(285)] = 26629, + [SMALL_STATE(286)] = 26741, + [SMALL_STATE(287)] = 26849, + [SMALL_STATE(288)] = 26957, + [SMALL_STATE(289)] = 27065, + [SMALL_STATE(290)] = 27173, + [SMALL_STATE(291)] = 27281, + [SMALL_STATE(292)] = 27389, + [SMALL_STATE(293)] = 27501, + [SMALL_STATE(294)] = 27609, + [SMALL_STATE(295)] = 27717, + [SMALL_STATE(296)] = 27825, + [SMALL_STATE(297)] = 27933, + [SMALL_STATE(298)] = 28041, + [SMALL_STATE(299)] = 28149, + [SMALL_STATE(300)] = 28257, + [SMALL_STATE(301)] = 28365, + [SMALL_STATE(302)] = 28473, + [SMALL_STATE(303)] = 28585, + [SMALL_STATE(304)] = 28697, + [SMALL_STATE(305)] = 28809, + [SMALL_STATE(306)] = 28917, + [SMALL_STATE(307)] = 29025, + [SMALL_STATE(308)] = 29133, + [SMALL_STATE(309)] = 29241, + [SMALL_STATE(310)] = 29349, + [SMALL_STATE(311)] = 29457, + [SMALL_STATE(312)] = 29565, + [SMALL_STATE(313)] = 29673, + [SMALL_STATE(314)] = 29785, + [SMALL_STATE(315)] = 29893, + [SMALL_STATE(316)] = 30001, + [SMALL_STATE(317)] = 30113, + [SMALL_STATE(318)] = 30221, + [SMALL_STATE(319)] = 30329, + [SMALL_STATE(320)] = 30387, + [SMALL_STATE(321)] = 30495, + [SMALL_STATE(322)] = 30603, + [SMALL_STATE(323)] = 30715, + [SMALL_STATE(324)] = 30827, + [SMALL_STATE(325)] = 30936, + [SMALL_STATE(326)] = 30995, + [SMALL_STATE(327)] = 31069, + [SMALL_STATE(328)] = 31125, + [SMALL_STATE(329)] = 31231, + [SMALL_STATE(330)] = 31337, + [SMALL_STATE(331)] = 31443, + [SMALL_STATE(332)] = 31507, + [SMALL_STATE(333)] = 31613, + [SMALL_STATE(334)] = 31689, + [SMALL_STATE(335)] = 31795, + [SMALL_STATE(336)] = 31861, + [SMALL_STATE(337)] = 31921, + [SMALL_STATE(338)] = 31997, + [SMALL_STATE(339)] = 32103, + [SMALL_STATE(340)] = 32179, + [SMALL_STATE(341)] = 32285, + [SMALL_STATE(342)] = 32357, + [SMALL_STATE(343)] = 32463, + [SMALL_STATE(344)] = 32569, + [SMALL_STATE(345)] = 32639, + [SMALL_STATE(346)] = 32745, + [SMALL_STATE(347)] = 32821, + [SMALL_STATE(348)] = 32927, + [SMALL_STATE(349)] = 33003, + [SMALL_STATE(350)] = 33079, + [SMALL_STATE(351)] = 33155, + [SMALL_STATE(352)] = 33261, + [SMALL_STATE(353)] = 33316, + [SMALL_STATE(354)] = 33371, + [SMALL_STATE(355)] = 33426, + [SMALL_STATE(356)] = 33481, + [SMALL_STATE(357)] = 33534, + [SMALL_STATE(358)] = 33587, + [SMALL_STATE(359)] = 33640, + [SMALL_STATE(360)] = 33695, + [SMALL_STATE(361)] = 33745, + [SMALL_STATE(362)] = 33799, + [SMALL_STATE(363)] = 33849, + [SMALL_STATE(364)] = 33899, + [SMALL_STATE(365)] = 33949, + [SMALL_STATE(366)] = 33999, + [SMALL_STATE(367)] = 34053, + [SMALL_STATE(368)] = 34103, + [SMALL_STATE(369)] = 34153, + [SMALL_STATE(370)] = 34203, + [SMALL_STATE(371)] = 34253, + [SMALL_STATE(372)] = 34303, + [SMALL_STATE(373)] = 34357, + [SMALL_STATE(374)] = 34407, + [SMALL_STATE(375)] = 34457, + [SMALL_STATE(376)] = 34507, + [SMALL_STATE(377)] = 34557, + [SMALL_STATE(378)] = 34607, + [SMALL_STATE(379)] = 34657, + [SMALL_STATE(380)] = 34706, + [SMALL_STATE(381)] = 34757, + [SMALL_STATE(382)] = 34808, + [SMALL_STATE(383)] = 34859, + [SMALL_STATE(384)] = 34908, + [SMALL_STATE(385)] = 34957, + [SMALL_STATE(386)] = 35006, + [SMALL_STATE(387)] = 35055, + [SMALL_STATE(388)] = 35104, + [SMALL_STATE(389)] = 35153, + [SMALL_STATE(390)] = 35202, + [SMALL_STATE(391)] = 35253, + [SMALL_STATE(392)] = 35305, + [SMALL_STATE(393)] = 35373, + [SMALL_STATE(394)] = 35441, + [SMALL_STATE(395)] = 35509, + [SMALL_STATE(396)] = 35557, + [SMALL_STATE(397)] = 35605, + [SMALL_STATE(398)] = 35653, + [SMALL_STATE(399)] = 35721, + [SMALL_STATE(400)] = 35769, + [SMALL_STATE(401)] = 35817, + [SMALL_STATE(402)] = 35865, + [SMALL_STATE(403)] = 35913, + [SMALL_STATE(404)] = 35961, + [SMALL_STATE(405)] = 36009, + [SMALL_STATE(406)] = 36057, + [SMALL_STATE(407)] = 36105, + [SMALL_STATE(408)] = 36173, + [SMALL_STATE(409)] = 36221, + [SMALL_STATE(410)] = 36269, + [SMALL_STATE(411)] = 36317, + [SMALL_STATE(412)] = 36365, + [SMALL_STATE(413)] = 36431, + [SMALL_STATE(414)] = 36495, + [SMALL_STATE(415)] = 36557, + [SMALL_STATE(416)] = 36615, + [SMALL_STATE(417)] = 36671, + [SMALL_STATE(418)] = 36719, + [SMALL_STATE(419)] = 36767, + [SMALL_STATE(420)] = 36835, + [SMALL_STATE(421)] = 36883, + [SMALL_STATE(422)] = 36931, + [SMALL_STATE(423)] = 36981, + [SMALL_STATE(424)] = 37031, + [SMALL_STATE(425)] = 37081, + [SMALL_STATE(426)] = 37131, + [SMALL_STATE(427)] = 37176, + [SMALL_STATE(428)] = 37221, + [SMALL_STATE(429)] = 37266, + [SMALL_STATE(430)] = 37315, + [SMALL_STATE(431)] = 37360, + [SMALL_STATE(432)] = 37405, + [SMALL_STATE(433)] = 37450, + [SMALL_STATE(434)] = 37495, + [SMALL_STATE(435)] = 37540, + [SMALL_STATE(436)] = 37589, + [SMALL_STATE(437)] = 37634, + [SMALL_STATE(438)] = 37683, + [SMALL_STATE(439)] = 37728, + [SMALL_STATE(440)] = 37773, + [SMALL_STATE(441)] = 37818, + [SMALL_STATE(442)] = 37867, + [SMALL_STATE(443)] = 37911, + [SMALL_STATE(444)] = 37957, + [SMALL_STATE(445)] = 38005, + [SMALL_STATE(446)] = 38053, + [SMALL_STATE(447)] = 38099, + [SMALL_STATE(448)] = 38143, + [SMALL_STATE(449)] = 38187, + [SMALL_STATE(450)] = 38233, + [SMALL_STATE(451)] = 38277, + [SMALL_STATE(452)] = 38321, + [SMALL_STATE(453)] = 38367, + [SMALL_STATE(454)] = 38411, + [SMALL_STATE(455)] = 38455, + [SMALL_STATE(456)] = 38539, + [SMALL_STATE(457)] = 38623, + [SMALL_STATE(458)] = 38667, + [SMALL_STATE(459)] = 38751, + [SMALL_STATE(460)] = 38835, + [SMALL_STATE(461)] = 38879, + [SMALL_STATE(462)] = 38923, + [SMALL_STATE(463)] = 39007, + [SMALL_STATE(464)] = 39055, + [SMALL_STATE(465)] = 39098, + [SMALL_STATE(466)] = 39141, + [SMALL_STATE(467)] = 39198, + [SMALL_STATE(468)] = 39241, + [SMALL_STATE(469)] = 39298, + [SMALL_STATE(470)] = 39381, + [SMALL_STATE(471)] = 39424, + [SMALL_STATE(472)] = 39481, + [SMALL_STATE(473)] = 39562, + [SMALL_STATE(474)] = 39605, + [SMALL_STATE(475)] = 39650, + [SMALL_STATE(476)] = 39707, + [SMALL_STATE(477)] = 39750, + [SMALL_STATE(478)] = 39793, + [SMALL_STATE(479)] = 39836, + [SMALL_STATE(480)] = 39879, + [SMALL_STATE(481)] = 39922, + [SMALL_STATE(482)] = 39965, + [SMALL_STATE(483)] = 40008, + [SMALL_STATE(484)] = 40051, + [SMALL_STATE(485)] = 40096, + [SMALL_STATE(486)] = 40139, + [SMALL_STATE(487)] = 40182, + [SMALL_STATE(488)] = 40225, + [SMALL_STATE(489)] = 40268, + [SMALL_STATE(490)] = 40315, + [SMALL_STATE(491)] = 40358, + [SMALL_STATE(492)] = 40401, + [SMALL_STATE(493)] = 40462, + [SMALL_STATE(494)] = 40505, + [SMALL_STATE(495)] = 40550, + [SMALL_STATE(496)] = 40593, + [SMALL_STATE(497)] = 40636, + [SMALL_STATE(498)] = 40683, + [SMALL_STATE(499)] = 40726, + [SMALL_STATE(500)] = 40773, + [SMALL_STATE(501)] = 40816, + [SMALL_STATE(502)] = 40899, + [SMALL_STATE(503)] = 40960, + [SMALL_STATE(504)] = 41007, + [SMALL_STATE(505)] = 41050, + [SMALL_STATE(506)] = 41093, + [SMALL_STATE(507)] = 41136, + [SMALL_STATE(508)] = 41193, + [SMALL_STATE(509)] = 41254, + [SMALL_STATE(510)] = 41315, + [SMALL_STATE(511)] = 41398, + [SMALL_STATE(512)] = 41449, + [SMALL_STATE(513)] = 41492, + [SMALL_STATE(514)] = 41535, + [SMALL_STATE(515)] = 41588, + [SMALL_STATE(516)] = 41669, + [SMALL_STATE(517)] = 41716, + [SMALL_STATE(518)] = 41773, + [SMALL_STATE(519)] = 41816, + [SMALL_STATE(520)] = 41871, + [SMALL_STATE(521)] = 41928, + [SMALL_STATE(522)] = 41987, + [SMALL_STATE(523)] = 42029, + [SMALL_STATE(524)] = 42071, + [SMALL_STATE(525)] = 42113, + [SMALL_STATE(526)] = 42155, + [SMALL_STATE(527)] = 42197, + [SMALL_STATE(528)] = 42239, + [SMALL_STATE(529)] = 42281, + [SMALL_STATE(530)] = 42323, + [SMALL_STATE(531)] = 42365, + [SMALL_STATE(532)] = 42407, + [SMALL_STATE(533)] = 42449, + [SMALL_STATE(534)] = 42491, + [SMALL_STATE(535)] = 42563, + [SMALL_STATE(536)] = 42605, + [SMALL_STATE(537)] = 42647, + [SMALL_STATE(538)] = 42703, + [SMALL_STATE(539)] = 42775, + [SMALL_STATE(540)] = 42817, + [SMALL_STATE(541)] = 42889, + [SMALL_STATE(542)] = 42931, + [SMALL_STATE(543)] = 43003, + [SMALL_STATE(544)] = 43045, + [SMALL_STATE(545)] = 43087, + [SMALL_STATE(546)] = 43129, + [SMALL_STATE(547)] = 43185, + [SMALL_STATE(548)] = 43227, + [SMALL_STATE(549)] = 43269, + [SMALL_STATE(550)] = 43311, + [SMALL_STATE(551)] = 43353, + [SMALL_STATE(552)] = 43409, + [SMALL_STATE(553)] = 43481, + [SMALL_STATE(554)] = 43523, + [SMALL_STATE(555)] = 43565, + [SMALL_STATE(556)] = 43607, + [SMALL_STATE(557)] = 43649, + [SMALL_STATE(558)] = 43691, + [SMALL_STATE(559)] = 43733, + [SMALL_STATE(560)] = 43805, + [SMALL_STATE(561)] = 43877, + [SMALL_STATE(562)] = 43949, + [SMALL_STATE(563)] = 43991, + [SMALL_STATE(564)] = 44063, + [SMALL_STATE(565)] = 44105, + [SMALL_STATE(566)] = 44147, + [SMALL_STATE(567)] = 44189, + [SMALL_STATE(568)] = 44261, + [SMALL_STATE(569)] = 44305, + [SMALL_STATE(570)] = 44349, + [SMALL_STATE(571)] = 44391, + [SMALL_STATE(572)] = 44433, + [SMALL_STATE(573)] = 44475, + [SMALL_STATE(574)] = 44517, + [SMALL_STATE(575)] = 44559, + [SMALL_STATE(576)] = 44601, + [SMALL_STATE(577)] = 44643, + [SMALL_STATE(578)] = 44685, + [SMALL_STATE(579)] = 44727, + [SMALL_STATE(580)] = 44769, + [SMALL_STATE(581)] = 44813, + [SMALL_STATE(582)] = 44855, + [SMALL_STATE(583)] = 44897, + [SMALL_STATE(584)] = 44939, + [SMALL_STATE(585)] = 44981, + [SMALL_STATE(586)] = 45023, + [SMALL_STATE(587)] = 45065, + [SMALL_STATE(588)] = 45107, + [SMALL_STATE(589)] = 45149, + [SMALL_STATE(590)] = 45191, + [SMALL_STATE(591)] = 45233, + [SMALL_STATE(592)] = 45275, + [SMALL_STATE(593)] = 45317, + [SMALL_STATE(594)] = 45359, + [SMALL_STATE(595)] = 45401, + [SMALL_STATE(596)] = 45443, + [SMALL_STATE(597)] = 45485, + [SMALL_STATE(598)] = 45527, + [SMALL_STATE(599)] = 45569, + [SMALL_STATE(600)] = 45611, + [SMALL_STATE(601)] = 45653, + [SMALL_STATE(602)] = 45695, + [SMALL_STATE(603)] = 45737, + [SMALL_STATE(604)] = 45779, + [SMALL_STATE(605)] = 45854, + [SMALL_STATE(606)] = 45931, + [SMALL_STATE(607)] = 45984, + [SMALL_STATE(608)] = 46061, + [SMALL_STATE(609)] = 46138, + [SMALL_STATE(610)] = 46215, + [SMALL_STATE(611)] = 46290, + [SMALL_STATE(612)] = 46343, + [SMALL_STATE(613)] = 46420, + [SMALL_STATE(614)] = 46465, + [SMALL_STATE(615)] = 46518, + [SMALL_STATE(616)] = 46595, + [SMALL_STATE(617)] = 46672, + [SMALL_STATE(618)] = 46746, + [SMALL_STATE(619)] = 46820, + [SMALL_STATE(620)] = 46894, + [SMALL_STATE(621)] = 46968, + [SMALL_STATE(622)] = 47042, + [SMALL_STATE(623)] = 47116, + [SMALL_STATE(624)] = 47174, + [SMALL_STATE(625)] = 47248, + [SMALL_STATE(626)] = 47322, + [SMALL_STATE(627)] = 47393, + [SMALL_STATE(628)] = 47464, + [SMALL_STATE(629)] = 47535, + [SMALL_STATE(630)] = 47598, + [SMALL_STATE(631)] = 47637, + [SMALL_STATE(632)] = 47708, + [SMALL_STATE(633)] = 47747, + [SMALL_STATE(634)] = 47810, + [SMALL_STATE(635)] = 47849, + [SMALL_STATE(636)] = 47912, + [SMALL_STATE(637)] = 47951, + [SMALL_STATE(638)] = 47990, + [SMALL_STATE(639)] = 48033, + [SMALL_STATE(640)] = 48072, + [SMALL_STATE(641)] = 48111, + [SMALL_STATE(642)] = 48174, + [SMALL_STATE(643)] = 48237, + [SMALL_STATE(644)] = 48276, + [SMALL_STATE(645)] = 48347, + [SMALL_STATE(646)] = 48418, + [SMALL_STATE(647)] = 48489, + [SMALL_STATE(648)] = 48560, + [SMALL_STATE(649)] = 48631, + [SMALL_STATE(650)] = 48670, + [SMALL_STATE(651)] = 48741, + [SMALL_STATE(652)] = 48780, + [SMALL_STATE(653)] = 48851, + [SMALL_STATE(654)] = 48890, + [SMALL_STATE(655)] = 48929, + [SMALL_STATE(656)] = 49000, + [SMALL_STATE(657)] = 49071, + [SMALL_STATE(658)] = 49110, + [SMALL_STATE(659)] = 49149, + [SMALL_STATE(660)] = 49188, + [SMALL_STATE(661)] = 49227, + [SMALL_STATE(662)] = 49266, + [SMALL_STATE(663)] = 49305, + [SMALL_STATE(664)] = 49376, + [SMALL_STATE(665)] = 49442, + [SMALL_STATE(666)] = 49510, + [SMALL_STATE(667)] = 49548, + [SMALL_STATE(668)] = 49614, + [SMALL_STATE(669)] = 49652, + [SMALL_STATE(670)] = 49718, + [SMALL_STATE(671)] = 49760, + [SMALL_STATE(672)] = 49798, + [SMALL_STATE(673)] = 49864, + [SMALL_STATE(674)] = 49902, + [SMALL_STATE(675)] = 49968, + [SMALL_STATE(676)] = 50028, + [SMALL_STATE(677)] = 50066, + [SMALL_STATE(678)] = 50134, + [SMALL_STATE(679)] = 50172, + [SMALL_STATE(680)] = 50238, + [SMALL_STATE(681)] = 50276, + [SMALL_STATE(682)] = 50314, + [SMALL_STATE(683)] = 50374, + [SMALL_STATE(684)] = 50412, + [SMALL_STATE(685)] = 50450, + [SMALL_STATE(686)] = 50510, + [SMALL_STATE(687)] = 50548, + [SMALL_STATE(688)] = 50614, + [SMALL_STATE(689)] = 50682, + [SMALL_STATE(690)] = 50742, + [SMALL_STATE(691)] = 50802, + [SMALL_STATE(692)] = 50868, + [SMALL_STATE(693)] = 50906, + [SMALL_STATE(694)] = 50972, + [SMALL_STATE(695)] = 51014, + [SMALL_STATE(696)] = 51080, + [SMALL_STATE(697)] = 51118, + [SMALL_STATE(698)] = 51156, + [SMALL_STATE(699)] = 51216, + [SMALL_STATE(700)] = 51258, + [SMALL_STATE(701)] = 51296, + [SMALL_STATE(702)] = 51351, + [SMALL_STATE(703)] = 51414, + [SMALL_STATE(704)] = 51477, + [SMALL_STATE(705)] = 51540, + [SMALL_STATE(706)] = 51577, + [SMALL_STATE(707)] = 51614, + [SMALL_STATE(708)] = 51651, + [SMALL_STATE(709)] = 51688, + [SMALL_STATE(710)] = 51751, + [SMALL_STATE(711)] = 51788, + [SMALL_STATE(712)] = 51825, + [SMALL_STATE(713)] = 51864, + [SMALL_STATE(714)] = 51903, + [SMALL_STATE(715)] = 51942, + [SMALL_STATE(716)] = 52007, + [SMALL_STATE(717)] = 52046, + [SMALL_STATE(718)] = 52109, + [SMALL_STATE(719)] = 52172, + [SMALL_STATE(720)] = 52227, + [SMALL_STATE(721)] = 52292, + [SMALL_STATE(722)] = 52355, + [SMALL_STATE(723)] = 52392, + [SMALL_STATE(724)] = 52455, + [SMALL_STATE(725)] = 52520, + [SMALL_STATE(726)] = 52583, + [SMALL_STATE(727)] = 52620, + [SMALL_STATE(728)] = 52683, + [SMALL_STATE(729)] = 52738, + [SMALL_STATE(730)] = 52798, + [SMALL_STATE(731)] = 52852, + [SMALL_STATE(732)] = 52906, + [SMALL_STATE(733)] = 52966, + [SMALL_STATE(734)] = 53020, + [SMALL_STATE(735)] = 53074, + [SMALL_STATE(736)] = 53134, + [SMALL_STATE(737)] = 53188, + [SMALL_STATE(738)] = 53228, + [SMALL_STATE(739)] = 53264, + [SMALL_STATE(740)] = 53300, + [SMALL_STATE(741)] = 53360, + [SMALL_STATE(742)] = 53396, + [SMALL_STATE(743)] = 53456, + [SMALL_STATE(744)] = 53492, + [SMALL_STATE(745)] = 53528, + [SMALL_STATE(746)] = 53564, + [SMALL_STATE(747)] = 53624, + [SMALL_STATE(748)] = 53660, + [SMALL_STATE(749)] = 53710, + [SMALL_STATE(750)] = 53764, + [SMALL_STATE(751)] = 53824, + [SMALL_STATE(752)] = 53860, + [SMALL_STATE(753)] = 53914, + [SMALL_STATE(754)] = 53974, + [SMALL_STATE(755)] = 54010, + [SMALL_STATE(756)] = 54064, + [SMALL_STATE(757)] = 54100, + [SMALL_STATE(758)] = 54154, + [SMALL_STATE(759)] = 54206, + [SMALL_STATE(760)] = 54242, + [SMALL_STATE(761)] = 54296, + [SMALL_STATE(762)] = 54350, + [SMALL_STATE(763)] = 54410, + [SMALL_STATE(764)] = 54446, + [SMALL_STATE(765)] = 54506, + [SMALL_STATE(766)] = 54560, + [SMALL_STATE(767)] = 54614, + [SMALL_STATE(768)] = 54674, + [SMALL_STATE(769)] = 54728, + [SMALL_STATE(770)] = 54776, + [SMALL_STATE(771)] = 54830, + [SMALL_STATE(772)] = 54876, + [SMALL_STATE(773)] = 54936, + [SMALL_STATE(774)] = 54980, + [SMALL_STATE(775)] = 55016, + [SMALL_STATE(776)] = 55070, + [SMALL_STATE(777)] = 55124, + [SMALL_STATE(778)] = 55178, + [SMALL_STATE(779)] = 55232, + [SMALL_STATE(780)] = 55286, + [SMALL_STATE(781)] = 55340, + [SMALL_STATE(782)] = 55376, + [SMALL_STATE(783)] = 55412, + [SMALL_STATE(784)] = 55448, + [SMALL_STATE(785)] = 55502, + [SMALL_STATE(786)] = 55556, + [SMALL_STATE(787)] = 55592, + [SMALL_STATE(788)] = 55646, + [SMALL_STATE(789)] = 55700, + [SMALL_STATE(790)] = 55760, + [SMALL_STATE(791)] = 55796, + [SMALL_STATE(792)] = 55832, + [SMALL_STATE(793)] = 55889, + [SMALL_STATE(794)] = 55946, + [SMALL_STATE(795)] = 56003, + [SMALL_STATE(796)] = 56060, + [SMALL_STATE(797)] = 56117, + [SMALL_STATE(798)] = 56174, + [SMALL_STATE(799)] = 56231, + [SMALL_STATE(800)] = 56288, + [SMALL_STATE(801)] = 56345, + [SMALL_STATE(802)] = 56402, + [SMALL_STATE(803)] = 56459, + [SMALL_STATE(804)] = 56493, + [SMALL_STATE(805)] = 56527, + [SMALL_STATE(806)] = 56561, + [SMALL_STATE(807)] = 56593, + [SMALL_STATE(808)] = 56627, + [SMALL_STATE(809)] = 56674, + [SMALL_STATE(810)] = 56721, + [SMALL_STATE(811)] = 56768, + [SMALL_STATE(812)] = 56815, + [SMALL_STATE(813)] = 56862, + [SMALL_STATE(814)] = 56909, + [SMALL_STATE(815)] = 56939, + [SMALL_STATE(816)] = 56983, + [SMALL_STATE(817)] = 57027, + [SMALL_STATE(818)] = 57071, + [SMALL_STATE(819)] = 57115, + [SMALL_STATE(820)] = 57159, + [SMALL_STATE(821)] = 57203, + [SMALL_STATE(822)] = 57247, + [SMALL_STATE(823)] = 57291, + [SMALL_STATE(824)] = 57317, + [SMALL_STATE(825)] = 57361, + [SMALL_STATE(826)] = 57389, + [SMALL_STATE(827)] = 57433, + [SMALL_STATE(828)] = 57474, + [SMALL_STATE(829)] = 57503, + [SMALL_STATE(830)] = 57544, + [SMALL_STATE(831)] = 57585, + [SMALL_STATE(832)] = 57628, + [SMALL_STATE(833)] = 57669, + [SMALL_STATE(834)] = 57710, + [SMALL_STATE(835)] = 57753, + [SMALL_STATE(836)] = 57794, + [SMALL_STATE(837)] = 57837, + [SMALL_STATE(838)] = 57862, + [SMALL_STATE(839)] = 57903, + [SMALL_STATE(840)] = 57944, + [SMALL_STATE(841)] = 57985, + [SMALL_STATE(842)] = 58026, + [SMALL_STATE(843)] = 58067, + [SMALL_STATE(844)] = 58105, + [SMALL_STATE(845)] = 58133, + [SMALL_STATE(846)] = 58171, + [SMALL_STATE(847)] = 58209, + [SMALL_STATE(848)] = 58249, + [SMALL_STATE(849)] = 58287, + [SMALL_STATE(850)] = 58311, + [SMALL_STATE(851)] = 58349, + [SMALL_STATE(852)] = 58387, + [SMALL_STATE(853)] = 58425, + [SMALL_STATE(854)] = 58463, + [SMALL_STATE(855)] = 58501, + [SMALL_STATE(856)] = 58539, + [SMALL_STATE(857)] = 58565, + [SMALL_STATE(858)] = 58591, + [SMALL_STATE(859)] = 58617, + [SMALL_STATE(860)] = 58641, + [SMALL_STATE(861)] = 58681, + [SMALL_STATE(862)] = 58719, + [SMALL_STATE(863)] = 58745, + [SMALL_STATE(864)] = 58769, + [SMALL_STATE(865)] = 58807, + [SMALL_STATE(866)] = 58847, + [SMALL_STATE(867)] = 58871, + [SMALL_STATE(868)] = 58909, + [SMALL_STATE(869)] = 58933, + [SMALL_STATE(870)] = 58971, + [SMALL_STATE(871)] = 59009, + [SMALL_STATE(872)] = 59047, + [SMALL_STATE(873)] = 59087, + [SMALL_STATE(874)] = 59125, + [SMALL_STATE(875)] = 59163, + [SMALL_STATE(876)] = 59187, + [SMALL_STATE(877)] = 59211, + [SMALL_STATE(878)] = 59235, + [SMALL_STATE(879)] = 59259, + [SMALL_STATE(880)] = 59285, + [SMALL_STATE(881)] = 59323, + [SMALL_STATE(882)] = 59361, + [SMALL_STATE(883)] = 59399, + [SMALL_STATE(884)] = 59437, + [SMALL_STATE(885)] = 59475, + [SMALL_STATE(886)] = 59513, + [SMALL_STATE(887)] = 59551, + [SMALL_STATE(888)] = 59591, + [SMALL_STATE(889)] = 59631, + [SMALL_STATE(890)] = 59671, + [SMALL_STATE(891)] = 59695, + [SMALL_STATE(892)] = 59719, + [SMALL_STATE(893)] = 59757, + [SMALL_STATE(894)] = 59781, + [SMALL_STATE(895)] = 59809, + [SMALL_STATE(896)] = 59847, + [SMALL_STATE(897)] = 59870, + [SMALL_STATE(898)] = 59897, + [SMALL_STATE(899)] = 59924, + [SMALL_STATE(900)] = 59953, + [SMALL_STATE(901)] = 59980, + [SMALL_STATE(902)] = 60011, + [SMALL_STATE(903)] = 60034, + [SMALL_STATE(904)] = 60065, + [SMALL_STATE(905)] = 60088, + [SMALL_STATE(906)] = 60117, + [SMALL_STATE(907)] = 60140, + [SMALL_STATE(908)] = 60167, + [SMALL_STATE(909)] = 60190, + [SMALL_STATE(910)] = 60213, + [SMALL_STATE(911)] = 60236, + [SMALL_STATE(912)] = 60259, + [SMALL_STATE(913)] = 60296, + [SMALL_STATE(914)] = 60333, + [SMALL_STATE(915)] = 60356, + [SMALL_STATE(916)] = 60379, + [SMALL_STATE(917)] = 60402, + [SMALL_STATE(918)] = 60429, + [SMALL_STATE(919)] = 60452, + [SMALL_STATE(920)] = 60485, + [SMALL_STATE(921)] = 60512, + [SMALL_STATE(922)] = 60535, + [SMALL_STATE(923)] = 60558, + [SMALL_STATE(924)] = 60581, + [SMALL_STATE(925)] = 60604, + [SMALL_STATE(926)] = 60627, + [SMALL_STATE(927)] = 60650, + [SMALL_STATE(928)] = 60687, + [SMALL_STATE(929)] = 60710, + [SMALL_STATE(930)] = 60733, + [SMALL_STATE(931)] = 60770, + [SMALL_STATE(932)] = 60793, + [SMALL_STATE(933)] = 60816, + [SMALL_STATE(934)] = 60839, + [SMALL_STATE(935)] = 60862, + [SMALL_STATE(936)] = 60885, + [SMALL_STATE(937)] = 60908, + [SMALL_STATE(938)] = 60931, + [SMALL_STATE(939)] = 60964, + [SMALL_STATE(940)] = 60987, + [SMALL_STATE(941)] = 61011, + [SMALL_STATE(942)] = 61036, + [SMALL_STATE(943)] = 61057, + [SMALL_STATE(944)] = 61078, + [SMALL_STATE(945)] = 61099, + [SMALL_STATE(946)] = 61140, + [SMALL_STATE(947)] = 61181, + [SMALL_STATE(948)] = 61206, + [SMALL_STATE(949)] = 61247, + [SMALL_STATE(950)] = 61268, + [SMALL_STATE(951)] = 61289, + [SMALL_STATE(952)] = 61310, + [SMALL_STATE(953)] = 61351, + [SMALL_STATE(954)] = 61372, + [SMALL_STATE(955)] = 61393, + [SMALL_STATE(956)] = 61434, + [SMALL_STATE(957)] = 61475, + [SMALL_STATE(958)] = 61500, + [SMALL_STATE(959)] = 61521, + [SMALL_STATE(960)] = 61542, + [SMALL_STATE(961)] = 61567, + [SMALL_STATE(962)] = 61592, + [SMALL_STATE(963)] = 61614, + [SMALL_STATE(964)] = 61634, + [SMALL_STATE(965)] = 61668, + [SMALL_STATE(966)] = 61690, + [SMALL_STATE(967)] = 61712, + [SMALL_STATE(968)] = 61750, + [SMALL_STATE(969)] = 61770, + [SMALL_STATE(970)] = 61792, + [SMALL_STATE(971)] = 61812, + [SMALL_STATE(972)] = 61834, + [SMALL_STATE(973)] = 61854, + [SMALL_STATE(974)] = 61888, + [SMALL_STATE(975)] = 61907, + [SMALL_STATE(976)] = 61926, + [SMALL_STATE(977)] = 61945, + [SMALL_STATE(978)] = 61964, + [SMALL_STATE(979)] = 61983, + [SMALL_STATE(980)] = 62002, + [SMALL_STATE(981)] = 62023, + [SMALL_STATE(982)] = 62046, + [SMALL_STATE(983)] = 62065, + [SMALL_STATE(984)] = 62084, + [SMALL_STATE(985)] = 62103, + [SMALL_STATE(986)] = 62122, + [SMALL_STATE(987)] = 62141, + [SMALL_STATE(988)] = 62160, + [SMALL_STATE(989)] = 62179, + [SMALL_STATE(990)] = 62198, + [SMALL_STATE(991)] = 62217, + [SMALL_STATE(992)] = 62236, + [SMALL_STATE(993)] = 62255, + [SMALL_STATE(994)] = 62274, + [SMALL_STATE(995)] = 62293, + [SMALL_STATE(996)] = 62312, + [SMALL_STATE(997)] = 62331, + [SMALL_STATE(998)] = 62350, + [SMALL_STATE(999)] = 62369, + [SMALL_STATE(1000)] = 62388, + [SMALL_STATE(1001)] = 62407, + [SMALL_STATE(1002)] = 62426, + [SMALL_STATE(1003)] = 62453, + [SMALL_STATE(1004)] = 62474, + [SMALL_STATE(1005)] = 62493, + [SMALL_STATE(1006)] = 62512, + [SMALL_STATE(1007)] = 62531, + [SMALL_STATE(1008)] = 62550, + [SMALL_STATE(1009)] = 62569, + [SMALL_STATE(1010)] = 62588, + [SMALL_STATE(1011)] = 62606, + [SMALL_STATE(1012)] = 62638, + [SMALL_STATE(1013)] = 62656, + [SMALL_STATE(1014)] = 62676, + [SMALL_STATE(1015)] = 62694, + [SMALL_STATE(1016)] = 62726, + [SMALL_STATE(1017)] = 62758, + [SMALL_STATE(1018)] = 62787, + [SMALL_STATE(1019)] = 62804, + [SMALL_STATE(1020)] = 62833, + [SMALL_STATE(1021)] = 62862, + [SMALL_STATE(1022)] = 62891, + [SMALL_STATE(1023)] = 62920, + [SMALL_STATE(1024)] = 62949, + [SMALL_STATE(1025)] = 62978, + [SMALL_STATE(1026)] = 63000, + [SMALL_STATE(1027)] = 63022, + [SMALL_STATE(1028)] = 63044, + [SMALL_STATE(1029)] = 63066, + [SMALL_STATE(1030)] = 63088, + [SMALL_STATE(1031)] = 63110, + [SMALL_STATE(1032)] = 63134, + [SMALL_STATE(1033)] = 63154, + [SMALL_STATE(1034)] = 63178, + [SMALL_STATE(1035)] = 63200, + [SMALL_STATE(1036)] = 63222, + [SMALL_STATE(1037)] = 63246, + [SMALL_STATE(1038)] = 63268, + [SMALL_STATE(1039)] = 63290, + [SMALL_STATE(1040)] = 63312, + [SMALL_STATE(1041)] = 63336, + [SMALL_STATE(1042)] = 63358, + [SMALL_STATE(1043)] = 63382, + [SMALL_STATE(1044)] = 63404, + [SMALL_STATE(1045)] = 63428, + [SMALL_STATE(1046)] = 63450, + [SMALL_STATE(1047)] = 63474, + [SMALL_STATE(1048)] = 63496, + [SMALL_STATE(1049)] = 63522, + [SMALL_STATE(1050)] = 63544, + [SMALL_STATE(1051)] = 63566, + [SMALL_STATE(1052)] = 63586, + [SMALL_STATE(1053)] = 63608, + [SMALL_STATE(1054)] = 63632, + [SMALL_STATE(1055)] = 63650, + [SMALL_STATE(1056)] = 63674, + [SMALL_STATE(1057)] = 63696, + [SMALL_STATE(1058)] = 63720, + [SMALL_STATE(1059)] = 63742, + [SMALL_STATE(1060)] = 63766, + [SMALL_STATE(1061)] = 63790, + [SMALL_STATE(1062)] = 63812, + [SMALL_STATE(1063)] = 63831, + [SMALL_STATE(1064)] = 63850, + [SMALL_STATE(1065)] = 63873, + [SMALL_STATE(1066)] = 63894, + [SMALL_STATE(1067)] = 63915, + [SMALL_STATE(1068)] = 63936, + [SMALL_STATE(1069)] = 63955, + [SMALL_STATE(1070)] = 63976, + [SMALL_STATE(1071)] = 63997, + [SMALL_STATE(1072)] = 64020, + [SMALL_STATE(1073)] = 64043, + [SMALL_STATE(1074)] = 64062, + [SMALL_STATE(1075)] = 64081, + [SMALL_STATE(1076)] = 64102, + [SMALL_STATE(1077)] = 64123, + [SMALL_STATE(1078)] = 64146, + [SMALL_STATE(1079)] = 64169, + [SMALL_STATE(1080)] = 64190, + [SMALL_STATE(1081)] = 64211, + [SMALL_STATE(1082)] = 64234, + [SMALL_STATE(1083)] = 64253, + [SMALL_STATE(1084)] = 64272, + [SMALL_STATE(1085)] = 64291, + [SMALL_STATE(1086)] = 64309, + [SMALL_STATE(1087)] = 64329, + [SMALL_STATE(1088)] = 64349, + [SMALL_STATE(1089)] = 64367, + [SMALL_STATE(1090)] = 64387, + [SMALL_STATE(1091)] = 64405, + [SMALL_STATE(1092)] = 64423, + [SMALL_STATE(1093)] = 64441, + [SMALL_STATE(1094)] = 64459, + [SMALL_STATE(1095)] = 64477, + [SMALL_STATE(1096)] = 64495, + [SMALL_STATE(1097)] = 64513, + [SMALL_STATE(1098)] = 64533, + [SMALL_STATE(1099)] = 64553, + [SMALL_STATE(1100)] = 64569, + [SMALL_STATE(1101)] = 64587, + [SMALL_STATE(1102)] = 64605, + [SMALL_STATE(1103)] = 64621, + [SMALL_STATE(1104)] = 64639, + [SMALL_STATE(1105)] = 64657, + [SMALL_STATE(1106)] = 64677, + [SMALL_STATE(1107)] = 64697, + [SMALL_STATE(1108)] = 64717, + [SMALL_STATE(1109)] = 64737, + [SMALL_STATE(1110)] = 64755, + [SMALL_STATE(1111)] = 64773, + [SMALL_STATE(1112)] = 64791, + [SMALL_STATE(1113)] = 64811, + [SMALL_STATE(1114)] = 64829, + [SMALL_STATE(1115)] = 64845, + [SMALL_STATE(1116)] = 64863, + [SMALL_STATE(1117)] = 64881, + [SMALL_STATE(1118)] = 64901, + [SMALL_STATE(1119)] = 64921, + [SMALL_STATE(1120)] = 64941, + [SMALL_STATE(1121)] = 64959, + [SMALL_STATE(1122)] = 64975, + [SMALL_STATE(1123)] = 64993, + [SMALL_STATE(1124)] = 65009, + [SMALL_STATE(1125)] = 65027, + [SMALL_STATE(1126)] = 65047, + [SMALL_STATE(1127)] = 65065, + [SMALL_STATE(1128)] = 65085, + [SMALL_STATE(1129)] = 65103, + [SMALL_STATE(1130)] = 65121, + [SMALL_STATE(1131)] = 65135, + [SMALL_STATE(1132)] = 65155, + [SMALL_STATE(1133)] = 65173, + [SMALL_STATE(1134)] = 65193, + [SMALL_STATE(1135)] = 65209, + [SMALL_STATE(1136)] = 65227, + [SMALL_STATE(1137)] = 65241, + [SMALL_STATE(1138)] = 65254, + [SMALL_STATE(1139)] = 65271, + [SMALL_STATE(1140)] = 65288, + [SMALL_STATE(1141)] = 65305, + [SMALL_STATE(1142)] = 65322, + [SMALL_STATE(1143)] = 65337, + [SMALL_STATE(1144)] = 65354, + [SMALL_STATE(1145)] = 65371, + [SMALL_STATE(1146)] = 65388, + [SMALL_STATE(1147)] = 65405, + [SMALL_STATE(1148)] = 65422, + [SMALL_STATE(1149)] = 65439, + [SMALL_STATE(1150)] = 65456, + [SMALL_STATE(1151)] = 65473, + [SMALL_STATE(1152)] = 65490, + [SMALL_STATE(1153)] = 65507, + [SMALL_STATE(1154)] = 65524, + [SMALL_STATE(1155)] = 65537, + [SMALL_STATE(1156)] = 65554, + [SMALL_STATE(1157)] = 65571, + [SMALL_STATE(1158)] = 65588, + [SMALL_STATE(1159)] = 65605, + [SMALL_STATE(1160)] = 65622, + [SMALL_STATE(1161)] = 65635, + [SMALL_STATE(1162)] = 65648, + [SMALL_STATE(1163)] = 65661, + [SMALL_STATE(1164)] = 65678, + [SMALL_STATE(1165)] = 65695, + [SMALL_STATE(1166)] = 65710, + [SMALL_STATE(1167)] = 65727, + [SMALL_STATE(1168)] = 65740, + [SMALL_STATE(1169)] = 65757, + [SMALL_STATE(1170)] = 65774, + [SMALL_STATE(1171)] = 65791, + [SMALL_STATE(1172)] = 65808, + [SMALL_STATE(1173)] = 65821, + [SMALL_STATE(1174)] = 65834, + [SMALL_STATE(1175)] = 65851, + [SMALL_STATE(1176)] = 65868, + [SMALL_STATE(1177)] = 65881, + [SMALL_STATE(1178)] = 65898, + [SMALL_STATE(1179)] = 65915, + [SMALL_STATE(1180)] = 65932, + [SMALL_STATE(1181)] = 65949, + [SMALL_STATE(1182)] = 65966, + [SMALL_STATE(1183)] = 65983, + [SMALL_STATE(1184)] = 66000, + [SMALL_STATE(1185)] = 66013, + [SMALL_STATE(1186)] = 66030, + [SMALL_STATE(1187)] = 66047, + [SMALL_STATE(1188)] = 66064, + [SMALL_STATE(1189)] = 66079, + [SMALL_STATE(1190)] = 66096, + [SMALL_STATE(1191)] = 66113, + [SMALL_STATE(1192)] = 66130, + [SMALL_STATE(1193)] = 66147, + [SMALL_STATE(1194)] = 66164, + [SMALL_STATE(1195)] = 66181, + [SMALL_STATE(1196)] = 66198, + [SMALL_STATE(1197)] = 66215, + [SMALL_STATE(1198)] = 66228, + [SMALL_STATE(1199)] = 66245, + [SMALL_STATE(1200)] = 66262, + [SMALL_STATE(1201)] = 66279, + [SMALL_STATE(1202)] = 66296, + [SMALL_STATE(1203)] = 66313, + [SMALL_STATE(1204)] = 66330, + [SMALL_STATE(1205)] = 66347, + [SMALL_STATE(1206)] = 66364, + [SMALL_STATE(1207)] = 66379, + [SMALL_STATE(1208)] = 66396, + [SMALL_STATE(1209)] = 66413, + [SMALL_STATE(1210)] = 66430, + [SMALL_STATE(1211)] = 66443, + [SMALL_STATE(1212)] = 66460, + [SMALL_STATE(1213)] = 66477, + [SMALL_STATE(1214)] = 66494, + [SMALL_STATE(1215)] = 66511, + [SMALL_STATE(1216)] = 66528, + [SMALL_STATE(1217)] = 66545, + [SMALL_STATE(1218)] = 66562, + [SMALL_STATE(1219)] = 66575, + [SMALL_STATE(1220)] = 66592, + [SMALL_STATE(1221)] = 66607, + [SMALL_STATE(1222)] = 66622, + [SMALL_STATE(1223)] = 66639, + [SMALL_STATE(1224)] = 66656, + [SMALL_STATE(1225)] = 66669, + [SMALL_STATE(1226)] = 66686, + [SMALL_STATE(1227)] = 66703, + [SMALL_STATE(1228)] = 66716, + [SMALL_STATE(1229)] = 66733, + [SMALL_STATE(1230)] = 66746, + [SMALL_STATE(1231)] = 66763, + [SMALL_STATE(1232)] = 66780, + [SMALL_STATE(1233)] = 66797, + [SMALL_STATE(1234)] = 66814, + [SMALL_STATE(1235)] = 66831, + [SMALL_STATE(1236)] = 66848, + [SMALL_STATE(1237)] = 66865, + [SMALL_STATE(1238)] = 66882, + [SMALL_STATE(1239)] = 66895, + [SMALL_STATE(1240)] = 66912, + [SMALL_STATE(1241)] = 66929, + [SMALL_STATE(1242)] = 66946, + [SMALL_STATE(1243)] = 66963, + [SMALL_STATE(1244)] = 66980, + [SMALL_STATE(1245)] = 66997, + [SMALL_STATE(1246)] = 67014, + [SMALL_STATE(1247)] = 67029, + [SMALL_STATE(1248)] = 67046, + [SMALL_STATE(1249)] = 67063, + [SMALL_STATE(1250)] = 67080, + [SMALL_STATE(1251)] = 67097, + [SMALL_STATE(1252)] = 67114, + [SMALL_STATE(1253)] = 67131, + [SMALL_STATE(1254)] = 67148, + [SMALL_STATE(1255)] = 67165, + [SMALL_STATE(1256)] = 67182, + [SMALL_STATE(1257)] = 67199, + [SMALL_STATE(1258)] = 67216, + [SMALL_STATE(1259)] = 67233, + [SMALL_STATE(1260)] = 67250, + [SMALL_STATE(1261)] = 67267, + [SMALL_STATE(1262)] = 67284, + [SMALL_STATE(1263)] = 67301, + [SMALL_STATE(1264)] = 67314, + [SMALL_STATE(1265)] = 67331, + [SMALL_STATE(1266)] = 67344, + [SMALL_STATE(1267)] = 67361, + [SMALL_STATE(1268)] = 67378, + [SMALL_STATE(1269)] = 67395, + [SMALL_STATE(1270)] = 67412, + [SMALL_STATE(1271)] = 67425, + [SMALL_STATE(1272)] = 67442, + [SMALL_STATE(1273)] = 67459, + [SMALL_STATE(1274)] = 67476, + [SMALL_STATE(1275)] = 67489, + [SMALL_STATE(1276)] = 67506, + [SMALL_STATE(1277)] = 67523, + [SMALL_STATE(1278)] = 67536, + [SMALL_STATE(1279)] = 67553, + [SMALL_STATE(1280)] = 67566, + [SMALL_STATE(1281)] = 67583, + [SMALL_STATE(1282)] = 67600, + [SMALL_STATE(1283)] = 67617, + [SMALL_STATE(1284)] = 67634, + [SMALL_STATE(1285)] = 67651, + [SMALL_STATE(1286)] = 67668, + [SMALL_STATE(1287)] = 67685, + [SMALL_STATE(1288)] = 67702, + [SMALL_STATE(1289)] = 67719, + [SMALL_STATE(1290)] = 67732, + [SMALL_STATE(1291)] = 67749, + [SMALL_STATE(1292)] = 67762, + [SMALL_STATE(1293)] = 67775, + [SMALL_STATE(1294)] = 67792, + [SMALL_STATE(1295)] = 67809, + [SMALL_STATE(1296)] = 67822, + [SMALL_STATE(1297)] = 67839, + [SMALL_STATE(1298)] = 67856, + [SMALL_STATE(1299)] = 67873, + [SMALL_STATE(1300)] = 67890, + [SMALL_STATE(1301)] = 67903, + [SMALL_STATE(1302)] = 67920, + [SMALL_STATE(1303)] = 67932, + [SMALL_STATE(1304)] = 67944, + [SMALL_STATE(1305)] = 67958, + [SMALL_STATE(1306)] = 67972, + [SMALL_STATE(1307)] = 67986, + [SMALL_STATE(1308)] = 68000, + [SMALL_STATE(1309)] = 68014, + [SMALL_STATE(1310)] = 68026, + [SMALL_STATE(1311)] = 68038, + [SMALL_STATE(1312)] = 68052, + [SMALL_STATE(1313)] = 68064, + [SMALL_STATE(1314)] = 68076, + [SMALL_STATE(1315)] = 68090, + [SMALL_STATE(1316)] = 68104, + [SMALL_STATE(1317)] = 68116, + [SMALL_STATE(1318)] = 68130, + [SMALL_STATE(1319)] = 68144, + [SMALL_STATE(1320)] = 68158, + [SMALL_STATE(1321)] = 68172, + [SMALL_STATE(1322)] = 68186, + [SMALL_STATE(1323)] = 68198, + [SMALL_STATE(1324)] = 68210, + [SMALL_STATE(1325)] = 68222, + [SMALL_STATE(1326)] = 68236, + [SMALL_STATE(1327)] = 68250, + [SMALL_STATE(1328)] = 68264, + [SMALL_STATE(1329)] = 68278, + [SMALL_STATE(1330)] = 68292, + [SMALL_STATE(1331)] = 68306, + [SMALL_STATE(1332)] = 68318, + [SMALL_STATE(1333)] = 68332, + [SMALL_STATE(1334)] = 68346, + [SMALL_STATE(1335)] = 68360, + [SMALL_STATE(1336)] = 68372, + [SMALL_STATE(1337)] = 68384, + [SMALL_STATE(1338)] = 68398, + [SMALL_STATE(1339)] = 68412, + [SMALL_STATE(1340)] = 68426, + [SMALL_STATE(1341)] = 68438, + [SMALL_STATE(1342)] = 68452, + [SMALL_STATE(1343)] = 68464, + [SMALL_STATE(1344)] = 68476, + [SMALL_STATE(1345)] = 68488, + [SMALL_STATE(1346)] = 68500, + [SMALL_STATE(1347)] = 68512, + [SMALL_STATE(1348)] = 68524, + [SMALL_STATE(1349)] = 68536, + [SMALL_STATE(1350)] = 68550, + [SMALL_STATE(1351)] = 68562, + [SMALL_STATE(1352)] = 68574, + [SMALL_STATE(1353)] = 68588, + [SMALL_STATE(1354)] = 68602, + [SMALL_STATE(1355)] = 68614, + [SMALL_STATE(1356)] = 68628, + [SMALL_STATE(1357)] = 68640, + [SMALL_STATE(1358)] = 68652, + [SMALL_STATE(1359)] = 68664, + [SMALL_STATE(1360)] = 68676, + [SMALL_STATE(1361)] = 68690, + [SMALL_STATE(1362)] = 68702, + [SMALL_STATE(1363)] = 68714, + [SMALL_STATE(1364)] = 68728, + [SMALL_STATE(1365)] = 68740, + [SMALL_STATE(1366)] = 68754, + [SMALL_STATE(1367)] = 68766, + [SMALL_STATE(1368)] = 68778, + [SMALL_STATE(1369)] = 68792, + [SMALL_STATE(1370)] = 68806, + [SMALL_STATE(1371)] = 68820, + [SMALL_STATE(1372)] = 68834, + [SMALL_STATE(1373)] = 68846, + [SMALL_STATE(1374)] = 68858, + [SMALL_STATE(1375)] = 68872, + [SMALL_STATE(1376)] = 68886, + [SMALL_STATE(1377)] = 68900, + [SMALL_STATE(1378)] = 68912, + [SMALL_STATE(1379)] = 68926, + [SMALL_STATE(1380)] = 68940, + [SMALL_STATE(1381)] = 68954, + [SMALL_STATE(1382)] = 68968, + [SMALL_STATE(1383)] = 68982, + [SMALL_STATE(1384)] = 68996, + [SMALL_STATE(1385)] = 69008, + [SMALL_STATE(1386)] = 69022, + [SMALL_STATE(1387)] = 69034, + [SMALL_STATE(1388)] = 69048, + [SMALL_STATE(1389)] = 69062, + [SMALL_STATE(1390)] = 69074, + [SMALL_STATE(1391)] = 69086, + [SMALL_STATE(1392)] = 69098, + [SMALL_STATE(1393)] = 69112, + [SMALL_STATE(1394)] = 69124, + [SMALL_STATE(1395)] = 69136, + [SMALL_STATE(1396)] = 69150, + [SMALL_STATE(1397)] = 69162, + [SMALL_STATE(1398)] = 69174, + [SMALL_STATE(1399)] = 69188, + [SMALL_STATE(1400)] = 69202, + [SMALL_STATE(1401)] = 69216, + [SMALL_STATE(1402)] = 69230, + [SMALL_STATE(1403)] = 69244, + [SMALL_STATE(1404)] = 69258, + [SMALL_STATE(1405)] = 69272, + [SMALL_STATE(1406)] = 69286, + [SMALL_STATE(1407)] = 69300, + [SMALL_STATE(1408)] = 69314, + [SMALL_STATE(1409)] = 69328, + [SMALL_STATE(1410)] = 69342, + [SMALL_STATE(1411)] = 69356, + [SMALL_STATE(1412)] = 69370, + [SMALL_STATE(1413)] = 69384, + [SMALL_STATE(1414)] = 69398, + [SMALL_STATE(1415)] = 69412, + [SMALL_STATE(1416)] = 69426, + [SMALL_STATE(1417)] = 69440, + [SMALL_STATE(1418)] = 69452, + [SMALL_STATE(1419)] = 69464, + [SMALL_STATE(1420)] = 69478, + [SMALL_STATE(1421)] = 69492, + [SMALL_STATE(1422)] = 69504, + [SMALL_STATE(1423)] = 69518, + [SMALL_STATE(1424)] = 69532, + [SMALL_STATE(1425)] = 69546, + [SMALL_STATE(1426)] = 69558, + [SMALL_STATE(1427)] = 69572, + [SMALL_STATE(1428)] = 69584, + [SMALL_STATE(1429)] = 69598, + [SMALL_STATE(1430)] = 69610, + [SMALL_STATE(1431)] = 69622, + [SMALL_STATE(1432)] = 69636, + [SMALL_STATE(1433)] = 69650, + [SMALL_STATE(1434)] = 69664, + [SMALL_STATE(1435)] = 69676, + [SMALL_STATE(1436)] = 69690, + [SMALL_STATE(1437)] = 69701, + [SMALL_STATE(1438)] = 69712, + [SMALL_STATE(1439)] = 69723, + [SMALL_STATE(1440)] = 69734, + [SMALL_STATE(1441)] = 69745, + [SMALL_STATE(1442)] = 69756, + [SMALL_STATE(1443)] = 69767, + [SMALL_STATE(1444)] = 69778, + [SMALL_STATE(1445)] = 69789, + [SMALL_STATE(1446)] = 69800, + [SMALL_STATE(1447)] = 69811, + [SMALL_STATE(1448)] = 69822, + [SMALL_STATE(1449)] = 69833, + [SMALL_STATE(1450)] = 69844, + [SMALL_STATE(1451)] = 69855, + [SMALL_STATE(1452)] = 69866, + [SMALL_STATE(1453)] = 69877, + [SMALL_STATE(1454)] = 69888, + [SMALL_STATE(1455)] = 69899, + [SMALL_STATE(1456)] = 69910, + [SMALL_STATE(1457)] = 69921, + [SMALL_STATE(1458)] = 69932, + [SMALL_STATE(1459)] = 69943, + [SMALL_STATE(1460)] = 69954, + [SMALL_STATE(1461)] = 69965, + [SMALL_STATE(1462)] = 69976, + [SMALL_STATE(1463)] = 69987, + [SMALL_STATE(1464)] = 69998, + [SMALL_STATE(1465)] = 70009, + [SMALL_STATE(1466)] = 70020, + [SMALL_STATE(1467)] = 70031, + [SMALL_STATE(1468)] = 70042, + [SMALL_STATE(1469)] = 70053, + [SMALL_STATE(1470)] = 70064, + [SMALL_STATE(1471)] = 70075, + [SMALL_STATE(1472)] = 70086, + [SMALL_STATE(1473)] = 70097, + [SMALL_STATE(1474)] = 70108, + [SMALL_STATE(1475)] = 70119, + [SMALL_STATE(1476)] = 70130, + [SMALL_STATE(1477)] = 70141, + [SMALL_STATE(1478)] = 70152, + [SMALL_STATE(1479)] = 70163, + [SMALL_STATE(1480)] = 70174, + [SMALL_STATE(1481)] = 70185, + [SMALL_STATE(1482)] = 70196, + [SMALL_STATE(1483)] = 70207, + [SMALL_STATE(1484)] = 70218, + [SMALL_STATE(1485)] = 70229, + [SMALL_STATE(1486)] = 70240, + [SMALL_STATE(1487)] = 70251, + [SMALL_STATE(1488)] = 70262, + [SMALL_STATE(1489)] = 70273, + [SMALL_STATE(1490)] = 70284, + [SMALL_STATE(1491)] = 70295, + [SMALL_STATE(1492)] = 70306, + [SMALL_STATE(1493)] = 70317, + [SMALL_STATE(1494)] = 70328, + [SMALL_STATE(1495)] = 70339, + [SMALL_STATE(1496)] = 70350, + [SMALL_STATE(1497)] = 70361, + [SMALL_STATE(1498)] = 70372, + [SMALL_STATE(1499)] = 70383, + [SMALL_STATE(1500)] = 70394, + [SMALL_STATE(1501)] = 70405, + [SMALL_STATE(1502)] = 70416, + [SMALL_STATE(1503)] = 70427, + [SMALL_STATE(1504)] = 70438, + [SMALL_STATE(1505)] = 70449, + [SMALL_STATE(1506)] = 70460, + [SMALL_STATE(1507)] = 70471, + [SMALL_STATE(1508)] = 70482, + [SMALL_STATE(1509)] = 70493, + [SMALL_STATE(1510)] = 70504, + [SMALL_STATE(1511)] = 70515, + [SMALL_STATE(1512)] = 70526, + [SMALL_STATE(1513)] = 70537, + [SMALL_STATE(1514)] = 70548, + [SMALL_STATE(1515)] = 70559, + [SMALL_STATE(1516)] = 70570, + [SMALL_STATE(1517)] = 70581, + [SMALL_STATE(1518)] = 70592, + [SMALL_STATE(1519)] = 70603, + [SMALL_STATE(1520)] = 70614, + [SMALL_STATE(1521)] = 70625, + [SMALL_STATE(1522)] = 70636, + [SMALL_STATE(1523)] = 70647, + [SMALL_STATE(1524)] = 70658, + [SMALL_STATE(1525)] = 70669, + [SMALL_STATE(1526)] = 70680, + [SMALL_STATE(1527)] = 70691, + [SMALL_STATE(1528)] = 70702, + [SMALL_STATE(1529)] = 70713, + [SMALL_STATE(1530)] = 70724, + [SMALL_STATE(1531)] = 70735, + [SMALL_STATE(1532)] = 70746, + [SMALL_STATE(1533)] = 70757, + [SMALL_STATE(1534)] = 70768, + [SMALL_STATE(1535)] = 70779, + [SMALL_STATE(1536)] = 70790, + [SMALL_STATE(1537)] = 70801, + [SMALL_STATE(1538)] = 70812, + [SMALL_STATE(1539)] = 70823, + [SMALL_STATE(1540)] = 70834, + [SMALL_STATE(1541)] = 70845, + [SMALL_STATE(1542)] = 70856, + [SMALL_STATE(1543)] = 70867, + [SMALL_STATE(1544)] = 70878, + [SMALL_STATE(1545)] = 70889, + [SMALL_STATE(1546)] = 70900, + [SMALL_STATE(1547)] = 70911, + [SMALL_STATE(1548)] = 70922, + [SMALL_STATE(1549)] = 70933, + [SMALL_STATE(1550)] = 70944, + [SMALL_STATE(1551)] = 70955, + [SMALL_STATE(1552)] = 70966, + [SMALL_STATE(1553)] = 70977, + [SMALL_STATE(1554)] = 70988, + [SMALL_STATE(1555)] = 70999, + [SMALL_STATE(1556)] = 71010, + [SMALL_STATE(1557)] = 71021, + [SMALL_STATE(1558)] = 71032, + [SMALL_STATE(1559)] = 71043, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -58870,1622 +64820,1718 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [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(1098), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), - [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1203), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1207), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(929), - [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1217), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1418), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(200), - [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(307), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1033), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1229), - [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(187), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(570), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(567), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(310), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(966), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1405), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(933), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(97), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1188), + [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), + [71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1308), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1314), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1046), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1326), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1538), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(201), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(302), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(332), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1106), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1352), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(194), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(620), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(607), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(347), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1081), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1516), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1029), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(78), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1418), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(200), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(222), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(307), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1210), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(16), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(68), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(187), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(570), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(589), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(567), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(310), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(933), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(97), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(26), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(26), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(27), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(28), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(67), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1538), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(201), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(302), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(332), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1325), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(17), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(80), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(194), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(620), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(628), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(607), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(347), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1029), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(113), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(27), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(27), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(28), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(29), [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(78), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1418), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(200), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(222), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(307), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1210), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(16), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(68), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(187), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(570), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(589), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(567), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(310), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(933), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(97), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(26), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(26), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(27), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(28), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(67), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1538), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(201), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(302), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(332), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1325), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(17), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(80), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(194), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(620), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(628), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(607), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(347), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1029), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(113), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(27), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(27), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(28), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(29), [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(112), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [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(572), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 20), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 20), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 19), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 19), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [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}}, SHIFT(63), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 30), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 30), [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(1282), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1354), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(179), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(271), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(313), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1248), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(279), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(289), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(172), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(572), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(614), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(564), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(311), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(950), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(294), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(67), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(127), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 7), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 7), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 30), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 30), - [474] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1294), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 44), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 44), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 70), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 70), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [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}}, SHIFT(388), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 44), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 44), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(63), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1459), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(183), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(313), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(328), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1374), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(254), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(325), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(190), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(625), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(648), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(612), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(338), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1058), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(339), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(129), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(72), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(128), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 7), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 7), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [470] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1385), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 19), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 19), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 20), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 20), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 21), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 70), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 70), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 39), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 8), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 8), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [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_use, 3, .production_id = 16), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 16), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 18), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 18), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 35), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 35), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 13), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 13), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 38), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 38), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 65), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 65), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 33), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 33), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 55), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 55), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 49), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 49), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [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_todo, 4, .production_id = 13), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 13), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1233), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(66), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(66), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [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(240), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [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(1296), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), - [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, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [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(1353), - [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}}, 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(1101), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1227] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1280), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 10), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 10), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1343), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(563), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(573), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(996), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(945), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(936), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(912), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(912), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(699), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(903), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(896), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 23), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 23), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 36), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 36), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [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}}, SHIFT(822), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 12), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 12), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [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_function_parameters, 5), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), - [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(1330), - [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(977), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [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_function, 7, .production_id = 42), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 42), - [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(32), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 22), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 22), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 22), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 22), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), - [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_external_function_body, 2), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 62), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 62), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 36), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 36), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 73), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 73), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 72), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 72), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 53), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 53), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 61), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 61), - [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_function_type, 3, .production_id = 54), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 54), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 50), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 50), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [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_discard, 1), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 9), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 9), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 26), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 26), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [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_type, 2, .production_id = 8), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 8), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 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_constant, 5, .production_id = 37), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 37), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [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_arguments, 3), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 64), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 64), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 8), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 8), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 15), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 15), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 12), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 12), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 24), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 24), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 42), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 42), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [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(827), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 51), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 51), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [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(1306), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1283), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(958), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1304), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1213), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1279), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(978), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1406), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [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}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [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(1365), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [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__pattern_bit_string, 2), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 46), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 46), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 59), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 31), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 31), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 47), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 8), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 47), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 18), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 59), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 5), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 31), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 47), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1403), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 32), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 31), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1034), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(952), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(244), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 6), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(127), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 45), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(624), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(622), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(561), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 29), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 11), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(566), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(574), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 6), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 25), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 11), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(565), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [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(595), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(686), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 41), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 41), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(650), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(734), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(922), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 8), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 64), - [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(745), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [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(657), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(960), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(672), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(714), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(591), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 34), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(603), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 60), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(133), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(738), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(647), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 52), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(800), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(733), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 14), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(873), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(290), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1153), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 54), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1272), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 28), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 43), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 51), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 40), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 28), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 27), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 17), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 51), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 8), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 71), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 51), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 63), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 27), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 48), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3322] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 25), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 8), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 8), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 66), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 18), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 18), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 13), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 13), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 13), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 13), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 16), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 16), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 38), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 38), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 49), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 49), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 55), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 55), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 13), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 13), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 33), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 33), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 65), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 65), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 35), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 35), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [764] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1327), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(60), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(60), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1226] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1332), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 58), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 68), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 68), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1505), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1292] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1423), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 21), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 10), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 10), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1443), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(608), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(621), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1102), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1027), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1032), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1010), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1010), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(806), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1007), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1005), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 23), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 23), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 36), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 36), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 12), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 12), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 73), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 73), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 72), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 72), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 62), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 62), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 54), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 54), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 26), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 26), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 50), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 50), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 56), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 56), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 22), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 22), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 61), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 61), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 36), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 36), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 62), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 62), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 42), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 42), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 12), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 12), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 22), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 22), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 9), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 9), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 42), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 42), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 37), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 37), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 8), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 8), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 15), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 15), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 8), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 8), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 24), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 24), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 53), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 53), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 20), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 64), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 64), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 45), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 6), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1985] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1435), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 51), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 51), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1415), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1433), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1053), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1414), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1318), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1428), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1064), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1522), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 19), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 18), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 5), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1478), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 46), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 59), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 5), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 31), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 31), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 47), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 8), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 18), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 47), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 46), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 47), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 59), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 31), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 32), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 31), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1130), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1039), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(309), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(677), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 6), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(128), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 45), SHIFT_REPEAT(688), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 45), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 11), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 6), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(624), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(614), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(650), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 29), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(611), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(797), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 11), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(606), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 25), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 34), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(721), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 52), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1406), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 54), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(324), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(967), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 60), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(645), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(753), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(1048), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 8), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 64), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(143), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(827), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 14), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(1017), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(723), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(817), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(848), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 41), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 41), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(840), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(912), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(847), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1301), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(647), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 48), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 51), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 43), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 28), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 40), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 51), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 71), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 51), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 8), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 27), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 28), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 63), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 27), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 17), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 25), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3486] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), }; #ifdef __cplusplus